var popup = new PopupWindow($('videopopup'));

function openAndPlay(url, width, height, type) {
  _setMediaHtml(url, width, height, type);
  popup.open();
}

function openMediaPopup(event) {
  popup.open(event);
}

function playMedia(url, width, height, type) {
  _setMediaHtml(url, width, height, type);
}

function stopMedia(mediaId) {
  try {
    $(mediaId).Stop();
  } catch (ex) {

  }

  delete popup;
}

function _setMediaHtml(url, width, height, type) {
  if (type == 'video/quicktime') {
    $('embeddedVideo').innerHTML = '<object id="video" width="' + width + '" height="' + height + '" classid="clsid:02BF25D5-8C17-4B23-BC80-D3488ABDDC6B" codebase="http://www.apple.com/qtactivex/qtplugin.cab">'
    + '<param name="src" value="' + url + '">'
    + '<param name="autoplay" value="true">'
    + '<param name="controller" value="true">'
    + '<param name="loop" value="false">'
    + '<param name="enablejavascript" value="true">'
    + '<embed src="' + url + '" width="' + width + '" height="' + height + '" autostart="true" pluginspage="http://www.apple.com/quicktime/download/" type="video/quicktime" loop="false" controller="true" enablejavascript="true"></embed></object>';
  } else if (type == 'audio/x-pn-realaudio-plugin') {
    $('embeddedVideo').innerHTML = '<object id="video" width="' + width + '" height="' + height + '" classid="clsid:CFCDAA03-8BE4-11cf-B84B-0020AFBBCCFA">'
    + '<param name="src" value="' + url + '">'
    + '<param name="autostart" value="true">'
    + '<param name="controls" value="All">'
    + '<param name="loop" value="false">'
    + '<param name="type" value="audio/x-pn-realaudio-plugin">'
    + '<embed src="' + url + '" width="' + width + '" height="' + height + '" autostart="true" type="audio/x-pn-realaudio-plugin"></embed></object>';
  } else {
    $('embeddedVideo').innerHTML = '<object id="video" width="' + width + '" height="' + height + '" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95">'
    + '<param name="src" value="' + url + '">'
    + '<param name="autoplay" value="true">'
    + '<param name="ShowControls" value="true">'
    + '<param name="loop" value="false">'
    + '<embed src="' + url + '" width="' + width + '" height="' + height + '" autostart="true" ShowControls="1"></embed></object>';
  }
}


