// eMail-Adresse-Verschluesselung 
function UnCryptMailto(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 linkTo_UnCryptMailto(s, shift){
location.href=UnCryptMailto(s, shift);
}

// Ä Ö Ü ä ö ü ß
// Fremde Frames sprengen 
if (self != top) { 
parent.location.href=self.location.href; 
}

// Frameblaster 1.0 - Copyright 1998 by Mamos
if (window != window.top)
  top.location.href = location.href;
