function doClear(ev) {
	if (this.value == this.defaultValue) { this.value = "" }
}

function doDefault(ev) {
	if (this.value == "") { this.value = this.defaultValue }
}

