<!--
    //created by Mario
function janariowindow(breedte, hoogte)
{
   Pic = window.open('','nieuw_venster','width='+ breedte +',height='+ hoogte +',status=no,toolbar=no,menubar=no');
 // Openen document voor verdere invulling  
   Pic.document.open();
 // Aanmaken document
   Pic.document.write('<html><head><title>Janario Websites</title></head>');
   Pic.document.write('<BODY class="center" BGCOLOR="black" TEXT="red" LINK="red" VLINK="red">');
   Pic.document.write('<center><font FACE="arial,Helvetica,sans-serif" size="3"><b>Deze Site is ontworpen door</b></center>');
   Pic.document.write('<center><img src="../image/lgo_janario2.gif" width="93" height="49" border="0" alt="Janario Websites"><br>');
   Pic.document.write('Voor informatie<br><table border="0"><tr><td>mail naar:&nbsp</td>');
	Pic.document.write('<td><a href="mailto:info@janario.nl"><b>info@janario.nl</b></a></td></tr>');
   Pic.document.write('<tr><td>of bel:</td<><td><b>06-41526268</b></td></tr></table>');
	Pic.document.write('<br><a href="javascript:self.close()">sluit venster</a>');
   Pic.document.write('</center></form></font></BODY></html>');
 // sluiten van het document (niet venster!)
   Pic.document.close();
}
//-->