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

// USE
//
//<form>
//<input type="text" size=15 value="Search CCCC" onFocus="fieldClear(this)">
//</form>