function clearText( thefield, ignore ){
	if ( ignore != '' ) {
		if ( thefield.value == ignore )
 			thefield.value = "";
	}
	else {
		if (thefield.defaultValue == thefield.value)
 			thefield.value = "";
}	}