function trackGAPageView(path) {
//	try {
		if(typeof(pageTrackerZ) != 'undefined')
			pageTrackerZ._trackPageview(path);
		else if(typeof(urchinTracker) != 'undefined')
			urchinTracker(path);
//	} catch(err) { }
}

function trackGAFormSubmit(actions,labels,formCount) {
//  try {
        if(typeof(pageTrackerZ) != 'undefined') {
            pageTrackerZ._trackEvent('Form Submission',actions,labels,formCount);
        }
//  } catch(err) { }
}

