﻿// JScript File
function sendEvent(swf,typ,prm) { 
  thisMovie(swf).sendEvent(typ,prm); 
};

function getUpdate(typ,pr1,pr2,swf) {};

function thisMovie(swf) {
  if(navigator.appName.indexOf("Microsoft") != -1) {
    return window[swf];
  } else {
    return document[swf];
  }
};

function PlayItem(id)
{
    sendEvent('jstest','playitem',id)
}

function ShowAdd()
{
    document.getElementById('divImageUp').style.display ='block';
}

function CloseImgUp()
{
    document.getElementById('divImageUp').style.display ='none';
}

