function SubmitFrm(theForm)
{
//var f = document.FrmContacto;
  
  var strMsg = '';
	
	if(theForm.nombre.value == ''){
    strMsg += ' - El Campo "Nombre" es Obligatorio \n';
	}
	
	if(theForm.email.value == ''){
    strMsg += ' - El Campo "E-Mail" es Obligatorio \n';
	}
	
	if(theForm.email.value != ''){
     var mail = theForm.email.value;
     var Formato = /^([\w-\.])+@([\w-]+\.)+([a-z]){2,4}$/;
     var Comparacion = Formato.test(mail);
     
	 	if(Comparacion == false){
         strMsg += ' - El E-mail ingresado no es v\u00e1lido';
		 //alert("El E-Mail ingresado no es válido");
		  //f.mail.focus();
          //return false;
    						 }
	 

						  }	
	
	
	if(strMsg != ''){
    strMsg = strMsg;
    alert(strMsg);
	//f.nombre.focus()
    return (false);
  }
	else
	{
		$("#Botonera").hide();
		$("#Loader").show();
		theForm.submit();
	}
}

