function validate_form2 ( )
{
	valid = true;

        if ( document.FF_forgotpass.yourname.value == "" )
        {
                alert ( "Please fill in the 'Your name' box." );
                valid = false;
        }
		
        if ( document.FF_forgotpass.email.value == "" )
        {
                alert ( "Please fill in the 'Your email' box." );
                valid = false;
        }
      
        return valid;
}


