//Creada por Henry F.C y modificada por Guillermo Arias Cruz para Zews S.A
  function Ventana(img,enca,id){
  foto1= new Image();
  foto1.src=(img);
  Control(img,enca,id);
  }

function Control(img,enca,id){
if((foto1.width!=0)&&(foto1.height!=0)){
  verFoto(img,enca,id);
}
  
}
function verFoto(img,enca,id){
  ancho=foto1.width;
  alto=foto1.height;
  ventana = window.open("mf.php?foto="+img+"&an="+ancho+"&al="+alto+"&tit="+enca+"&id="+id,"Imagen","width="+ancho+",height="+alto+",left=190,top=110,scrollbars=no,menubars=no,statusbar=NO,status=NO,resizable=NO,location=NO");
 // ventana.moveTo((screen.width - ancho)/2,(screen.height - (alto))/2);//centra la ventana
}

  

