<!-- hiding script for older browsers
// (c) Copyright Mr.Bean 2005 www.antonboonstra.nl

function venster(url,breedte,hoogte,scroll)
{
	boven=(screen.height/2)-hoogte/2-16, links=(screen.width/2)-breedte/2;
	popWindow = window.open(url, hoogte, "width="+breedte+",height="+hoogte+",top="+boven+",left="+links+",screenX="+links+",screenY="+boven+",resizable=yes,scrollbars="+scroll+", status=yes");
}

function foto(url,titel,horizontaal_of_verticaal)
{
	if(horizontaal_of_verticaal == 'v') {breedte=384; hoogte=512;}
	else {breedte=512; hoogte=384;}

	var boven = (screen.height/2)-hoogte/2-32;
	var links = (screen.width/2)-breedte/2;

	inhoud = '<html>\n\n<head>\n<title>CJV Aduard - '+titel+' - '+url+'</title>\n</head>\n\n';
	inhoud += '<body onload="self.focus()">\n<table width="100%" height="100%"><tr><td align="center">\n';
	inhoud += '<font face="verdana,arial" size="1" color="#003060"><b>Even geduld a.u.b.<br>de foto wordt geladen...</b></font>\n</td></tr></table>\n';
	inhoud += '<a href="javascript:window.close();">\n';
	inhoud += '<img src="'+url+'" width="'+breedte+'" height="'+hoogte+'" border="0" alt="Klik hier om dit venster te sluiten" style="position:absolute; left:0; top:0;">';
	inhoud += '</a>\n</body>\n\n</html>';

	pop_foto = window.open("", "foto"+horizontaal_of_verticaal, "width="+breedte+",height="+hoogte+",top="+boven+",left="+links+",screenX="+links+",screenY="+boven+",resizable=yes");
	pop_foto.document.open();
	pop_foto.document.write(inhoud);
	pop_foto.document.close();
}

function schrijf_mail_adres(domein,naam)
{
	var schrijfemail = "<a href=\"mailto:"+naam+domein+"\">"+naam+domein+"</a>";
	document.write(schrijfemail);
}

function random_link(tekst,link1,link2)
{
	var aantalkeuzes = 2, link="Oeps...";

	keuze = (Math.round(Math.random()*(aantalkeuzes-1)))+1;

	if(keuze==1)
	{
		link = "<a href=\"http://";
		link+=link1;
		link+="\">"+tekst+"</a>";
	}

	if(keuze==2)
	{
		link = "<a href=\"http://";
		link+=link2;
		link+="\">"+tekst+"</a>";
	}

	document.write(link);
}

// end hiding script from old browsers -->
