function checkpw(nform){
      var pw = nform.pword.value   
      pw     = pw.toUpperCase()
      if (pw == "DAISYDOG") {
         parent.frames["main"].document.location.href = "st_private.html";        
         return true;
      }else{
         alert("Invalid password ... sorry access denied!");          
         return true;
      }  
}		