<!-- Hide the script

//Pierre GANDER
//(c) by CHGEOL in 2005
//Verschleiert E-Mail-Adresse

function istText(rawVar) {
	var axTemp = new String(rawVar);
	return ((axTemp != "") && (axTemp != "NaN") && (axTemp != "null") && (axTemp != "undefined"))
}

function verschleiern(rohstring) {
	var crypt = "";
	var roh = new String(rohstring);
	
	if(!(istText(rohstring))) {
		return rohstring;
	    }
		
	for(var i=0;i<roh.length;i++) {
		crypt = roh.charAt(i) + crypt;
	   }
	crypt = "¢" + crypt;
	crypt = crypt.split('@');
	crypt = crypt.join('(at)');

	return crypt; 
}

function entschleiern(cryptstring) {
	var roh = "";
	var crypt = new String(cryptstring);
	
	if(!(istText(cryptstring))) {
		return cryptstring;
	    }
		
	crypt = crypt.split(')ta(');
	crypt = crypt.join('@');
	for(var i=0;i<crypt.length;i++) {
		roh = crypt.charAt(i) + roh;
	   }
	return roh
}

function email_entschleiern(cryptstring) {
	location.href=entschleiern(cryptstring);
}

//-- end of hiding -->


