/*
Analytics-Blocker
Siehe http://www.teris.de/workshop-nr3.php für weitere Informationen.
Dieser Hinweis darf bei Verwendung nicht entfernt werden.
*/

function analy(googleid)
	{
	var a;
	a = document.cookie;	
	if (a.search('noanalytics=1') == -1)
		{
			
			document.write('<script type="text/javascript">');

			  document.write('var _gaq = _gaq || [];');
			  document.write("_gaq.push(['_setAccount', '" + googleid + "']);");
			  document.write("_gaq.push(['_trackPageview']);");

			  document.write('(function() {');
				document.write("var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;");
				document.write("ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';");
				document.write("var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);");
			  document.write('})();');

			document.write('</script>');
						
		}
	}
