function callExternalInterface(label) {
	getMovieName("myFlash").callFunction(label); 
}
function getMovieName(movieName) {
	if(navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName]
	}else{
		return document[movieName]
	}
}