function openwin(url)
 { 
 OpenWindow=window.open("", "newwin", "height=600,width=800,toolbar=no,scrollbars=0,menubar=no");
 OpenWindow.document.write("<html><head>")
 OpenWindow.document.write("<title>The How Zone</title>")
 OpenWindow.document.write('<style type="text/css" media="all">')
 OpenWindow.document.write('body { margin: 0;padding: 0;background-image: url("')
 OpenWindow.document.write(url);
 OpenWindow.document.write('");background-position: 50% 50%;background-attach: fixed;background-repeat: no-repeat;}')
 OpenWindow.document.write('</style>')
 OpenWindow.document.write("</head><body>")
 OpenWindow.document.write('<div><a href="#" onclick="window.close();" style="display:block;height:500px;width:700px;">&nbsp;</a></div>')
 OpenWindow.document.write("</body></html>")
 OpenWindow.document.close()
 self.name="main"
 }
 
 function openlink(url)
 { 
    window.open(url, 'newwin', 'directories=1,location=0,resizable=1,scrollbars=1,toolbar=1,height=600width=800,scrollbars=yes');
 }
