    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;
    }

    function linkTo_UnCryptMailto( s )
    {
        location.href=UnCryptMailto( s );
    }
   
document.write('<p><strong>Umsetzung :</strong> </p><p>wwg.l&ouml;wenstark im Internet GmbH <br>'
			  + 'Bunsenstr. 11a <br>'  
			  + 'D-38126 Braunschweig </p>'
			  + ''			  
			  + '<p>Tel.: +49 (0) 531 -2065729</p><p>'	
			  + 'E-Mail: <a href="javascript:linkTo_UnCryptMailto(\'nbjmup;lpoubluAmpfxfotubsl\/ef\');">kontakt(at)loewenstark[.]de</a><br>'				  
			  + 'Web: <a href="http://www.loewenstark.de">http://www.loewenstark.de </a></p>'		  
			  );



  
   
