<!--
  var decodedlink,helperChar;

	function encodelink(decodedlink)
	{
	  output='';
    for(i=0;i < decodedlink.length;i++)
		{
  	  helperChar=decodedlink.charCodeAt(i);
      if(helperChar >= 8364)
			{
        helperChar = 128;
			}
        output += String.fromCharCode(helperChar - 3);
		}
    
    return output;
  }
//-->
