function playMovie(typ,prm) { 
	thisMovie("plyr").sendEvent(typ,prm); 
};
function thisMovie(theplyr) {
    if(navigator.appName.indexOf("Microsoft") != -1) {
		return window[theplyr];
	} else {
		return document[theplyr];
	}
};
