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