// JavaScript Document
function val()
{
  var num2 = /^([0-9]|-)+$/

  valor = document.getElementById("email").value;
  if( !(/\w{1,}[@][\w\-]{1,}([.]([\w\-]{1,})){1,3}$/.test(valor)) ) 
  {
    alert("POR FAVOR ESCRIBA UN E-MAIL VALIDO");
    return false;
  }
  
  if(!num2.test(document.forma.telefono.value) && (document.forma.telefono.value!="") )
  {
	alert('POR FAVOR ESCRIBA UN NUMERO DE TELEFONO VALIDO');
	document.forma.telefono.focus();
	return false;
  } 
   
  indice = document.getElementById("asunto").selectedIndex;
  if( indice == null || indice == 0 )
  {
     alert("POR FAVOR SELECCIONE EL ASUNTO DEL MENSAJE");
     return false;
  }
  
  if(document.forma.mensaje.value=="")
  {
    alert("POR FAVOR ESCRIBA SU MENSAJE");
    document.forma.mensaje.focus();
    return false;  
  }
}

function valor()
{
    document.forma.nombre.value=""
}

function inicio()
{
  if(document.forma.nombre.value=="")
  {
	 document.forma.nombre.value="ANONIMO"
	 //document.forma.asunto.value="Elija una opcion";
  }
}