/****************************************************
* blurfix                                           *
*****************************************************/
window.onload = function() {
	if(document.layers) return;
	if(document.getElementById) links = document.getElementsByTagName("a");
	if(document.all) links = document.all.tags("a");
	for(a = 0; a < links.length; a++) links[a].onfocus = new Function('this.blur()');
}
/*********************************************************
* open popup-window met de afmetingen van een afbeelding *
**********************************************************/
function picture(picGoal,picName,picWidth,picHeight,popTitle) {
var w = screen.availWidth;
var h = screen.availHeight;
var leftPos = (w-picWidth)/2, topPos = (h-picHeight)/2;
// Open popup met dezelfde afmetingen als de afbeelding
	PicWin=window.open("",picName,'toolbar=0,directories=0,menubar=0,status=0,scrollbars=0,resizable=0,width='+ picWidth +',height='+ picHeight +',top=' + topPos + ',left=' + leftPos +'');
	PicWin.document.open();
	PicWin.document.writeln('<html>');
	PicWin.document.writeln('<head>');
	PicWin.document.writeln('<title>'+ popTitle +'</title>');
	PicWin.document.writeln('<style type="text/css">body {background-color: #FFFFFF; margin: 0px; padding: 0px;}</style>');
	PicWin.document.writeln('</head>'); 
	PicWin.document.writeln('<body marginwidth="0" marginheight="0" onblur="window.close();">');
	PicWin.document.writeln('<a href="javascipt:window.close();">');
	PicWin.document.writeln('<img src="'+ picGoal +'" width="'+ picWidth +'" height="'+ picHeight +'"  alt="'+ popTitle +'" border="0">');
	PicWin.document.writeln('</a>');
	PicWin.document.writeln('</body>');
	PicWin.document.writeln('</html>');
	PicWin.document.close();
}