function Foto(img){
foto1= new Image();
foto1.src=(img);
Control(img);
}
function Control(img){
if((foto1.width!=0)&&(foto1.height!=0)){
viewFoto(img);
}
else{
fun="Control('"+img+"')";
cas=setTimeout(fun,20);
}
}
function viewFoto(img){
fwidth=foto1.width+20;
fheight=foto1.height+20;
diswidth = window.screen.width;
disheight = window.screen.height;
posleft= (diswidth - fwidth) / 2
postop= (disheight - fheight) / 2
string="width="+fwidth+",height="+fheight+",left="+posleft+",top="+postop,imagetoolbar=false;
okno=window.open("","",string);
okno.document.writeln ("<HEAD><TITLE>Miha JEZERŠEK - Dirkalno društvo OKTAN</TITLE>");
okno.document.writeln ("</HEAD><Script language = Javascript>self.focus();</script><body bgcolor='#990924' oncopy='return false' onselectstart='return false' oncontextmenu='return false'><a href='#' onClick='javascript:window.close();'><img src="+img+" GALLERYIMG='no' BORDER='1' name='krneki'></a></BODY>");
okno.document.close();
return false;
}