function abrirTitulos() { 
	var Titulos;
	var coorX=0;
	var coorY=0;  
	var opciones="scrollbars=no,resizable=no,width=765,height=523,status=yes,location=no,toolbar=no";
  
	Titulos=window.open("info/historia3.asp","titulos",opciones);
	Titulos.moveTo(coorX,coorY);
	Titulos.focus();

	return;
}

function ampliarFoto(img) { 
	var Foto;
	var opciones="scrollbars=no,resizable=no,width=320,height=255,status=yes,location=no,toolbar=no";

	Foto=window.open("doc/fotos/"+img,"foto",opciones);
	Foto.focus();

	return;
}

function ampliar(titulo,imagen,texto,ancho,alto) {
	var html;

	html="<HTML><HEAD><title>"+titulo+"</title><META HTTP-EQUIV='imagetoolbar' CONTENT='no'><script language='JavaScript' src='inc/funciones.js'></script><script language='JavaScript'>window.defaultStatus=' ';</script></HEAD>";
	html+="<body bgcolor='#FFFFFF' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' style='cursor:hand;' oncontextmenu='return false;' onClick='self.close();'>";
	html+="<table border='0' cellspacing='0' cellpadding='0'>";
  	html+="<tr>";
    html+="<td width='15' height='8'></td>";
    html+="<td width='"+ancho+"' height='8'></td>";
    html+="<td width='15' height='8'></td>";
	html+="</tr>";
  	html+="<tr>";
    html+="<td width='15' height='"+alto+"'></td>";
    html+="<td width='"+ancho+"' height='"+alto+"' align='right' valign='middle'><img src='"+imagen+"' border='0' alt=' click para cerrar esta ventana '></td>";
    html+="<td width='15' height='"+alto+"'></td>";
	html+="</tr>";
  	html+="<tr>";
    html+="<td width='15' height='50'></td>";
    html+="<td width='"+ancho+"' height='50' align='right' valign='top'><p style='font-family: Arial, Helvetica, sans-serif; font-size: 7pt; color: #000000; line-height: 16px; font-weight: bold; margin-bottom: 0px;'>"+texto+"</p></td>";
    html+="<td width='15' height='50'></td>";
	html+="</tr>";
	html+="</table>";
	html+="</body></HTML>";

	var nuevo_ancho=ancho+30;
	var nuevo_alto=(8+alto+50)+24*2+10;

	var popX=(screen.width-nuevo_ancho)/2;
	var popY=(screen.height-nuevo_alto)/2;

	var opciones_pop="toolbar=no,location=no,status=no,scrollbars=no,resizable=no,directories=no,personalbar=no,menubar=no,width="+nuevo_ancho+",height="+nuevo_alto+",left="+popX+",top="+popY+"'";
	if ((self.aNoteWin) && (!self.aNoteWin.closed)) self.aNoteWin.close();
	var popup=window.open("","popup",opciones_pop);
	popup.document.write(html);
	popup.moveTo(popX,popY);
	popup.resizeTo(nuevo_ancho,nuevo_alto);
	self.aNoteWin=popup;
	popup.focus();

	return;
}

function abrirCuestionario(url) { 
	var Cuestionario;
	var anchoPantalla = 775;
	var altoPantalla = screen.height-75;
	var coorX=1;
	var coorY=1;  
	var opciones="scrollbars=yes,resizable=no,width="+anchoPantalla+",height="+altoPantalla+",status=yes,location=no,toolbar=no";

	Cuestionario=window.open(url,"cuestionario",opciones);
	Cuestionario.moveTo(coorX,coorY);
	Cuestionario.focus();

	return;
}

function abrirPuzzle(theURL,ancho,alto) { 
	var popX = (screen.width-ancho)/2;
	var popY = (screen.height-alto)/2;
	
	var opciones_pop = "toolbar=no,location=no,status=yes,scrollbars=no,resizable=no,directories=no,personalbar=no,menubar=no,width="+ancho+",height="+alto+",left="+popX+",top="+popY;
	if ((self.aNoteWin) && (!self.aNoteWin.closed)) self.aNoteWin.close();
 	var puzzlewin=window.open(theURL+"&pw="+ancho+"&ph="+alto,"puzzlewin",opciones_pop);
	self.aNoteWin = puzzlewin;
	puzzlewin.moveTo(popX,popY);
	puzzlewin.resizeTo(ancho,alto);
	puzzlewin.focus();

	return;
}

function asignafoto(id,ruta) {
	self.document.getElementById(id).src=ruta;
}
