<!--
function amplia(queimagen,y,x){
imagen=new Image();
imagen.src=queimagen;
//app=navigator.appName;
//if (app.indexOf('Netscape') == -1) {
//x=imagen.height;
//y=imagen.width;
//};
//si es explorer, analiza automaticamente el tamaņo de la imagen y de la ventana

//LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
//TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
LeftPosition = 100;
TopPosition = 10;

caracteristicas="toolsbars=0,location=0,resizable=0,width="+parseInt(y)+",height="+parseInt(x)+",top="+TopPosition+",left="+LeftPosition;
ventana=window.open("","",caracteristicas);
ventana.document.write("<HEAD><TITLE>Consume hasta morir</title></head>");
ventana.document.write("<body leftmargin='0' topmargin='0' marginwidth='0' marginheight='0' bgColor='black' background='../../img/cargando.gif' style='background-image: url(../../img/cargando.gif); background-attachment: fixed; background-color: #000000; background-repeat: no-repeat; background-position: 50% 50%'><center><a href='#' onClick='window.close();'><img src='"+ queimagen+"' id='foto' border='0'></a></center></body>");
ventana.foto.src;
};

//que indique el tamaņo de la foto
//segun la fotografia que clicle le dice el tamaņo
//luego redimensionar las ventanas segun el tamaņo de la imagen

function abre(quetxt){
window.open(quetxt,"ww","width=450,height=325,top=55,left=55,scrollbars=yes,resizable=1");
}

//-->