function GetAd()
{
    //Number of Ads to Choose From
  
   var numAds = 1;
   
   //Create 2D Array to hold hyperlinks, text, and disclosure info
   var ads=new Array(numAds);
   for (var i=0;i<numAds;i++)
   {
     ads[i] = new Array(2);
   }
   
   //Fill the Array

//   ads[0][0]="banking_money_market.htm";
//   ads[0][1]="1.13 APY **<br />VIP Money Market Account";
//   ads[0][2]="** Annual percentage yields effective as of July 28, 2010. Interest rates subject to change without prior notice.  Minimum balance to open $2,500. Account maintenance fee of $15 will be charged if balanced falls below minimum.  VIP money Market Account requires a separate loan or deposit relationship of $10,000 or more to qualify for the account.  The account will be transferred to a Champion MMA if the separate relationship is not maintained at or above $10,000.  Limited to 6 withdrawals per month.  Excess withdrawal fee of $10 charged for each item over 6.  Fees could reduce earnings."
//   
//   ads[1][0]="specials.htm"
//   ads[1][1]="Special New <br /> Construction Financing Available!";

   ads[0][0] = "ssb.htm";
   ads[0][1] = "Golf Savings Bank and Sterling Savings Bank join forces.";
   document.getElementById("adright").innerHTML = '<a href=' + '"' + ads[0][0] + '"' + '>' + ads[0][1] + '</a>';

//   //Create a Random Number
//   var rand=Math.floor(Math.random()*ads.length);

//   //document.write('<a href='+'"'+ads[rand][0]+'"'+'>'+ads[rand][1]+'</a>');
//   document.getElementById("adright").innerHTML = '<a href='+'"'+ads[rand][0]+'"'+'>'+ads[rand][1]+'</a>';
//   
//   if (ads[rand][2])
//   {
//     document.getElementById("varDisclosure").innerHTML = ads[rand][2];
//   }
}
