function hbxMediaPlay(hbxFileName, hbxCurrentPos, hbxEndPos, hbxFlashVersion) {
_hbSet('m.f',hbxFileName);
_hbSet('m.cp',hbxCurrentPos);
_hbSet('m.ep',hbxEndPos);
_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);
_hbSet('m.ep',hbxEndPos);
_hbSet('m.s','pause');
_hbSet('m.cl','Flash Player');
_hbSet('m.cv',hbxFlashVersion);
_hbSet('m.tt','e');
_hbSend();
}

function hbxMediaStop(hbxFileName, hbxCurrentPos, hbxEndPos, hbxFlashVersion) {
_hbSet('m.f',hbxFileName);
_hbSet('m.cp',hbxCurrentPos);
_hbSet('m.ep',hbxEndPos);
_hbSet('m.s','stop');
_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);
_hbSet('m.ep',hbxEndPos);
_hbSet('m.s','playp');
_hbSet('m.cl','Flash Player');
_hbSet('m.cv',hbxFlashVersion);
_hbSet('m.tt','e');
_hbSend();
}
