//Nombre archivo: ventanas.js
//Funciones Ventanas

function PopUp(img){ 
foto1= new Image(); 
foto1.src=(img); 
Control(img); 
} 
function Control(img)
{    if((foto1.width!=0)&&(foto1.height!=0)){ 
        verFoto(img); 
    }else{ 
        funcion="Control('"+img+"')"; 
        intervalo=setTimeout(funcion,20); 
        } 
    } 
function verFoto(img)
{	ancho=foto1.width+20; 
   alto=foto1.height+20; 
   cadena="width="+ancho+",height="+alto+",top=0,left=0"; 
   ventana=window.open(img,"ventana",cadena); 
} 


function abrir(id)
{	if (id== "en") { URL = "confidencialidad.php"; }	
	if (id== "es") { URL = "confidencialidad.php"; }
	window.open(URL,"aviso","width=680, height=300, scrollbars=no, menubar=no, location=no, resizable=no, top=0, left=0") 
}



