function Start(URL, WIDTH, HEIGHT) {
	windowprops = "left=100,top=100,width=" + (WIDTH+4) + ",height=" + (HEIGHT+20);
	text = "<html><head><title>Image</title></head><body bgcolor='#616532' leftmargin='0' topmargin='2'";
	text += "><center><img src='" + URL + "'><br>";
	text += "<a href='' onclick='window.close()' style='color:#E9DFCF;font-family:arial;font-size:12px;font-weight:bold;text-decoration:none;'>Close Window</a>";
	text += "</center></body></html>";
	preview = window.open("", "preview", windowprops);
	preview.document.write(text);
}