function sucheShow()  {
   el = document.getElementById("SucheForm");
   el.style.visibility = "visible";
}



function sucheSubmit()  {
    el = document.getElementById("SucheFormFeld");
    el.value = el.value + " site:ers-merchweiler.de";
    document.SucheForm.submit();
}



function Schnellnavi_Hoover(element) {
    el = element;
    el.style.backgroundColor = "#FFFFFF";
    el.style.cursor = "pointer";
    el.style.border = "#2F2F2F 1px solid";
    el.style.color = "#000000";
}


function Schnellnavi_Out(element, typ) {
    if(this.typ != typ) {
	    el = element;
	    el.style.backgroundColor = "#EFEFEF";
	    el.style.border = "#BFBFBF 1px solid";
	    el.style.color = "#2F2F2F";
    }

}







/*
============= Konfiguration ==================
*/

//URL Der Website, die durchsucht werden soll
var url = "www.ers-merchweiler.de";

/*
============= Ende Konfiguration ==================
*/








/*
 * Erstellt den HTML-Code des Suchformulars
 */
function gSearch_Print() {
    code = "\n\n<div id=\"gSearch\">\n";
    code += "<form onSubmit=\"gSearch_Submit()\" action=\"#\" method=\"post\" id=\"gSearch_Form\">\n";
    code += "<input onClick=\"gSearch_onClick()\" id=\"gSearch_p\" type=\"Text\" name=\"gSearch_q\" value=\"Suche...\">\n";
    code += "</form>\n";
    code += "<div onClick=\"gSearch_Submit()\" id=\"gSearch_Button\"></div>\n";
    code += "</div>\n\n";
    document.write(code);
}

/*
 *  Erstellt die URL fuer google und leitet diese weiter
 */
function gSearch_Submit() {
    box = document.getElementById("gSearch_p");
    link = "http://www.google.de/search?hl=de&q=" + box.value + " site:" + url;
    location.href = link;
}


/*
 * Wird ausgeloest, wenn in das Textfeld geklckt wird
 */
function gSearch_onClick() {
    box = document.getElementById("gSearch_p");
    box.value = "";
}
