// JavaScript Document
function mostrarFecha(){
  var fecha=new Date();
  var diames=fecha.getDate();
  var diasemana=fecha.getDay();
  var mes=fecha.getMonth() +1 ;
  var ano=fecha.getFullYear();

  var textosemana = new Array (7);
  textosemana[0]="Domingo";
  textosemana[1]="Lunes";
  textosemana[2]="Martes";
  textosemana[3]="Miércoles";
  textosemana[4]="Jueves";
  textosemana[5]="Viernes";
  textosemana[6]="Sábado";

  var textomes = new Array (12);
  textomes[1]="Enero";
  textomes[2]="Febrero";
  textomes[3]="Marzo";
  textomes[4]="Abril";
  textomes[5]="Mayo";
  textomes[6]="Junio";
  textomes[7]="Julio";
  textomes[8]="Agosto";
  textomes[9]="Septiembre";
  textomes[10]="Octubre";
  textomes[11]="Noviembre";
  textomes[12]="Diciembre";

  document.write(textosemana[diasemana] + " " + diames + " de " + textomes[mes] + " de " + ano);
}
	
function mueveReloj(){
  momentoActual = new Date();
  hora = momentoActual.getHours();
  minuto = momentoActual.getMinutes();
  segundo = momentoActual.getSeconds();
  if (minuto < 10)
	minuto = "0" + minuto;
  if (segundo < 10)
    segundo = "0" + segundo;
  horaImprimible = hora + ":" + minuto + ":" + segundo;
  document.form_reloj.reloj.value = horaImprimible;
  document.h = segundo;
  setTimeout("mueveReloj()",1000);
} 

function seleccionar(boton, nom, bot){
  document.getElementById(bot).style.marginLeft = '-301px';
  boton.src="img/"+nom+"Sel.gif";	
}

function deseleccionar(boton, nom, bot){
  document.getElementById(bot).style.marginLeft = '-297px';	
  boton.src="img/"+nom+".gif";	
}

function ocultarTodo(){
  document.getElementById("divPrincipal").style.visibility = "hidden";
  document.getElementById("divBases").style.visibility = "hidden";
  document.getElementById("divInscripcion").style.visibility = "hidden";
  document.getElementById("divRubros").style.visibility = "hidden";
  document.getElementById("divNominados").style.visibility = "hidden";
  document.getElementById("divGanadores").style.visibility = "hidden";
  document.getElementById("divGanadoresAnt").style.visibility = "hidden";
  document.getElementById("divOro").style.visibility = "hidden";
  document.getElementById("divOroAnt").style.visibility = "hidden";
  document.getElementById("divContactos").style.visibility = "hidden";  
}

function mostrar(div){
  ocultarTodo();
  document.getElementById(div).style.visibility = "visible";    
}
