timeout =0;

function Start(URL, WIDTH, HEIGHT) {
windowprops = "left=10,top=10,width=" + (WIDTH+0) + ",height=" + (HEIGHT+0);

text = "<html><head><title>&rsaquo;&rsaquo; studiografik.eu - Podgl¹d</title></head><SCRIPT TYPE='text/javascript' src='blokada.js'></SCRIPT><body oncontextmenu='return false' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' bgcolor='#000000'";

if (timeout != 0) text +=" onLoad=\"setTimeout('window.close()', " + timeout*1000 + ");\"";

text += "><center><img src='" + URL + "'>";

if (timeout != 0) text +="<br>Preview closes after " + timeout + " seconds.";

text += "</center></body></html>";

preview = window.open("", "prewiev", windowprops);
preview.document.open();
preview.document.write(text);
preview.document.close();
}





