var venster;
function sluit()
{
	venster.close();
}

function logo(title, width, height)
{
   var params = 'scrollbars=yes, resizable=no, status=no, top=400, left=0, width=' + width + ', height=' + height;
   //alert(params);
   venster  = window.open('', '', params);
   venster.document.write('<html><head><title>' + title + '</title>');
   venster.document.write('<style type="text/css">');
   venster.document.write('body {');
   venster.document.write('background-color : #EBEBE1;');
   venster.document.write('font-family: Verdana, Arial, Helvetica, sans-serif;');
   venster.document.write('font-size: 0.7em;');
   venster.document.write('color: black;');
   venster.document.write('}');
   venster.document.write('a, a:link {');
   venster.document.write('font-family: Verdana, Arial, Helvetica, sans-serif;');
   venster.document.write('color: black;');
   venster.document.write('}');
   venster.document.write('a:hover {');
   venster.document.write('font-family: Verdana, Arial, Helvetica, sans-serif;');
   venster.document.write('color: purple;');
   venster.document.write('}');
   venster.document.write('</style>');
   venster.document.write('</head>');
   venster.document.write('<b><font color="red">C</font><font color="black">NO</font>&nbsp;&nbsp;<i>webdesign</b></i><br><br>');
   venster.document.write('Ontwerp en implementatie van heldere websites<br><br><br>');
   venster.document.write('Kees Nolet<br><br>');
   venster.document.write('<a href="mailto:cno@tte.nl">cno@tte.nl</a>');
   venster.document.write('</body></html>');
   venster.document.close();
   setTimeout('sluit()',10000);
}
