function writeBanner(bannerOut,position)
{
  var mesg = ". . . Welcome to BigJoy.com. Joy sings regularly with the Rock & Roll Comedy Band. Check out their website at www.rrcbband.com. The Rock & Roll Comedy Band will be performing outdoors at the Atlantis in Reno for Hot August Nights on August 5. Look for Joy to make an appearance on Zomboo's House Of Horror movies on KOLO Channel 8 this summer. For more information visit www.zomboo.com. Check out Joy in A Tribute to Broadway on YouTube, search Joy Michiel. 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;
}

