// java-script file


function newPage(){
	  var Kat = document.suche.KatSelection
	  var Plz = document.suche.PlzSelection
	  var KatNo = Kat.selectedIndex;
	  var PlzNo = Plz.selectedIndex;

    if (KatNo < 0 && PlzNo < 0){
  	alert("Wählen Sie Bereich und Postleitzahl für die Suche aus.");
  }
  else {
  	zielURL=  Kat.options[KatNo].value + "-" + Plz.options[PlzNo].value + ".html";
	location.href = zielURL;
  }
}
 
 
 //Mailfunktion
function ePost(n,d){
    var a, n, d, m, eLink;	
	a=n+"&#64;"+d;
	m="mailto:";
	
	var eLink = "<a href=\""+m+a+"\" " +
           "class=\" email \">"+a+"</a>";
    return eLink;
}

