// This is the function that will open the
// new window when the mouse is moved over the link
function open_new_window1() 
{
new_window = open("","hoverwindow","width=300,height=350,left=300,top=300");

// 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>JavaScript New Window</title>");
new_window.document.write("<body bgcolor=\"#FFFFFF\">");
new_window.document.write("<img src=\"http://www.cosimospizzacafe.com/images/online-ordering.jpg\" width=\"283\" height=\"256\" border=\"0\"><br> ");
new_window.document.write("Our Online Ordering Will be coming Soon.");
new_window.document.write("<br>");
new_window.document.write("</body></html>");

// close the document
new_window.document.close(); 
}
function open_new_window2() 
{
new_window = open("","hoverwindow","width=300,height=350,left=300,top=300");

// 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>JavaScript New Window</title>");
new_window.document.write("<body bgcolor=\"#FFFFFF\">");
new_window.document.write("<img src=\"http://www.cosimospizzacafe.com/images/email-loyaltyclub.jpg\" width=\"283\" height=\"256\" border=\"0\"><br> ");
new_window.document.write("Join Our Email Loyalty Club for Additional Discounts");
new_window.document.write("<br>");
new_window.document.write("</body></html>");

// close the document
new_window.document.close(); 
}
function open_new_window3() 
{
new_window = open("","hoverwindow","width=300,height=400,left=300,top=300");

// 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>Cosimos Pizza Cafe Lunch Club Card</title>");
new_window.document.write("<body bgcolor=\"#000000\">");
new_window.document.write("<img src=\"http://www.cosimospizzacafe.com/images/lunchclub-card.jpg\" width=\"283\" height=\"256\" border=\"0\"><br> ");
new_window.document.write("<b><font color=#fff18c>Stop by Cosimo&#39;s Pizza Cafe <br>8624 Germantown Ave. in Philadelphia and sign up for a free lunch today. <p> Who says that theres no such thing as a free lunch? </font></b>");
new_window.document.write("<br>");
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();
}
