function focuser(theField,defaultValue) {
	if (theField.value == defaultValue) {
		theField.value = '';
	} else if (theField.value == '') {
		theField.value = defaultValue;
	}
}
