
function validtel(checkStr)
{
var checkOK = "0123456789";
var allValid = true;
var allNum = "";
for (i = 0;  i < checkStr.length;  i++)
  {
    ch = checkStr.charAt(i);
    for (j = 0;  j < checkOK.length;  j++)
      if (ch == checkOK.charAt(j))
        break;
    if (j == checkOK.length)
    {
      allValid = false;
      break;
    }    
  }
return  allValid
}


function validar() {

   if (document.form1.nombre.value == '') {
	     alert("Debes ingresar tu nombre");
			 document.form1.nombre.focus();
			 return false;
	 }
	 
	 

   if (document.form1.email.value == '') {
	     alert("Debes ingresar tu correo electr\363nico");
			 document.form1.email.focus();
			 return false;
	 }
	 
	 
	 
   if (document.form1.telefono.value == '') {
	     alert("Debes ingresar tu n\372mero telef\363nico");
			 document.form1.telefono.focus();
			 return false;
	 } else {
	    if (!validtel(document.form1.telefono.value)) {
			   alert("Por favor ingrese \"Tel\351fono correcto\" sin espacios, letras o los siguientes caracteres ( ) \\");
				 document.form1.telefono.value = '';
  			 document.form1.telefono.focus();
	  		 return false;
			}
      }
	  
	 

   if (document.form1.asunto.value == '') {
	     alert("Debes ingresar tu asunto");
			 document.form1.asunto.focus();
			 return false;
	 }
	 
	 
	 
   if (document.form1.comentario.value == '') {
	     alert("Debes ingresar tu comentario");
			 document.form1.comentario.focus();
			 return false;
	 }
	 	 
}

