<!-- 
  var message = new Array ();
  var Speed = 100;
  var Count = 0;
  var currMessage = 1;
  var i = 0;
  var now = new Date();
  var Month = now.getMonth();


  message[1] = "Have you tested your smoke detectors this month?";
  message[2] = "In the event of a fire, police, or medical emergency, call 9-1-1!";
  message[3] = "Have you tested your carbon monoxide detectors this month?";

  if (thisMonth = "1") {
  // January
    message[4] = "NEVER leave candles unattended once they are lit!";
    message[5] = "Open burning is not permitted in the Town of Orange.  Be sure to take your leaves to the transfer station.";
  } 
  if (thisMonth = "2") {
  // February
    message[4] = "NEVER leave candles unattended once they are lit!";
    message[5] = "Open burning is not permitted in the Town of Orange.  Be sure to take your leaves to the transfer station.";
  } 
  if (thisMonth = "3") {
  // March
    message[4] = "NEVER leave candles unattended once they are lit!";
    message[5] = "Open burning is not permitted in the Town of Orange.  Be sure to take your leaves to the transfer station.";
    message[6] = "When you set your clocks ahead an hour, be sure to change the batteries in your smoke alarms and carbon monoxide detectors!";
  } 
  if (thisMonth = "4") {
  // April
    message[4] = "Be sure to inspect your grill before its first use!";
    message[5] = "Open burning is not permitted in the Town of Orange! Be sure to take your lawn debris to the transfer station!";
    message[6] = "Be sure to service your lawn maintenance equipment before use!";
  } 
  if (thisMonth = "5") {
  // May
    message[4] = "Be sure to inspect your grill before its first use!";
    message[5] = "Open burning is not permitted in the Town of Orange! Be sure to take your lawn debris to the transfer station!";
    message[6] = "Be sure to service your lawn maintenance equipment before use!";
  } 
  if (thisMonth = "6") {
  // June
  } 
  if (thisMonth = "7") {
  // July
  } 
  if (thisMonth = "8") {
  // August
  } 
  if (thisMonth = "9") {
  // September
    message[4] = "Be sure to properly store your propane and lawn equipment for the winter";
  } 
  if (thisMonth = "10") {
  // October
    message[4] = "NEVER leave candles unattended once they are lit!";
    message[5] = "Open burning is not permitted in the Town of Orange.  Be sure to take your leaves to the transfer station.";
    message[6] = "Be sure to properly store your propane and lawn equipment for the winter";
    message[7] = "When you set your clocks back an hour, be sure to change the batteries in your smoke alarms and carbon monoxide detectors!";
  } 
  if (thisMonth = "11") {
  // November
    message[4] = "NEVER leave candles unattended once they are lit!";
    message[5] = "Open burning is not permitted in the Town of Orange.  Be sure to take your leaves to the transfer station.";
  } 
  if (thisMonth = "12") {
  // December
    message[4] = "NEVER leave candles unattended once they are lit!";
    message[5] = "Open burning is not permitted in the Town of Orange.  Be sure to take your leaves to the transfer station.";
  } 

  for (i = 1; i < message.length; i++) {
    while (message[i].length < 150)
      message[i] = " " + message[i];
  }


  function Scroll() {
    var Text = message[currMessage];
    window.status = Text.substring(Count++, Text.length);
    if (Count == Text.length) {
      Count = 0;
      currMessage ++;
    }
    currMessage = (currMessage >= message.length ? 1 : currMessage);
    setTimeout("Scroll()", Speed);
  } 

  Scroll(); 

//-->
