function changeTestimonial() { 
  document.getElementById('testimonials').innerHTML = "Right on Len. I think that will work out for us customers. Thank you for your time on sending me your new news about back order system.<p style='margin-bottom:0px;'>T. F."; 
  var script = document.createElement("script");
  script.setAttribute("type", "text/javascript");
  script.setAttribute("src", "javascript/testimonials.js.php?delay=true&rand="+new Date());
  var head = document.getElementsByTagName('head')[0];
  if (x = document.getElementById("testimonialsScript")) {
   // remove old script
    head.removeChild(x);
  }
  // add script
  script.id="testimonialsScript";
  head.appendChild(script);
}

