document.pform.pword.focus()

//Function to check password.
function checkWord() {
	if (document.pform.pword.value.toUpperCase() == "DRUM") {
		location.href="browser/alm_list.php?sec_check=1"
	} else {
		alert ("Bad password, access denied!!!")
	}
}