		/*<![CDATA[*/
			<!--
			  // SPAM-Protection taken from TYPO3 - get.content.right
	                  // TYPO3 is a free open source Content Management Framework
	                  // created by Kasper Skaarhoej and licensed under GNU/GPL.
	                  // Information and contribution at http://www.typo3.com
	                  //
			  // JS function for uncrypting spam-protected emails:
				function UnCryptMailto(s) {	//
					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-(1)); 
						}
					return r;
					}
			  //
			  // JS function for uncrypting spam-protected emails:
				function linkTo_UnCryptMailto(s)	{	//
					location.href=UnCryptMailto(s);
					}
			// -->
		/*]]>*/

