function thisoneforthejunkIE(name,width,height,params,bgcolor)
{
  document.write('<object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" codebase="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" width="'+width+'" height="'+height+'" align="middle">');
  document.write('<param name="allowScriptAccess" value="sameDomain" />');
  document.write('<param name="movie" value="'+name+'.swf" />');
  document.write('<param name="quality" value="high" />');
  document.write('<param name="bgcolor" value="'+bgcolor+'" />');
  document.write('<param name="FlashVars" value="&betoltve='+params+'" />');
  document.write('<param name="LOOP" value="false">');
  document.write('<embed src="'+name+'.swf" flashvars="&betoltve='+params+'" width="'+width+'" height="'+height+'" loop="false" align="middle" quality="high" bgcolor="'+bgcolor+'" allowScriptAccess="sameDomain" type="application/x-shockwave-flash" pluginspage="http://www.macromedia.com/go/getflashplayer" />');
  document.write('</object>');
                 
}

function swap(tabs,toshow)
{
  for (i=0; i<tabs; i++)
  {
    document.getElementById('season'+i).style.display='none';
    document.getElementById('seasonctrl'+i).className='ctrlnormal';
  }
  document.getElementById('seasonctrl'+toshow).className='ctrlselected';
  document.getElementById('season'+toshow).style.display='block';
  document.getElementById('selseason').value=toshow;
}

