function changeTestimonial() { 
  document.getElementById('testimonials').innerHTML = "<p>Thanks for the great service.  My order was done fast, delivered according to your estimated time and was super well packed.  I really do appreciate your store, and personnel. Every order has been handled expertly.  </p><p>R.H.</p>"; 
  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);
}


