function checkInput() {
		if (document.getElementById("searchInput").value.length < 4){
			alert("Der Suchbegriff muss mehr als 3 Zeichen lang sein.");
			return false;
		} else {
			document.getElementById("frmSucheID").action = "/deutsch/_global/Suche.jsp";
		}
		return true;
	}
	
	function popUpOpen() {
		var betrag = document.getElementById("spendenbetrag").value;
		var url = "http://preview.informance.at/deutsch/_global/Spenden/Spenden.html?txtBetrag="+betrag;
		window.open(url, "Spendenformular", "width=500,height=800,menubar=yes,scrollbars=no,status=no");	
	}
	
	function popUpOpenEng() {
		var betrag = document.getElementById("spendenbetrag").value;
		var url = "http://preview.informance.at/english/_global/Spenden/Spenden.html?txtBetrag="+betrag;
		window.open(url, "Spendenformular", "width=500,height=800,menubar=yes,scrollbars=no,status=no");	
	}