<!--
function PopUpPicture(naam,backcolor,winbreed,winhoog,picbreed,pichoog)
   {
	PopUpPic=window.open('','Foto','menubar=no,toolbar=no,width='+winbreed+',height='+winhoog+'location=no,directories=no,status=no,scrollbars=no,resizable=yes,copyhistory=no,left=1,top=1');
	PopUpPic.document.write('<HTML>');
	PopUpPic.document.write(' <HEAD>');
	PopUpPic.document.write('  <TITLE>' + naam + '</TITLE>');
	PopUpPic.document.write(' </HEAD>');
	PopUpPic.document.write(' <body onBlur=window.close() onLoad=self.focus() bgcolor="'+ backcolor + '" topmargin="0" leftmargin="0" marginheight="0" marginwidth="0">');
	PopUpPic.document.write('  <center>');
	PopUpPic.document.write('    <table height="100%" width="100%" border="0" cellspacing="0" cellpadding="0">');
	PopUpPic.document.write('     <tr>');
	PopUpPic.document.write('      <td align=center valign=middle>');
//	PopUpPic.document.write('        <IMG SRC="' + naam + '" hspace="0" vspace="0" height="' + pichoog + '" width="' + picbreed + '" border="0" alt="'+ naam + '">');
	PopUpPic.document.write('        <IMG SRC="' + naam + '" hspace="0" vspace="0" height="' + pichoog + ' border="0" alt="'+ naam + '">');
	PopUpPic.document.write('      </td>');
	PopUpPic.document.write('     </tr>');
	PopUpPic.document.write('    </table>');
	PopUpPic.document.write('  </center>');
	PopUpPic.document.write(' </BODY>');
	PopUpPic.document.write('</HTML>');
	PopUpPic.document.close();
   }
function PopUpWindow(URL,naam,winbreed,winhoog)
   {
	PopUpWind=window.open('','','menubar=no,toolbar=no,width='+winbreed+',height='+winhoog+'location=no,directories=no,status=no,scrollbars=yes,resizable=yes,copyhistory=no,left=10,top=10');
	PopUpWind.document.write('<HTML>');
	PopUpWind.document.write(' <HEAD>');
	PopUpWind.document.write('  <META http-equiv=Refresh content="1; URL='+ URL + '">');
	PopUpWind.document.write('  <TITLE>' + naam + '</TITLE>');
	PopUpWind.document.write(' </HEAD>');
	PopUpWind.document.write(' <body onLoad=self.focus() onBlur=window.close() ');
	PopUpWind.document.write('  <br><br><br><br>');
	PopUpWind.document.write('   <h2><center>Ogenblik alstublieft,<br><br> de gevraagde pagina<br><br> wordt opgehaald......</center></h2> ');
	PopUpWind.document.write(' </BODY>');
	PopUpWind.document.write('</HTML>');
	PopUpWind.document.close();
   }
var ie4 = (document.all) ? true : false;
var ns4 = (document.layers) ? true : false;
var ns6 = (document.getElementById && !document.all) ? true : false;

function hidelayer(lay) 
{	
	if (ie4) {document.all[lay].style.display = "none";}
	if (ns4) {document.layers[lay].visibility = "hide";}
	if (ns6) {document.getElementById([lay]).style.display = "none";}
}
function showlayer(lay) 
{
	if (ie4) {document.all[lay].style.display = "";}
	if (ns4) {document.layers[lay].visibility = "show";}
	if (ns6) {document.getElementById([lay]).style.display = "block";}
}

//	if (ie4) alert("ie4");
//	if (ns4) alert("ns4");
//	if (ns6) alert("ns6");

function checklayer(lay) 
{
	if (ie4) 
	{ 
		if (document.all[lay].style.display == "") return "on" 
		else return "off";
	}
	if (ns4) 
	{
		if (document.layers[lay].visibility == "show") return "on" 
		else return "off";
	}
	if (ns6) 
	{ 
		if (document.getElementById([lay]).style.display == "block")  return "on" 
		else return "off";
	}
}

function switcher(ID)
{
	if (checklayer(ID) == "on") hidelayer(ID)
	else showlayer(ID);
}
-->
