<!-- Begin
function Login(form) {
var username = form.username.value;
var password = form.password.value;
var username_ref = "privacy001";
var password_ref = "privacy001";
//var server = form.server.value;
if (username == username_ref && password == password_ref) {
//var htsite = "http://" + username + ":" + password + "@" + server;
var htsite = "/privacy/survey.html";
window.location = htsite;
}
else if (username == "" || password == ""){
alert("Please enter your username and password.");
   }
   else {
   alert("Your username and password combination is not valid. Please enter the correct provided username and password");
   }
}
//  End -->
