function simpleTrack (sID) {
	
	// google tracking code
	pageTracker._trackPageview(sID);
	
	//pageTracker._trackPageview(sID);
//	alert(sID);
}

function trackAndGo(sID,URL){
	//alert(sID);
	pageTracker._trackPageview(sID);
	window.location = URL;
}


function doPopup(sUrl, nWidth, nHeight, sWindowname){
	window.open(sUrl, sWindowname,'width=' + nWidth + ',height=' + nHeight + '');
}


function mailtoAndTrack (sID, sBody, sSubject) {
	
	// and the opening of the mail window
	document.location = "mailto:?body=" + sBody + "&subject=" + sSubject;
	
	simpleTrack(sID);
	
}
