function Login(form) {



var password = form.password.value.match('gobosco');

if (password == null){
alert("Sorry, that is not the correct password. Please try again.");
   }

else if (password) {
parent.top.location = "hr_club_in.html";
}

}