﻿var video_file = "mms://95.168.170.50:8181/habe5tv1";

function check_firefox_plugin(plugin_alia){
  var plugin_collection = navigator.plugins.length;
  var browser_check = navigator.userAgent.indexOf('Firefox');
  var plugin_found = false;
    if (browser_check != -1){
      for (i = 0; i < plugin_collection; i ++){
        var plugin = navigator.plugins[i];
          if (plugin.name == plugin_alia){
            plugin_found = true;
            return true;
            break;
          }
      }
    } else {
      return false;
    }
}

function check_firefox(){
  var browser_check = navigator.userAgent.indexOf('Firefox');
    if (browser_check != -1){
      return true;
    } else {
      return false;
    }
}

function media_player (video_file, width, height, start) {
  
  if (check_firefox()){
	  
    if (check_firefox_plugin ('Microsoft® Windows Media Player Firefox Plugin')){

  document.write('<object id=\"MSIE\" classid=\"clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6\" type=\"video/x-ms-wmv\" width=\"' + width + '\" height=\"' + height + '\">');
  document.write('<param name=\"URL\" value=\"' + video_file + '\">');
  document.write('<param name=\"AutoStart\" value=\"' + start + '\">');
  document.write('<param name=\"Volume\" value=\"100\">');
  document.write('<param name=\"ShowTracker\" value=\"false\">');
  document.write('<param name=\"ShowControls\" value=\"true\">');
  document.write('<param name=\"ShowGotoBar\" value=\"false\">');
  document.write('<param name=\"ShowDisplay\" value=\"false\">');
  document.write('<param name=\"ShowStatusBar\" value=\"false\">');
  document.write('<param name=\"ShowPositionControls\" value=\"false\">');
  document.write('<param name=\"AutoSize\" value=\"false">');
  document.write('<param name=\"StretchToFit\" value=\"true\">');
  document.write('</object>');

  document.write('<object type=\"application/x-ms-wmp\" id=\"FireFox\" width=\"' + width + '\" height=\"' + height + '\">');
  document.write('<param name="\URL\" value=\"' + video_file + '\">');
  document.write('<param name=\"AutoStart\" value=\"' + start + '\">');
  document.write('<param name=\"Volume\" value=\"100\">');
  document.write('<param name=\"ShowTracker\" value=\"false\">');
  document.write('<param name=\"ShowControls\" value=\"true\">');
  document.write('<param name=\"ShowGotoBar\" value=\"false\">');
  document.write('<param name=\"ShowDisplay\" value=\"false\">');
  document.write('<param name=\"ShowStatusBar\" value=\"false\">');
  document.write('<param name=\"ShowPositionControls\" value=\"false\">');
  document.write('<param name=\"AutoSize\" value=\"false">');
  document.write('<param name=\"StretchToFit\" value=\"true\">');
  document.write('<a></a>');
  document.write('</object>');

	} else {
      document.write('<div class=\"ff_error-box\" align=\"left\">İnternet tarayıcınızın Mozilla Firefox olduğu algılandı.<br><br>Yayınımızı izleyebilmeniz için <a href=\"http://port25.technet.com/videos/downloads/wmpfirefoxplugin.exe\">buraya tıklayarak</a> eklentiyi indirin ve kurun.<br><br> Kurduktan sonra tarayıcınızı yeniden başlatın.</div>');
	}
	  
  } else {

  document.write('<object id=\"MSIE\" classid=\"clsid:6BF52A52-394A-11D3-B153-00C04F79FAA6\" type=\"video/x-ms-wmv\" width=\"' + width + '\" height=\"' + height + '\">');
  document.write('<param name=\"URL\" value=\"' + video_file + '\">');
  document.write('<param name=\"AutoStart\" value=\"' + start + '\">');
  document.write('<param name=\"Volume\" value=\"100\">');
  document.write('<param name=\"ShowTracker\" value=\"false\">');
  document.write('<param name=\"ShowControls\" value=\"true\">');
  document.write('<param name=\"ShowGotoBar\" value=\"false\">');
  document.write('<param name=\"ShowDisplay\" value=\"false\">');
  document.write('<param name=\"ShowStatusBar\" value=\"false\">');
  document.write('<param name=\"ShowPositionControls\" value=\"false\">');
  document.write('<param name=\"AutoSize\" value=\"false">');
  document.write('<param name=\"StretchToFit\" value=\"true\">');
  document.write('</object>');

  document.write('<object type=\"application/x-ms-wmp\" id=\"FireFox\" width=\"' + width + '\" height=\"' + height + '\">');
  document.write('<param name="\URL\" value=\"' + video_file + '\">');
  document.write('<param name=\"AutoStart\" value=\"' + start + '\">');
  document.write('<param name=\"Volume\" value=\"100\">');
  document.write('<param name=\"ShowTracker\" value=\"false\">');
  document.write('<param name=\"ShowControls\" value=\"true\">');
  document.write('<param name=\"ShowGotoBar\" value=\"false\">');
  document.write('<param name=\"ShowDisplay\" value=\"false\">');
  document.write('<param name=\"ShowStatusBar\" value=\"false\">');
  document.write('<param name=\"ShowPositionControls\" value=\"false\">');
  document.write('<param name=\"AutoSize\" value=\"false">');
  document.write('<param name=\"StretchToFit\" value=\"true\">');
  document.write('<a></a>');
  document.write('</object>');

  }
}


