function CheckIt() 
{
var Password = document.forms[0].password.value;

if (Password == "arteries") 
{
document.location.href="CV Exercise 5 key.doc";
} 
else 
{
alert('Wrong password, please try again');
}
}
