myMsg = "           SchoolHouse Designs is a copyrighted nonProfit organization.                    Pencil POint Perfection.                    Affiliated with YRA.                    We offer templates, web page building, and web resources.                         "
i = 0

function scrollMsg() {
  window.status = myMsg.substring(i,myMsg.length) + myMsg.substring(0,i-1)
  if (i < myMsg.length) {
    i++
  }
  else {
    i = 0
  }
  setTimeout("scrollMsg()",300)
}
