<!--
// Rollover ==============================================================================
function rolloversub(obj, col) {
	obj.style.backgroundColor = col;
}
function rolloutsub(obj, col) {
	obj.style.backgroundColor = col;
}
// Popup oeffnen =========================================================================
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

// Suchfeld beim Focus leeren ============================================================
function clearSuchFeld(obj) {
	if(obj.value == "Ihr Suchbegriff") {
		obj.value = "";
	}
}

function checkSuche() {
	if(document.getElementById("suchString").value == "Ihr Suchbegriff" || document.getElementById("suchString").value == "") {
		return false;
	} else {
		return true;
	}
}
//-->
