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

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

text = "<!DOCTYPE html PUBLIC \"-//W3C//DTD XHTML 1.0 Transitional//EN\" \"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd\"><html><head><title>African Leather - Picture Zoom</title><meta http-equiv=\"Content-Type\" content=\"text/html; charset=iso-8859-1\"><link type=\"text/css\" rel=\"stylesheet\" href=\"styles/african.css\" /></head><body";

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

text += "><img class=\"preview\" src='" + URL + "'>";

if (timeout != 0) text +="<br /><br /><p>Auto close after " + timeout + " seconds.</p>";

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

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