function open_plaatje(welk_plaatje,naam_vh_plaatje,w,h) 
	{
	  var winl = (screen.width - w) / 2 - 25;
	  var wint = (screen.height - h) / 2 - 25;

	  PlaatjesWin=window.open("",naam_vh_plaatje,'status=0,scrollbars=0,resizable=0, height='+h+',width='+w+',top='+wint+',left='+winl);
	  PlaatjesWin.document.open();
	  PlaatjesWin.document.writeln('<html>');
	  PlaatjesWin.document.writeln('<head>');
	  PlaatjesWin.document.writeln('<title>'+naam_vh_plaatje+'</title>');
	  PlaatjesWin.document.writeln('</head>');
	  PlaatjesWin.document.writeln('<body background="'+welk_plaatje+'"onclick="window.close()">');
	  PlaatjesWin.document.writeln('</body>');
	  PlaatjesWin.document.writeln('</html>');
	  PlaatjesWin.document.close();
	}
	function NewWindow(mypage, myname, w, h, scroll) 
	{
		var winl = (screen.width - w) / 2;
		var wint = 25;
		winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
		win = window.open(mypage, myname, winprops)
		if (parseInt(navigator.appVersion) >= 4) 
		{ 
		 win.window.focus(); 
		}
	}

