function simpleTrack (sID) {
	
	// disney tracking code
	_hbflash(sID,'n','n','n');
	
	setTimeout("urchinTracker('" + sID + "')", 1000);

}


function popUpAndTrack (sID, sUrl, nWidth, nHeight, sType) {

	// and the opening of the link
	if(sType == "self"){
		document.location = sUrl;
	}else{
		window.open(sUrl,'wallpaper','width=' + nWidth + ',height=' + nHeight + ',resizable=yes,scrollbars=yes');
	}
	
	simpleTrack(sID);
}

	

function mailtoAndTrack (sID, sBody, sSubject) {
	
	// and the opening of the mail window
	document.location = "mailto:?body=" + sBody + "&subject=" + sSubject;
	
	simpleTrack(sID);
	
}

