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

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

}

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

	// and the opening of the link
	if(sType == "self"){
		
		document.location = sUrl;
		
	}else{
		var i = Math.round(100*Math.random())
		var windowName = "mtr" + i
		window.open(sUrl,windowName,'width=' + nWidth + ',height=' + nHeight + '');
	}
	
	simpleTrack(sID);
}

	

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