﻿/*-------------------------------*/
/* FLASH PLAYER RELATED ---------*/ 
/*-------------------------------*/

function playItem(idx) { 
    try{
        thisMovie("mediaplayer").sendEvent('ITEM',idx); 
    }
    catch(Error){}
    try{
        thisMovie("pb_player").playFlexItem(idx); 
    }
    catch(Error){}
}
function sendEvent(movieName,typ,prm) { thisMovie(movieName).sendEvent(typ,prm); };
function thisMovie(movieName) { return document.getElementsByName(movieName)[0]; }