
//Searches for an element containing the unique google analytics code for this web site. If found
//a call to google analytics is performed
var gaCodeElement = document.getElementById("gacode");
if(gaCodeElement && gaCodeElement.value!="")
{
	var pageTracker = _gat._getTracker(gaCodeElement.value);
	pageTracker._trackPageview();
}
