// these functions are caught by the JavascriptView object of the player.
function sendEvent(typ,prm) { thisMovie("single").sendEvent(typ,prm); };

// This is a javascript handler for the player and is always needed.
function thisMovie(movieName) {
    if(navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName];
	} else {
		return document[movieName];
	}
};
