function configDefault(objElement, strDefault, strAction){
	if (strAction == 'clear'){
		// this clears the default
		if (objElement.value == strDefault){
			objElement.value = '';
		}
	}else{
		// this resets it
		if (objElement.value == ''){
			objElement.value = strDefault;
		}
	}
}
