/* - - - - - - - - - - - - - - - - - - - - - - -
 JavaScript
 Miércoles, 21 de Noviembre de 2007 12:39:36
 HAPedit 3.1.11.111
 - - - - - - - - - - - - - - - - - - - - - - - */


function validateForm() 
{
 var okSoFar=true
 with (document.phpformmailer)
 {
  if (txtAli.value=="" && okSoFar)
  {
    okSoFar=false
    alert("Ingrese Alias.")
    txtAli.focus()
  }

  if (txtPass.value=="" && okSoFar)
  {
    okSoFar=false
    alert("Ingrese Password.")
    txtAli.focus()
  }

  if (okSoFar==true)  submit();
 }
}

