function open_plaatje(welk_plaatje,naam_vh_plaatje,w,h)
	{
	  var winl = (screen.width - w) / 2;
	  var wint = (screen.height - h) / 2;

	  PlaatjesWin=window.open("",naam_vh_plaatje,'status=0,scrollbars=0,resizable=0, height='+h+',width='+w+',top='+wint+',left='+winl+', no-resizable');
	  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+'">');
	  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 = (screen.height - h) / 2;
		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();
		}
}
