// JavaScript Document
//useful resources for the jw mediaplayer
function thisMovie(movieName) {
	if(navigator.appName.indexOf("Microsoft") != -1) {
		return window[movieName];
	} else {
		return document[movieName];
	}
};


// this function is caught by the JavascriptView object of the player.
function sendEvent(typ,prm,playerID) { thisMovie(playerID).sendEvent(typ,prm); };
