function openfoto(img){
  foto= new Image();
  foto.src=(img);
  ControlFoto(img);
}
   
function ControlFoto(img){
  if((foto.width!=0)&&(foto.height!=0)){
    ViewFoto(img);
  }
  else{
    interval_a="ControlFoto('"+img+"')";
    interval_b=setTimeout(interval_a,20);
  }
}
function ViewFoto(img){
  width=foto.width+20;
  height=foto.height+24;
  
  try {
  if (output.closed == false) throw "offen";
  }
  catch (e) {
     if (e=="offen") {
     output.close();
     }
  }
  output=window.open("","output","left=40,top=40,width="+width+",height="+height+",dependent=yes,copyhistory=no,location=no,toolbar=no,menubar=no,status=no,scrollbars=no,resizable=no");
  
  output.document.open ();
  output.document.write("<html><head><title>..:: Foto ::..<\/title><\/head>");
  output.document.write("<body  bgcolor=\"#FAD59C\" text=\"#FAD59C\" link=\"#FAD59C\" vlink=\"#FAD59C\" alink=\"#FAD59C\" leftmargin=\"0\" marginwidth=\"0\" topmargin=\"0\" marginheight=\"0\">");
  output.document.write("<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"100%\" height=\"100%\">");
  output.document.write("<tr><td width=\"100%\" height=\"100%\" align=\"left\" valign=\"top\"><p><a href=\"javascript:self.close()\"><img src=\""+img+"\" width=\""+foto.width+"\" height=\""+foto.height+"\" border=\"10\" alt=\"click here to close the window\"></a><\/p><\/td><\/tr>");
  output.document.write("<\/table><\/body><\/html>");
  output.document.close();
  output.focus();
} 

