<!-- 
// 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=300,height=170,left=350,top=250");

// 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>Privacy Policy</title>");
new_window.document.write("<link href=\"css/gutterhelmetprotects_sem.css\" rel=\"stylesheet\" type=\"text/css\" />");
new_window.document.write("<body>");
new_window.document.write("<div style=\"background-color: #FFF; padding: 10px;\"><p align=\"left\"><strong>Privacy Policy:</strong> We never share, sell, or rent personal information with or to anyone or any organization without your prior permission, or unless ordered by a court of law. We will use the information you submit to us (including your phone numbers, address, and e-mail address) only for the purpose of responding to you in regards to your request for information about Gutter Helmet.</p></div>");
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();
}

// -->
