function callExternalInterface() {
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	if(isIE == false){
    getFlashMovie("mainShell").returnLocationData(); 
	}
}


function isIETest() {
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	return isIE;
}

function getFlashMovie(movieName) {	
	var isIE = navigator.appName.indexOf("Microsoft") != -1;
	return (isIE) ? window[movieName] : document[movieName];
}