var pole = window.location.search.substr(1).split("&"); 

var httpGetVars = new Array();

for(i = 0; i < pole.length; i++){
	httpGetVars[pole[i].split("=")[0]] = unescape(pole[i].split("=")[1])}; 

function openWindow(w,h,path)
{
   
   new_okno = window.open('image.htm?w='+w+'&h='+h+'&img='+path,"new_okno",'width='+w+',height='+h+',menubar=no,resizable=yes,left=0,top=0');
   new_okno.resizeTo(w+10,h+50);
   window.new_okno.focus();

}
function printImage()
{
    document.write('<img src="images/'+ httpGetVars["img"]+'" alt="" style="float:none;">');
}
