
// This is the function that will open the
// new window when the mouse is moved over the link
function open_new_window(img, x, y) 
{
new_window = open("","hoverwindow","width="+x+",height="+y);

// 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>"+img+"</title>");
new_window.document.write("<body bgcolor=\"#FFFFFF\">");
new_window.document.write("<img src=\""+img+"\" />");
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();
}

//

