<!-- Begin
		timeout =0; // Close window after __ number of seconds?
		// 0 = do not close, anything else = number of seconds

		function Start(URL, WIDTH, HEIGHT) {
		windowprops = "left=50,top=50,width=" + (WIDTH+50) + ",height=" + (HEIGHT+50);

		text = "<html><head><title>PRODUCT WEERGAVE</title></head><body bgcolor='#FFFFFF' style='color: #FFFFFF;'";

		if (timeout != 0) text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\"";

		text += "><center><img style='border-style: solid; border-width: 1px; border-color: #000000;'  src='" + URL + "'>";

		if (timeout != 0) text +="<br><font face='arial, helvetica' size='-1'>Venster sluit na " + timeout + " seconden.</font>";

		text += "</center></body></html>";

		preview = window.open("", "preview", windowprops);
		preview.document.open();
		preview.document.write(text);
		preview.document.close();
		}
		//  End -->
