function checkLoginInput()
{

  if ( document.getElementById( 'email' ).value == '' )
  {
    alert( "Please enter a value for the \"Email\" field." );
    document.getElementById( 'email' ).focus();
    return false;
  }

  if ( document.getElementById( 'password' ).value == '' )
  {
    alert( "Please enter a value for the \"Password\" field." );
    document.getElementById( 'password' ).focus();
    return false;
  }

  //setSAction(form1);

  return true;
}