
var iPos = 0;
var sMessage = "";


//-------   MAKE CHANGES FOR TICKER TAPE MESSAGES IN HERE ---------------------------
//
  
//  Make sure there are NO QUOTES in the body of each banner message !!  //
//  Add them one line at a time below and make sure you have the double "; at the end
//  and the sMessage = sMessage + "  at the beginning
//------------------------------------------------------------------------------------

function SetTickerTape() {
  sMessage = sMessage + "   Welcome to our Badge Manufacturing Pages ";
   sMessage = sMessage + "                                      ";
  sMessage = sMessage + " We have one of the BEST badge design departments";
  

}


function SetupMessage() {

// Set up the messages
   SetTickerTape();

// start timer
   StartScrolling();
}


function StartScrolling() {
  var sOut = sMessage.substring(iPos, sMessage.length);
  document.ScrollForm.StatusBar.value=sOut;
  iPos++;

  if (iPos > sMessage.length) 
     iPos = 1;
     setTimeout("StartScrolling()", 200);
}


