So I have been KILLING myself wondering why NONE of my tabs would display videos for that years event, i.e. 2009, 2010, etc..
GIVE the following a Try....you can't use numbers...any work around on this?

  $params['playlist'] = 'Video';
  
  //2009 video
  $params['playlist'] = 'Video';
  $params['linkarg1'] = "2009";  //link=tab
  $params['linkindex1'] = 0;  //index=tab
  $params['linktext1'] = '2009';  //index=tab
  
  //2010 video
  $params['playlist'] = 'Video';
  $params['linkarg2'] = "2010";  //link=tab
  $params['linkindex2'] = 1;  //index=tab
  $params['linktext2'] = '2010';  //index=tab
  
  print dashplayer_get_player($params);

AND YES I tried both '2010' and "2010" (notice the quotes) for the linktext.
Any ideas???

Thanks
Will