function noSpam(aa,bb,cc) {
  aabbcc = "mailto:" + aa + "@" + bb + "?subject=" + cc;
  window.location = aabbcc;
}

function UnCrypt(s, shift) {
	var n=0;
	var r="";
	for(var i=0;i<s.length;i++) { 
		n=s.charCodeAt(i); 
		if (n>=8364) {n = 128;}
		r += String.fromCharCode(n-(shift)); 
	}
	return r;
}
function rl_UnCrypt(s, shift)	{
	location.href=UnCrypt(s, shift);
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}
function zuruecksetzen() {
      	document.forms['kontaktmail'].AntiSpamCode.value = "Anti-Spam-Code";
      	document.forms['kontaktmail'].Name.value = "Name";
      	document.forms['kontaktmail'].Firma.value = "Firma";
      	document.forms['kontaktmail'].Telefon.value = "Telefon";
      	document.forms['kontaktmail'].Email.value = "E-Mail";
      	document.forms['kontaktmail'].Nachricht.value = "Nachricht";
}