// flvplayer functions

// these functions are caught by the JavascriptView object of the player.
function sendEvent(typ,prm) { thisMovie("mpl").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];
	}
};

// do when loaded

$().ready(function() {
  $('#dialog').jqm({zIndex: 500, overlay:75});
  
    $(".jqmClose").click(function () { 
      //sendEvent('stop'); 
    });  
  
});