
    if (self != top) { 
        top.location = self.location;
    }

	function unCryptMail() {
        var address = document.getElementsByTagName('address')[0].getElementsByTagName('span')[0];
		var t1 = 'hoellerer';
		var t2 = 'b';
		var t3 = 'de';
		var t4 = 'mail';
		
		address.innerHTML = 'E-Mail: ' + t4 + '@' + t2 + t1 + '.' + t3;
        address.style.fontStyle = 'normal';
	}
