<!-- //script hider
function form2_validator(theForm)                                     
    
     {     
          
        if(theForm.actor.value == "") {
                 alert("Please enter your username.");
                 theForm.actor.focus();
                 return(false);
                  
               
        } 

        if(theForm.film.value == "") {
                 alert("Please enter your password.");
                 theForm.film.focus();
                 return(false);
                  
               
        } 
        
        return (true);
}
// end script hiding -->