/* Mostrar fecha cabecera: Inicio   */
function mostrarFecha() {
	var months=new Array(13);
		months[1]="Enero";
		months[2]="Febrero";
		months[3]="Marzo";
		months[4]="Abril";
		months[5]="Mayo";
		months[6]="Junio";
		months[7]="Julio";
		months[8]="Agosto";
		months[9]="Septiembre";
		months[10]="Octubre";
		months[11]="Noviembre";
		months[12]="Diciembre";
	var time=new Date();
	var lmonth=months[time.getMonth() + 1];
	var date=time.getDate();
	var year=time.getYear();
	if (year < 2000)
	year = year + 1900;
	document.write(date + " de " + lmonth + " de " + year);
}
/* Mostrar fecha cabecera: Fin   */

/* Ventana para imagenes: Inicio   */
function mostrarimagen(url_imagen,titulo){
  var win=null;
 	var img = new Image();
 	img.src = url_imagen;
  var PosIzda = (screen.width-img.width)/2;
  var PosSup = (screen.height-img.height)/2;
	win=window.open('','','width='+img.width+',height='+img.height+',left='+PosIzda+',top='+PosSup+',scrollbars=no,resizable=0,toolbar=0');
	win.document.write ('<html>\n');
	win.document.write (' <head>\n');
	win.document.write ('  <title>'+titulo+'</title>\n');
	win.document.write (' </head>\n');
	win.document.write (' <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n');
	win.document.write ('  <img src="'+url_imagen+'" height='+img.height+' width='+img.width+'>\n');
	win.document.write (' </body>\n');
	win.document.write ('</html>\n');	
}
/* Ventana para imagenes: Fin   */

/* Ventana para imagenes: Inicio   */
function mostrarflash(url_imagen,titulo,ancho,alto){
  var win=null;
 	var img = new Image();
 	img.src = url_imagen;
  var PosIzda = (screen.width-ancho)/2;
  var PosSup = (screen.height-alto)/2;
	win=window.open('','','width='+ancho+',height='+alto+',left='+PosIzda+',top='+PosSup+',scrollbars=no,resizable=0,toolbar=0');
	win.document.write ('<html>\n');
	win.document.write (' <head>\n');
	win.document.write ('  <title>'+titulo+'</title>\n');
	win.document.write (' </head>\n');
	win.document.write (' <body leftmargin="0" topmargin="0" marginwidth="0" marginheight="0">\n');
	win.document.write ('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=7,0,0,0" width="'+ancho+'" height="'+alto+'" id="'+titulo+'" align="middle">\n');
	win.document.write ('<param name="allowScriptAccess" value="sameDomain">\n');
	win.document.write ('<param name="movie"" value="/pub/act/imgs/'+url_imagen+'">\n');
	win.document.write ('<param name="quality" value="high">\n');
	win.document.write ('<param name="bgcolor" value="#ffffff">\n');
	win.document.write ('<embed src="/pub/act/imgs/'+url_imagen+'" quality="high" bgcolor="#ffffff" width="'+ancho+'" height="'+alto+'" name="'+url_imagen+'" align="middle" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer">\n');
	win.document.write ('</object>\n');
	win.document.write (' </body>\n');
	win.document.write ('</html>\n');	
}
/* Ventana para imagenes: Fin   */

/* Botón Ir a: Inicio   */
function MM_goToURL() {
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
/* Botón Ir a: Fin      */

/* Abre nuevo navegador: Inicio   */
function mostrarVentana(id) {
var ancho = 760
var alto = 500
var PosIzda = (screen.width-ancho)/2;
var PosSup = (screen.height-alto)/2;
OpenWindow=window.open("/pub/act/detalle2.asp?id="+id, "newwin", "height="+alto+", width="+ancho+", top="+PosSup+", left="+PosIzda+",toolbar=no,scrollbars=yes,menubar=no,resizable=yes");
}
/* Abre nuevo navegador: Fin   */
