<!-- Hide script from old browsers

//document.suchform[0].focus();
//document.suchform[0].select();

function setfocus() {
	document.suchform[0].focus();
	document.suchform[0].select();
	document.suchform[0].value ="";
}

function setblur() {
	if(document.suchform[0].value == "") {
		document.suchform[0].value = "Ihr Suchtext";
	}
}

function formpruefen() {
	var suchtext = document.forms[0].elements[0];

	if (suchtext.value == 'Ihr Suchtext') {
		alert('Bitte geben Sie einen Suchbegriff ein.');
		suchtext.select();
		suchtext.focus();
		return false;
	}
	if (suchtext.value == '') {
		alert('Bitte geben Sie einen Suchbegriff ein.');
		suchtext.select();
		suchtext.focus();
		return false;
	}
}

// End hiding script from old browsers -->