function simpleTrack (sID) {
	
	// disney tracking code
	_hbflash(sID,'n','n','n');
	

}

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

	simpleTrack(sID);
	
	setTimeout("openWindow('" + sURL + "','" + nWidth + "','" + nHeight + "','" + sType + "')", 1000);
		
}

function openWindow(sUrl, nWidth, nHeight, sType){
	
	// and the opening of the link
	if(sType == "self"){
		
		document.location = sUrl;
		
	}else{
	
		window.open(sUrl,"project_window",'width=' + nWidth + ',height=' + nHeight + '');
	}
	
}

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