function initSearchbox() {
        						document.getElementById("searchform").setAttribute("action", "index.php?id=3428");
        					  document.getElementById("suchbutton").src = "fileadmin/templates/images/layout/suche.gif";

        					 if(document.getElementById("suchbox").style.visibility == "visible") {
                    document.getElementById("suchbox").style.visibility = "hidden";
                    document.getElementById("suchboxlink").style.backgroundColor = "ffffff";
                    document.getElementById("suchboxlink").style.borderRight = "1px solid #ffffff";
                    document.getElementById("suchboxlink").style.borderLeft = "1px solid #ffffff";
                    document.getElementById("suchboxlinkATag").style.color = "6898c9";
                  }
                  else {
                    document.getElementById("suchbox").style.visibility = "visible";
                    document.getElementById("suchboxlink").style.backgroundColor = "f2f6fa";
                    document.getElementById("suchboxlink").style.borderRight = "1px solid #e6eef6";
                    document.getElementById("suchboxlink").style.borderLeft = "1px solid #e6eef6";
                    document.getElementById("suchboxlinkATag").style.color = "0054a7";
                  }
        	       }

					function checkSearchInput() {
						if(document.getElementById("sword").value == "")
							alert("Bitte geben Sie einen Suchbegriff ein.");
						else
							document.forms["searchform"].submit();
					}
