imagename='';
function vergroot(beeldnaam, naam, beschrijving)
{
OpenWin = this.open("","GrootVenster","toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,status=no,width=750,height=750,left=1,top=1");
imagename = beeldnaam;
titel=naam;
tekst=beschrijving
setTimeout('update()',500)
}
function update()
{
doc = OpenWin.document;
doc.write('<HTML><HEAD>');
doc.write('<link rel="stylesheet" type="text/css" href="css/opmaak.css" />');
doc.write('<TITLE>'+titel+'<\/TITLE>');
doc.write('<\/HEAD>');
doc.write('<body topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0">');
doc.write('<center>');
doc.write('<a href="#" onclick="window.close()">Hier dit venster sluiten</a><br>');
doc.write('<hr>');
doc.write('<span class="Tekst FotoKop Blauw">');
doc.write(titel);
doc.write('</span><br><span class="Tekst Foto"><b>');
doc.write(tekst)
doc.write('<br></span></center><br>');
doc.write('<center><IMG border="0" src="' + imagename + '">');
doc.write('</b><\/span><\/center>');
doc.write('<hr noshade>');
doc.write('<center><span class="Tekst Normal">');
doc.write('<b>Deze pagina is opgebouwd middels een </b><a target="_blank" href="http://www.java.com/nl/download/windows_ie.jsp?locale=nl&host=www.java.comS"><b><i><span class="URL Oranje">Java</span><span class="URL Blauw">Script</span></i></b></a>');
doc.write('</span></center>');
doc.write('<\/BODY><\/HTML>');
doc.close();
}

function openPictureWindow_Fever(imageType,imageName,imageWidth,imageHeight,alt,posLeft,posTop) {  // v4.01
	newWindow = window.open("","newWindow","width="+imageWidth+",height="+imageHeight+",scrollbars=no,left="+posLeft+",top="+posTop);
	newWindow.document.open();
	newWindow.doc.write('<html><title>'+alt+'</title>');
	newwindow.doc.write('<body bgcolor="#FFFFFF" leftmargin="0" topmargin="0" marginheight="0" marginwidth="0" onBlur="self.close()">'); 
	if (imageType == "swf"){
		newWindow.doc.write('<object classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" width=\"'+imageWidth+'\" height=\"'+imageHeight+'\">');
		newWindow.doc.write('<param name=movie value=\"'+imageName+'\"><param name=quality value=high>');
		newWindow.doc.write('<embed src=\"'+imageName+'\" quality=high pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" type=\"application/x-shockwave-flash\" width=\"'+imageWidth+'\" height=\"'+imageHeight+'\">');
		newWindow.doc.write('</embed></object>');	
	}
	else {
		newWindow.doc.write('<img src=\"'+imageName+'\" width='+imageWidth+' height='+imageHeight+' alt=\"'+alt+'\">');
	}
	newWindow.doc.write('</body></html>');
	newWindow.document.close();
	newWindow.focus();
}


