// BIGFOTO   -  (c) Marek Laco 1999
//              mlaco@alpha.euba.sk
//              http://www.euba.sk/~mlaco
//
// volne mozte sirit, len mi tu nechajte tento text. 
//
// pouzitie: Bigfoto(cesta,subor,sirka,vyska);
//     teda napr: Bigfoto('http://members.xoom.com/nevedko/imgs/','marek.gif',200,100);
//
//


ie4 = false;

if ((navigator.appName == 'Microsoft Internet Explorer')  &&  (navigator.appVersion.substring(0, 1) >= 4)) ie4 = true;

function Bigfoto(id, width, height) {

var name="obrazok";

height += 45;

iwidth = width;
iheight = height;

top_px=0;  // ((screen.height / 2) - (height / 2) - 20);
left_px=((screen.width / 2) - (width / 2));

sbars="no";

if (screen.height < (height + 33)) {
sbars="yes"
if (ie4) width+=16; //sbars
top_px=5;
height=(screen.height-50-35);
}

if (screen.width < (width + 5)) {
sbars="yes"
if (ie4) height+=16; //sbars
left_px=5;
width=(screen.width-50);
}

msg=window.open("obrazok.php?id="+id,name,"toolbar=no,directories=no,menubar=no,resizable=1,scrollbars="+sbars+",status=no,top="+top_px+",left="+left_px+",width="+width+",height="+height,"MIME-CONTENT=text/html");

}

