function doClear(theText) {
	if (theText.value == theText.defaultValue) {
		theText.value = ""
	}
}
function doReplace(theText) {
	if (theText.value == "") {
		theText.value = theText.defaultValue
	}
}
