<!-- 
// This is the function that will open the
// new window when the mouse is moved over the link
function dns() 
{
new_window = open("","hoverwindow","width=400,height=300,left=450,top=150");

// 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>Whats This</title>");
new_window.document.write("<body bgcolor=\"#FFFFFF\">");
new_window.document.write("These are the codes to your server. If you have a server that you would like this domain pointing to we will needs the DNS codes. If you don't have these you can email them to us later.");
new_window.document.write("<br>");
new_window.document.write("<br>");
new_window.document.write("If you don't have the DNS codes or would like the domain name pointing to our server please leave this field blank we will automatically point the domain name to our server.");
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();
}

// -->