var mensaje="Página en construcción, estamos en fase de pruebas, perdonen las molestias"; 

function logo()
{
 document.write("<img src=graficos/logo.gif>");
} 

function menu()
{
 document.write("<table width=28% align=left border=0 cellpadding=0 cellspacing=0>");
    document.write("<tr>");
	document.write("<td><center><a href=/..><img src=graficos/principal.gif border=0></a></center></td>");   
	document.write("<td><center><img src=graficos/punto.gif border=0></center></td>");
    document.write("<td><center><a href=empresa.asp><img src=graficos/empresa.gif border=0></a></center></td>");
	document.write("<td><center><img src=graficos/punto.gif border=0></center></td>");
    document.write("<td><center><a href=javascript:; onclick=window.open('correo.asp','','width=500,height=430,scrollbars=1');><img src=graficos/contactar.gif border=0></a></center></td>");
	document.write("<td><center><img src=graficos/punto.gif border=0></center></td>");
    document.write("<td><center><a href=registrar.asp><img src=graficos/registrarse.gif border=0></a></center></td>");
	document.write("<td><center><img src=graficos/punto.gif border=0></center></td>");
    document.write("<td><center><a href=curioso.asp><img src=graficos/curioso.gif border=0></a></center></td>");
	document.write("<td><center><img src=graficos/punto.gif border=0></center></td>");
    document.write("<td><center><a href=ayuda.asp><img src=graficos/ayuda.gif border=0></a></center></td>");
  document.write("</tr>");
document.write("</table>");
}

function banner()
{
 document.write('<object classid=clsid:D27CDB6E-AE6D-11cf-96B8-444553540000 codebase=http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0 width=390 height=86>');
 document.write('<param name=movie value=graficos/banner.swf>');
 document.write('<param name=quality value=high>');
 document.write('<embed src=graficos/banner.swf quality=high pluginspage=http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash type=application/x-shockwave-flash width=390 height=86>');
 document.write('</embed>');
 document.write('</object>');
}

function mOvr(src,clrOver) {
    if (!src.contains(event.fromElement)) {
	  src.style.cursor = 'hand';
	  src.bgColor = clrOver;
	}
  }
  function mOut(src,clrIn) {
	if (!src.contains(event.toElement)) {
	  src.style.cursor = 'default';
	  src.bgColor = clrIn;
	}
  }
  function mClk(src) {
    if(event.srcElement.tagName=='TD'){
	  src.children.tags('A')[0].click();
    }
  }
  
function abrir() 
{ 
  var i, args=abrir.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}

function fecha()
{
    m = new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Septiembre","Octubre","Noviembre","Diciembre")
	d = new Array("Domingo","Lunes","Martes","Miércoles","Jueves","Viernes","Sábado")
	hoy = new Date()
	dia=hoy.getDay()
	diaesp=d[dia]
	diames=hoy.getDate()
	mes=hoy.getMonth()
	mesesp=m[mes]
	anio=hoy.getYear()
	fechaesp=diaesp + ", " + diames + " de " + mesesp + " de " + anio
	document.write("<left>")
	document.write("<font size='1'  face='verdana' color='#000099'>")
	document.write(fechaesp)
	document.write("</font>")
	document.write("</left>")
}	