<!--
var s_width ='';
var s_height ='';
s_width=screen.width
s_height=screen.height
if (s_width >= "640"){
//alert ( "resolucion "+ s_width+" x "+s_height);
var ancho = s_width * 0.99;
var alto = s_height * 0.91;
}
function popUp(URL) {
day = new Date();
id = day.getTime();
eval("page" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=yes,location=0,statusbar=0,menubar=0,resizable=1,top=0,left=0,width="+ancho+",height="+alto+"');");
}
-->

