function hbxMediaPlay(hbxFileName, hbxCurrentPos, hbxEndPos, hbxFlashVersion) { 
_hbSet('m.f',hbxFileName); 
_hbSet('m.cp',hbxCurrentPos*1000); 
_hbSet('m.ep',hbxEndPos*1000); 
_hbSet('m.s','play'); 
_hbSet('m.cl','Flash Player'); 
_hbSet('m.cv',hbxFlashVersion); 
_hbSet('m.tt','e'); 
_hbSend(); 
}
 
function hbxMediaPause(hbxFileName, hbxCurrentPos, hbxEndPos, hbxFlashVersion) { 
_hbSet('m.f',hbxFileName); 
_hbSet('m.cp',hbxCurrentPos*1000); 
_hbSet('m.ep',hbxEndPos*1000); 
_hbSet('m.s','pause'); 
_hbSet('m.cl','Flash Player'); 
_hbSet('m.cv',hbxFlashVersion); 
_hbSet('m.tt','e'); 
_hbSend(); 
}
 
function hbxMediaPlayProgress(hbxFileName, hbxCurrentPos, hbxEndPos, hbxFlashVersion) {
_hbSet('m.f',hbxFileName);
_hbSet('m.cp',hbxCurrentPos*1000);
_hbSet('m.ep',hbxEndPos*1000);
_hbSet('m.s','playp');
_hbSet('m.cl','Flash Player');
_hbSet('m.cv',hbxFlashVersion);
_hbSet('m.tt','e');
_hbSend();
}

function hbxMediaReady(hbxFileName, hbxCurrentPos, hbxEndPos, hbxFlashVersion) {
_hbSet('m.f',hbxFileName);
_hbSet('m.cp',hbxCurrentPos*1000);
_hbSet('m.ep',hbxEndPos*1000);
_hbSet('m.s','ready');
_hbSet('m.cl','Flash Player');
_hbSet('m.cv',hbxFlashVersion);
_hbSet('m.tt','e');
_hbSend();
}

function hbxMediaComplete(hbxFileName, hbxCurrentPos, hbxEndPos, hbxFlashVersion) {
_hbSet('m.f',hbxFileName);
_hbSet('m.cp',hbxCurrentPos*1000);
_hbSet('m.ep',hbxEndPos*1000);
_hbSet('m.s','stop');
_hbSet('m.cl','Flash Player');
_hbSet('m.cv',hbxFlashVersion);
_hbSet('m.tt','e');
_hbSend();
}