<!--
/**
  * Removes the text in a textbox. Use such as:
  * <input type="text" name="userId" maxlength="20" value="user name" onclick="removeText(this)"/>
  */
  function submitLoginForm() {
    document.getElementById('memberslogin').submit();
  }
function removeText(element) {
	element.value = "";
} 
function showHand(element) {
    element.style.cursor='hand';
}

//-->
