function VerifyPW(theElement)
{	if (theElement.value.toUpperCase() == "HQ996O")
	{
	   document.theForm.submit();
	}
	else
	{
	   alert("Invalid Password Entered")	
	}
      return 0;
	return 1;
}

