<!-- 
// This is the function that will open the
// new window when the mouse is moved over the link
function open_new_window16() 
{
new_window = open("","","width=500,height=300, right=-100,top=120, scrollbars=no,resizable=no,location=no,menubar=no,toolbar=no");

// open new document 
new_window.document.open();

// Text of the new document
// Replace your " with ' or \" or your document.write statements will fail
new_window.document.write("<html><title>June 16 events</title>");
new_window.document.write("<head><link rel=\"stylesheet\" type=\"text/css\" href=\"sydneypride.css\" />");
new_window.document.write("<body bgcolor=\"#FFFFFF\">");
new_window.document.write("<b>Events for Thursday 16th June</b><p> ");
new_window.document.write("<b>Sydney Pride Festival Launch</b><p>Stonewall Hotel at 7pm<br>Let’s come together and celebrate! \“Love Me\”<p>");
new_window.document.write("<b>Slide presents Daniel Boys</b><br>");
new_window.document.write("</body></html>");

// close the document
new_window.document.close(); 
}

function open_new_window17() 
{
new_window = open("","","width=500,height=300, right=-100,top=120, scrollbars=no,resizable=no,location=no,menubar=no,toolbar=no");

// open new document 
new_window.document.open();

// Text of the new document
// Replace your " with ' or \" or your document.write statements will fail
new_window.document.write("<html><title>June 17 events</title>");
new_window.document.write("<head><link rel=\"stylesheet\" type=\"text/css\" href=\"sydneypride.css\" />");
new_window.document.write("<body bgcolor=\"#FFFFFF\">");
new_window.document.write("<b>Events for Friday 17th June</b><p> ");
new_window.document.write("<b>12th Annual Orgy of Drag</b><p>Stonewall Hotel at 7pm<p>");
new_window.document.write("</body></html>");

// close the document
new_window.document.close(); 
}

function open_new_window18() 
{
new_window = open("","","width=500,height=300, right=-100,top=120, scrollbars=no,resizable=no,location=no,menubar=no,toolbar=no");

// open new document 
new_window.document.open();

// Text of the new document
// Replace your " with ' or \" or your document.write statements will fail
new_window.document.write("<html><title>June 18 events</title>");
new_window.document.write("<head><link rel=\"stylesheet\" type=\"text/css\" href=\"sydneypride.css\" />");
new_window.document.write("<body bgcolor=\"#FFFFFF\">");
new_window.document.write("<b>Events for Saturday 18th June</b><p> ");
new_window.document.write("<b>“Aloha” @ the Taxi Club</b><p>Sandy Bottom Presents: “Aloha” Cabaret Dinner at the Taxi Club<p>");
new_window.document.write("</body></html>");

// close the document
new_window.document.close(); 
}

function open_new_window19() 
{
new_window = open("","","width=600,height=728, right=-100,top=120, scrollbars=no,resizable=no,location=no,menubar=no,toolbar=no");

// open new document 
new_window.document.open();

// Text of the new document
// Replace your " with ' or \" or your document.write statements will fail
new_window.document.write("<html><title>June 19 event BGF Bake Off</title>");
new_window.document.write("<head><link rel=\"stylesheet\" type=\"text/css\" href=\"sydneypride.css\" />");
new_window.document.write("<body bgcolor=\"#FFFFFF\">");
new_window.document.write("<img src=\"images/bakeoff_popup.jpg\">");
new_window.document.write("</body></html>");

// close the document
new_window.document.close(); 
}
// This is the function that will close the
// new window when the mouse is moved off the link
function close_window() 
{
new_window.close();
}

// -->



 
