/* 	Voor alle pagina's: opent popups voor tekst (bijlage), foto of formulier.
	Bron; gebruikt wordt: gecomprimeerde versie in directory `js`.
	Laatste wijziging 4 december 2005 ©Cemens Uythof */

function Tekst(url){
	venster2=window.open(url,'archief','status=no,scrollbars=yes,resizable=yes,width=720,height=520');
	venster2.focus();
}

function fitWindowSize() {				//Maak window passend voor function Foto()
	venster3.window.resizeTo(480, 480);
	width = 480 - (venster3.document.body.clientWidth -  venster3.document.images[0].width);
	height = 480 - (venster3.document.body.clientHeight -  venster3.document.images[0].height);
	venster3.window.resizeTo(width, height);
}

function Foto(naam){
	venster3 = window.open('','Foto','width=480,height=480');
	venster3.document.open();
	venster3.document.write('<HTML>\n');
	venster3.document.write('<HEAD><TITLE>Foto</TITLE></HEAD>\n');
	venster3.document.write('<BODY style="margin: auto; background-color: #E6F2F3" onLoad="opener.fitWindowSize()">\n');
	venster3.document.write('<center>\n');
	venster3.document.write('<img  src="'+naam+'">\n');
	venster3.document.write('</center>\n');
	venster3.document.write('</BODY>\n');
	venster3.document.write('</HTML>');
	venster3.document.close();
	venster3.focus();
}

function formulier(formulier){
	venster4=window.open('../formulieren/'+formulier,'contact','resizable=yes,width=400,height=400');
	venster4.focus();
}
