
function hover(id, color)
{
	var oObj = document.getElementById(id);
	if (oObj) {
		oObj.style.background = color;
	}
}


function checkS()
{
	if (document.form.s) {
		if (document.form.s.value.length == 1) {
			alert("Geben Sie im Suchfeld mindestens 2 Zeichen an.");
			return false;
		}
	}
	return true;
}




