function getBrowser(){
		var browserName=navigator.appName; 
		return(browserName);
	}


function track(trackString)
	{
	//alert(trackString);
	_hbflash(trackString,_mlc,'n','n');
	
	}
	
function simpleTrack (sID) {
	
	// disney tracking code
	_hbflash(sID,_mlc,'n','n');

}


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

	// and the opening of the link
	if(sType == "self"){
		document.location = sUrl;
	}else if(sType == "blank"){
		window.open(sUrl,'popup','width=1024,height=768,resizable=1,scrollbars=yes');
	}else if(sType == "pop"){
		window.open(sUrl,'popup','width=' + nWidth + ',height=' + nHeight + ',resizable=1,scrollbars=auto');
	}
	
	setTimeout("simpleTrack('" + sID + "')", 1000);
	
}


