// JavaScript Document
function clearTextfeild(theText) {
	if (theText.value == theText.defaultValue) {
		theText.value = "";
		theText.style.color = '#000000'
	}
}
function resetTextfeild(theText) {
	if (theText.value == "") {
		theText.value = theText.defaultValue;
		theText.style.color = '#888888'
	}
}