
  
<!-- 
// 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=203,height=190,left=583,top=455,resizable=no,scrollbars=no,toolbar=no,status=no,titlebar=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>Quickmoneygroup--Welcome</title>");
new_window.document.write("<body bgcolor=\"#ffffff\">");
new_window.document.write("<img src='Images/logo.jpg'");
new_window.document.write("<br>");
new_window.document.write('<font size="4" color="0000ff" family="Verdana"><center>....This fasclity is available shortly.... </center></font>');


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();
}
