// This is the function that will open the
// new window when the mouse is moved over the link
function open_new_window()
{
new_window = open("","hoverwindow","width=350,height=200,left=800,top=800");

// 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>Physics 10 Historical List</title>");
new_window.document.write("<body bgcolor=\"#FFFFFF\">");
new_window.document.write("<font color=#0000ff>Physics 10 Historical List</font><br><br>");
new_window.document.write("<a href=\"http://www.physics.ucdavis.edu/Cosmology/COS10/index.htm\"> Winter 2009 </a></br>");
new_window.document.write("<a href=\"http://www.physics.ucdavis.edu/Classes/Physics10-B-W05/\"> Winter 2005 </a></br>");
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();
}

