var ventana;
var cont=0;
var titulopordefecto = "Defecto";
function redimensionar(ancho,alto){
    ventana.resizeTo(ancho+12,alto+28);
	ventana.moveTo((screen.width-ancho)/2,(screen.height-alto)/2);
  } 
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);
     }
    else{
      funcion="Control('"+img+"','"+enca+"','"+id+"')";
      intervalo=setTimeout(funcion,20);
      }
}
function verFoto(img,enca,id){
	if(cont==1){
		    cont=0;
	        ventana.close();
			ventana=null;
	} 
     if(enca==null){
	     enca=titulopordefecto;
	   } 
  ancho=foto1.width;
  alto=foto1.height;
  ventana = window.open("mgaleria.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");
 
   cont++;
}


  

