// JavaScript Document

// "SEITE WEITEREMPFEHLEN";
function empfehlung(){
var empfehlung = "/weiter-empfehlung.php?emp="+window.location.pathname; 
window.location.href = empfehlung;
}


//suchfunktion mit elgoog

function sucheOP() {
var suchstring = document.forms[0].q.value;
var antwort;

if(suchstring != ""){
document.forms[0].q.value=document.forms[0].q.value + " site:www.oeko-planet.de";
antwort = true;
}

if(suchstring == "Bitte Suchbegriff eingeben"){
document.forms[0].q.value="";
antwort = false;
}


if(document.forms[0].q.value == "") {
document.forms[0].q.value = "Bitte Suchbegriff eingeben";
antwort = false;
}

return antwort;

}

function loeschen(){
if(document.forms[0].q.value == "Bitte Suchbegriff eingeben") document.forms[0].q.value = "";
}

//aus Frames befreien
if(top.frames.length>0)
{
	top.location.href=self.location;
}

//Browserfenster Lieferzeit
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}