

// Global Functions used across the NHM site
//--------------------------------------------------



// This function will remove the contents of a given input field if the default
// text is still present
function clearInputField(obj, defaultText) {
	if (obj.value == defaultText)
		obj.value = "";		
}
