function removeContent(theText) {
	if (theText.defaultValue == theText.value) theText.value = '';
	else if (theText.value == '') theText.value = theText.defaultValue;
}