﻿function ShowLoading() {
    document.getElementById("related").style.opacity=".25";
    document.getElementById("related").style.filter="alpha(opacity=25)";
    document.getElementById("Loading").style.display = "block";
}

function subscribe() {
    if (document.getElementById("ddlSubscribe").value != "")
        window.navigate(document.getElementById("ddlSubscribe").value);
}

function stopPlay() {
    document.getElementById('playlist').sendEvent('stop');
    return true;
}

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];
  }
}
