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