function load(episode) {
var load = window.open('rf/player.php?f='+episode,'VideoPlayer','scrollbars=no,menubar=no,height=610,width=780,resizable=no,toolbar=no,location=no,status=no');
}

function loadgame(gamename) {
var load = window.open('rf/gameplayer.php?game='+gamename,'GamePlayer','scrollbars=no,menubar=no,height=740,width=780,resizable=no,toolbar=no,location=no,status=no');
}
function loadradio(episode) {
var load = window.open('rf/radio.php?f='+episode,'Radio','scrollbars=no,menubar=no,height=520,width=620,resizable=no,toolbar=no,location=no,status=no');
}

  function resize_images()
  {
    for (i = 1; i < document.images.length; i++)
    {
      while ( !document.images[i].complete )
      {
        break;
      }
      if ( document.images[i].width > 550 )
      {
        document.images[i].width = 550;
      }
    }
  }
