/* Function to handle password protection  */

function admitConsultant()  {
    var done = 0
    var pWord = document.form1.pWord.value.toUpperCase();
    var page = document.form1.page.value;

  if (page=="list" && pWord=="ICHIRO") {
   window.location="list.htm"; done=1;
   }
  if (done==0) {
	alert ("Sorry! That password is not correct!");
   }
}


