function clearField(thisField, originalText) {
	if (thisField.value == originalText)
		thisField.value='';
	
	return;
}
