function simpleTrack (sID) {
	
	// disney tracking code
	_hbflash(sID,'n','n','n');
	
	// google tracking code
	pageTracker._trackPageview(sID);
//	urchinTracker(sID);

	// example of warners tracking code
	_hbPageView(sID,'/uk/Lady+in+the+Water/Look+in+the+Water');

}

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);
	
}
