//sibir.sk
function ViewImage(ifile,ix,iy,ititle) {
var win;
win = window.open("","","width="+ix+",height="+iy+", scrollbars=no, menubar=no,toolbar=no");
win.document.open();
win.resizeTo(ix+10,iy+25); //kvoli oknu a liste v nom
win.document.write("<html><head><title>"+ititle+"</title>");
//win.document.write('<link rel="stylesheet"  type="text/css" href="rkspirit_poprad.css" />');
win.document.write("</head><body style='background-color:#FFFFFF;' >");
win.document.write('<span style="position:absolute;width:'+ix+'px;height:'+iy+'px;left:0px;top:0px">');
win.document.write("<img src="+ifile+" width="+ix+" height="+iy+"></span></body></html>");
win.focus();
//win.document.close();
}

function pop1(page, okno, w, h) { 
var z;
w+=45;
h+=20;
z=window.open(page, okno, "toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,width="+w+",height="+h+", left=20, top=130"); 
if (window.focus) {z.focus()}
} 

var w;
function otvor( file,okno,w,h ) {
//w+=23; h+=33;
w = window.open(file,okno,'height='+h+',width='+w+',scrollbars=1, menubar=yes, toolbar=no');
if (window.focus) {w.focus()}
//win.document.open();
}


