<!--
function preview(mypage,myname,w,h){
	scrollbars = 'yes';
	LPosition = (screen.width) ? (screen.width-w)/2 : 0;
	TPosition = (screen.height) ? (screen.height-h)/2 : 0;
	settings ='height='+h+',width='+w+',top='+TPosition+',left='+LPosition+',scrollbars='+scrollbars+',resizable';
	win = window.open('',myname,settings);
	win.document.write("<TITLE>"+myname+"</TITLE>")
	win.document.write("<BODY>")
	win.document.write("<A HREF=javascript:window.close()>")
	win.document.write("<img src='"+mypage+"' border=0><BR>")
	win.document.write("<center>sluit window</center></A>")
	win.document.write("</BODY>")
	win.document.write("</HTML>")
	win.focus();
}
//-->
