
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
	// - - Beschreibung:
	// - - Lösch per Übergabe den Inhalt eines Inputfeldes 
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
	// - - Aufruf: clearText(thefield);
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
	// - - Parameter: thefield = Name des Inputfeldes
	// - - - - - - - - - - - - - - - - - - - - - - - - - - - - - 
	
	function clearText(thefield)
	{
		if (thefield.defaultValue == thefield.value)
		thefield.value = ""
	} 
