/*******************************************************
DYNAMIC FORM FIELD MANIPULATION
*******************************************************/
function passwordToggle(textInputObject, pwdInputObject) {
	// hide the input field
	textInputObject.style.display = "none";
	
	// reveal the password field
	pwdInputObject.style.display = "inline";
	pwdInputObject.focus();
}
function clearInputField(fieldToClear, defaultText) {
	if (fieldToClear.value == defaultText)
	fieldToClear.value="";
}
