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