// JavaScript Del Portal Crupy
function muestra(titulo,fecha,ext,fotz0,fotz1) {  
   var opciones="toolbar=no,directories=no,location=no,copyhistory=no,scrollbars=no,resizable=yes,width="  + fotz0 + ",height=" + fotz1;
   showf = window.open("","",opciones);
   showf.document.write("<html><head><title>"+titulo+"</title></head><body bgcolor=\"#FFFFFF\" text=\"#000000\" leftmargin=\"0\" topmargin=\"0\" marginwidth=\"0\" marginheight=\"0\">");
   showf.document.write("<a href=\"javascript:window.self.close()\">");
   showf.document.write("<img src=\"" + fecha +  "." + ext + "\" ALT=\"Click para cerrar ventana\" border=\"0\"></a>");
   showf.document.write("</body></html>");
   }
function abr(file) {
window.open(file,"auxiliar","width=780,height=550,toolbar=no,directories=no,location=no,copyhistory=no,scrollbars=yes,resizable=yes");
}
function abreVentana(accion,ancho,alto) {
  window.open(accion,"CRUPY","width="+ancho+",height="+alto+",toolbar=no,directories=no,location=no,copyhistory=no,scrollbars=yes,resizable=yes");
 }