var defaultText = "Suchbegriff eingeben...";
var box = null;

function clearBox() {
	if (box.value == defaultText) {
		box.value = '';
	}
}

function loadFocus() {
	if (box.value == "") {
		box.value = defaultText;
	}
}

function setDefaultText() {
	box = document.getElementById("searchfield");
	if (box.Value == '') {
		box.value = defaultText;
	}
}