<!-- 
// This is the function that will open the
// new window when the mouse is moved over the link
function open_new_window(title,locate) 
{
new_window = open("","hoverwindow","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,position-absolute,top=200px,left=400px,width=230px,height=70px");

// 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>" + title + "</title>");
new_window.document.write("<body bgcolor=\"#FFFFFF\">");
new_window.document.write("<center><font face='verdana'>" + title + "</center>");
new_window.document.write("<EMBED SRC='" + locate + "' HIDDEN='FALSE' AUTOSTART='TRUE' LOOP='FALSE' NAME='firstSound' MASTERSOUND width='200' height='45'>");
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();
}

// -->
