//get the password for accessing the resume' file
function getpass()
{
var givenpass = prompt("Enter Password Provided or Pick OK to get one","NoNe")
if(givenpass == "NoNe")
{
self.location="contact.html";
}
else
{
self.location=givenpass + ".html";
}
}
