var max=2;
var thisBanner=1;
var banner=new MakeBannerArray(max);


function MakeBannerArray(n)
{
this.length=n;
for (var i=1; i<=n;i++)
{
this[i]="";
}
return this;
}
banner[1]='<a href="https://support.openband.net/openband/customercare/"><img src="http://www.openband.net/images/banner_NBA_07.jpg" width="290" height="150" alt="2007-2008 NBA League Pass"><\/a>';
banner[2]='<a href="https://support.openband.net/openband/customercare/"><img src="http://www.openband.net/images/banner_FullCourt_07.jpg" width="290" height="150" border="0" alt="2007-2008 ESPN Full Court"><\/a>';
banner[3]='<a href="http://www.openband.net/pdf/Tech_Check_List.pdf"><img src="http://www.openband.net/images/ad_checklist.jpg" width="290" height="150" alt="Technology Checklist"><\/a>';
banner[4]='<a href="http://support.openband.net"><img src="http://www.openband.net/images/main_page_Survey.jpg" width="290" height="150" alt="2007 Customer Satisfaction Survey"><\/a>';

function rand(n)
      {
      rnum=Math.floor(n*Math.random())+1;
      return rnum;
      } 

function setBanner()
      {
      thisBanner=rand(max);
      } 

