<!-- Begin
timeout =360; // 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+0) + ",height=" + (HEIGHT+0);

text = "<html><head><TITLE>Villa Aya -- Bali Private Luxury Villas</title></head><body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' bgcolor='#ffffff'";

if (timeout != 0) text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\"";

text += "><center><img src='" + URL + "'>";

if (timeout != 0) text +="<br><font face='verdana, arial, helvetica' color='silver' size='1'>This window will close after " + timeout + " second.</font>";

text += "</center></body></html>";

preview = window.open("", "preview", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}
//  End -->
