function validate(theForm) {
	//validate login id
	if(theForm.theId.value=="") {
		alert("Please enter your Login Id")
		theForm.theId.focus()
		return false
	}
	//validate password
	if(theForm.pword.value=="") {
		alert("Please enter the password")
		theForm.pword.focus()
		return false
	}
}
