// JavaScript Document

function clearTextfield(theText) {
	if (theText.value == theText.defaultValue) {
		theText.value = "";
		theText.style.color = "#000000";
	}
}

function resetTextfield(theText) {
	if (theText.value == "") {
		theText.value = theText.defaultValue;
		theText.style.color = "#979797";
	}
}
