// JavaScript Document
var password;

var pass1="ceat";

password=prompt('Please enter password to view the contents of this page:',' ');

if (password==pass1)
  alert('Password Correct. Click OK to enter.');
else
   {
    window.location="../PUBLICATIONS/fail.html";
    }