function CheckPassword()
{
var password;
var pass1 = "seppass2010"; // place password here
/*password=prompt("Please enter your password:","");
if (password==pass1) {
  window.location= "employeefiles";//correct
} else {
  alert("Password incorrect. For security, reload the page to try again.");
}*/
if (document.getElementById("tbPassword").value==pass1)
{
  window.location= "employeefiles";
} else {
  alert("Password incorrect");
}
}
// End -->
