function clearText(thefield) {
	if (thefield.defaultValue == thefield.value) { 
		thefield.value = "";
	} else {
		thefield.value = thefield.value;
	}
}

function clearMe(field) {
	field.value="";
}