
function spitItOut() {

  var msgs = new Array();
  
  // Enter messages in array below.  After array item is returned, document.write is called.
  //   -- Messages are HTML Compatible, feel free to enter image tags and what not
  //   -- ( see msgs[1] or msgs[4] for an example )
  
  // *** To add a new message, remove the '//' at the beginning of the line to uncomment and then type the message you wish to appear
  
  msgs[0] = "The GPS receiver in each of our contractor’s data devices can routinely track their location within 50 yards. This position information is updated in our dispatch software constantly, taking the guesswork out of deciding which contractor is the closest to your delivery.";
  msgs[1] = "<img src='images/dyk_photos/dyk_photo_package.gif' width='155' height='107'><br>Access couriers are routinely entrusted with precious, life-changing cargo such as eye corneas and other critical medical deliveries. For Mission Critical runs like these shipments are packed in dry ice.  We can customize our service to meet your Mission Critical needs as well.  Why not give us a call?";
  msgs[2] = "Access Courier handles more than 5000 packages daily in Missouri and Illinois alone.";  
//  msgs[3] = "You can win a pair of Cardinals tickets? <br /><br /> Click <a href='./cardspromo.htm'>HERE</a> for more details.";
  msgs[3] = "We're celebrating 25 years of outstanding service to our customers.";
  msgs[4] = "Access Courier can deliver your package across town or across the state.  Access has a large delivery footprint available to companies looking for next day delivery.";
  msgs[5] = "Did you know you can receive your Access Courier invoice via email?  <br /><br /><a href='mailto:billinginquiry@accesscourier.com'>Send Us an Email</a> to sign up.";
//  msgs[7] = "";
//  msgs[8] = "";
//  msgs[9] = "";
//  msgs[10] = "";
//  msgs[11] = "";
//  msgs[12] = "";
//  msgs[13] = "";
//  msgs[14] = "";
//  msgs[15] = "";
          
  var random = Math.floor(Math.random()*msgs.length);
  
  return msgs[random];
  
}