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((!es_email(document.forms['form1'].email.value)) && (todo_ok)) {
    validar(document.forms['form1'].email, "Debe de introducir un email válido.")
    todo_ok=false;
 }  
 
 if(document.forms['form1'].fechaInicio.value=="" && todo_ok) {
    validar(document.forms['form1'].fechaInicio, "Debe introducir la fecha de inicio.")
    todo_ok=false;
 }
  
 if(document.forms['form1'].fechaFin.value=="" && todo_ok) {
    validar(document.forms['form1'].fechaFin, "Debe introducir la fecha de finalización.")
    todo_ok=false;
 }

 if (todo_ok==true) document.forms['form1'].submit();
}
