/*
* $Id: player_select.js,v 1.1 2008/09/25 16:06:21 girus Exp $
*/
var mp = null;
function openRMI(broadcastId, offset) {
  var mp = GetCookie('mp');
  if(mp != null && mp != "undefined") {
    var w = 790;
    var h = 590;
    var l = (screen.width - w)/2;
    var t = (screen.height - h)/2;
    var features = 'height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=no';
    var location = "../archive_managenergy/index.jsp?mp=" + mp + "&BroadcastId=" + broadcastId + "&offset=" + offset;
    var RMI = window.open(location, 'RMI_window', features);
    return false;
  }
  else {
    setPlayer(broadcastId, offset);
  }
}



  
 function setPlayer(broadcastId, offset) {
  if(!CookiesEnabled()) {
    alert('Your cookies seem to be disabled. Setting preferences will not work until you enable cookies in your browser.');
    return false;
  }
  var url = "select_player.html?bc=" + broadcastId + "&offset=" + offset;
  var w = 520;
  var h = 170;
  var l = (screen.width - w)/2;
  var t = (screen.height - h)/2;
  var features = 'height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=no';      
  var PS = window.open(url, 'PS', features);
  return false;
}

function setPlayerLIVE(broadcastId) {
  if(!CookiesEnabled()) {
    alert('Your cookies seem to be disabled. Setting preferences will not work until you enable cookies in your browser.');
    return false;
  }
  var url = "select_player_live.html?bc=" + broadcastId;
  var w = 520
  var h = 170;
  var l = (screen.width - w)/2;
  var t = (screen.height - h)/2;
  var features = 'height='+h+',width='+w+',top='+t+',left='+l+',scrollbars=no';      
  var PS = window.open(url, 'PS', features);
  return false;
}