// JavaScript Document// To clear the value in a text field IF the current value is the default value
// USAGE
// onclick="clearTextFieldValue([fieldName], [defaultValue]);"
function clearTextFieldDefaultValue(el, defaultValue)
{
	if (el.value == defaultValue)
		el.value = '';
}
