function validar(Ctrl, Mensaje)
{
  alert(Mensaje);
  Ctrl.focus();
  return;
}

function es_email(email)
{
  var result = false
  var theStr = new String(email)
  var index = theStr.indexOf("@");
  if (index > 0)
  {
    var pindex = theStr.indexOf(".",index);
    if ((pindex > index+1) && (theStr.length > pindex+1))
	result = true;
  }
  return result;
}

function validacionForm() {

 todo_ok=true;

 if(document.forms['form1'].nombre.value=="" && todo_ok) {
    validar(document.forms['form1'].nombre, "Debe introducir su nombre.")
    todo_ok=false;
 }
 
 if(document.forms['form1'].telefono.value=="" && todo_ok) {
    validar(document.forms['form1'].telefono, "Debe introducir su telefono.")
    todo_ok=false;
 }
 
 if(document.forms['form1'].movil.value=="" && todo_ok) {
    validar(document.forms['form1'].movil, "Debe introducir su movil.")
    todo_ok=false;
 }
 
 if(document.forms['form1'].email.value=="" && todo_ok) {
    validar(document.forms['form1'].email, "Debe introducir su email.")
    todo_ok=false;
 }
 


 if (todo_ok==true) document.forms['form1'].submit();

}
