function validar_formulario()
{
  if (document.form1.nombre.value == "" || document.form1.nombre.value==null)
  {
    alert("Por favor, indique su nombre.");
    document.form1.nombre.focus();
 	return (false);
  }
  else if (document.form1.email.value == "" || document.form1.email.value==null)
  {
    alert("Por favor, indique su email de contacto.");
    document.form1.email.focus();
 	return (false);
  }
  else if (document.form1.comentario.value == "" || document.form1.comentario.value == null)
  {
    alert("Por favor, describa detalladamente su consulta.");
    document.form1.mensaje.focus();
 	return (false);
  }
  else
  {
	document.form1.submit();  
  }
  
  return (true);
}

function ponerFecha()
{
	var mydate=new Date() ;
	var year=mydate.getYear();
	if (year < 1000){
		year+=1900;
	}
	var day=mydate.getDay();
	var month=mydate.getMonth();
	var daym=mydate.getDate();
	if (daym<10){
		daym="0"+daym;
	}
	var dayarray=new Array("Domingo","Lunes","Martes","Miercoles","Jueves","Viernes","Sabado");
	var montharray=new Array("Enero","Febrero","Marzo","Abril","Mayo","Junio","Julio","Agosto","Setiembre","Octubre","Noviembre","Diciembre");
	document.write(daym+" de "+montharray[month]+" de "+year);
}
