function writeBanner(bannerOut,position)
{
  var mesg = ". . . Welcome to BigJoy.com. Big Joy will be hosting th Super Bowl at th Carson Nugget in Carson City, Nevada on Feb. 9. Joy is also part of the band Bigg Fun. Check out their Web site at www.biggfunn.com. Come join in the fun by becoming a member of the Virtual Joy Club today and send unlimited video singing telegrams for a full year for only $8!";
  var spacerlength = bannerOut.size - mesg.length;
  var bannerStr;
  var spacerStr = "";
  for(var i=0;i<spacerlength;i++) spacerStr += " ";
  mesg += spacerStr;
  bannerStr = mesg.substring(position,mesg.length-1);
  bannerStr += mesg.substring(0,position-1);
  position++;
  if(position == mesg.length) position = 0;
  bannerOut.value = bannerStr;
  return position;
}




