function PopupFoto(img,typ){
  img=img
  foto1= new Image();
  foto1.src=("/akce/images/"+img+".gif");
  Control(img,typ);
}
function Control(img,typ){
  if((foto1.width!=0)&&(foto1.height!=0)){
    viewFoto(img,typ);
  }
  else{
    funzion="Control('"+img+"','"+typ+"')";
    intervallo=setTimeout(funzion,20);
  }
}
function viewFoto(img,typ){
  largh=foto1.width;
  altez=foto1.height;
  stringa="width="+largh+",height="+altez+",resizable=no,scrollbars=no";
  finestra=window.open("/akce/popup.php?image="+img+"&typ="+typ,"",stringa);
}
