// make sure there is a default function so when no Google Analytics is used, the browser wont trigger an error
var trackPageView = function (path) {
  try { 
    pageTracker._trackPageview(path);
  } catch(e) { // no new tracker available
		try {
    	urchinTracker(path);
		} catch(e) { 
		// no legacy trackers available 
		}
  }
}
