function GoogleAnalytics()
{
	this.Width;
	this.Height;
	this.Code;

	this.show = function()
	{
		///UserCodeRegionStart:[show] (do not remove this comment.)

		var baseScript = 'google-analytics.com/ga.js';
		var gaJsHost = (("https:" == document.location.protocol) ? "https://ssl." : "http://www.");
		var _this = this;
		var buffer = gaJsHost + baseScript;
		gx.http.loadScript(buffer, function()
		{
			try
			{
				var pageTracker = _gat._getTracker(_this.Code);
				pageTracker._initData();
				pageTracker._trackPageview();					
			}
			catch(err)
			{
				// do nothing	
			}
		}
		);	
		///UserCodeRegionEnd: (do not remove this comment.)
	}
	///UserCodeRegionStart:[User Functions] (do not remove this comment.)
	
	///UserCodeRegionEnd: (do not remove this comment.):
}
