function fenster(seite, weite, hoehe,name){ 
var mon, toppos, leftpos; 

toppos = (screen.height - hoehe)/2; 
leftpos = (screen.width - weite)/2; 
features = "scrollbars=1,location=0,toolbar=0,menubar=0,resizable=1,status=0"; 
mon = window.open(seite,"name","width="+weite+",height="+hoehe+",top="+toppos+",left="+leftpos+","+features); 
//mon.document.title=name;
mon.focus();
} 

function fenster1(seite, weite, hoehe, name){ 
var mon, toppos, leftpos; 

toppos = (screen.height - hoehe)/2; 
leftpos = (screen.width - weite)/2; 
features = "scrollbars=1,location=0,toolbar=0,menubar=0,resizable=1,status=0"; 
mon = window.open(seite,"name","width="+weite+",height="+hoehe+",top="+toppos+",left="+leftpos+","+features); 
mon.document.write('<head><title>'+name+'</title></head><body><table width="100%" height="100%" border="0" cellspacing="0" cellpadding="0"><tr><td align="center" valign="middle"><img src='+seite+' width="'+eval(weite-40)+'"></td></tr></table></body>');
//mon.document.title=name;
mon.focus();
}

function MM_displayStatusMsg(msgStr)
{ 
  status=msgStr;
  document.MM_returnValue = true;
}

function linkme(link){
  window.location.href = link;
}
function back(refer){
  if(typeof(document.referrer)!="undefined" && document.referrer.indexOf('http://www.oaseverlag.de/')>-1 ){
      window.location.href = document.referrer;
  }else{
      window.location.href=refer;
  }
}

function start_fulltext_search(PHPSESSID){
	url_string="http://www.mediterraner-pflanzenmarkt.de/Online-Shop/Suche/";
	suchbegriff_string=document.suche.suchbegriff.value;
	if(suchbegriff_string!=""){
		while(suchbegriff_string.search(/&/)!=-1){
     	 		suchbegriff_string=suchbegriff_string.replace(/&/,"%7E");
   		}
		suchbegriff_string=escape(suchbegriff_string);
		url_string+=suchbegriff_string+"/";
		if(typeof(PHPSESSID)!="undefined"){
			url_string+=PHPSESSID+"/";
		}
		window.location.href=url_string;
	}
	else alert("Sie haben noch keinen Suchbegriff eingegeben!");	
}

function start_fulltext_search1(PHPSESSID){
	url_string="http://www.mediterraner-pflanzenmarkt.de/Online-Shop/Suche/";
	suchbegriff_string=document.suche.suchbegriff.value;
	if(suchbegriff_string!=""){
		while(suchbegriff_string.search(/&/)!=-1){
     	 		suchbegriff_string=suchbegriff_string.replace(/&/,"%7E");
   		}
		suchbegriff_string=escape(suchbegriff_string);
		url_string+=suchbegriff_string+"/";
		if(typeof(PHPSESSID)!="undefined"){
			url_string+=PHPSESSID+"/";
		}
		document.getElementById("suche").action=url_string;
	}
	else{
		alert("Sie haben noch keinen Suchbegriff eingegeben!");
		return;
	}
}