function Glosario(url){
var propiedades="scrollbars=yes,width=760,height=380,top=30,left=20";
var ventana=document.open(url,'glosario',propiedades)}

function Zoom(foto,texto,ancho,alto){
var propiedades="top=30,left=20,";
if (alto>=screen.height-75){
var anchoaux=ancho + 40;
var altoaux=screen.height-75;
propiedades+="scrollbars=yes,";}
else {
var anchoaux=ancho + 30;
var altoaux=alto + 50;}

var ventana=window.open("","",propiedades + "width= " +anchoaux+ ",height= " +altoaux);
var titulo=document.title.substring(document.title.indexOf('-') + 2,document.title.length);

ventana.document.write ("<!DOCTYPE HTML PUBLIC '-//IETF//DTD HTML 4.0//EN'>");
ventana.document.write ("<HTML><HEAD><META HTTP-EQUIV='Content-Type' content='text/htm;charset=ISO-8859-1'>");
ventana.document.write ("<TITLE>Fotos - " +titulo+ "</TITLE>");
ventana.document.write ("<LINK REL=STYLESHEET HREF='general.css' TYPE='text/css'>");
ventana.document.write ("</HEAD><BODY STYLE='background-image: url(backframe.gif)'>");
ventana.document.write ("<TABLE WIDTH=" + ancho + " CELLSPACING='0' ALIGN='Center' BORDER='0'><TR><TD colspan='2'><img src=" + foto + " width=" + ancho + " height=" + alto + "></TD></TR><TR BGCOLOR='#FFCC99'><TD ALIGN='center'>" + texto + "</TD><TD ALIGN='right'><A HREF='javascript:window.close()'>Cerrar</A>&nbsp;</TD></TR></TABLE></BODY></HTML>");
ventana.document.close();}
