function process()
{
    dojo.xhrGet( { 
        url: "../2peak/testimonial.php?action=GetText", 
        timeout: 5000, // Time in milliseconds
        
        // The LOAD function will be called on a successful response.
        load: function(response, ioArgs) { 
          
          dojo.byId("myDivElement").innerHTML = response; 
          dojo.parser.parse(dojo.byId("myDivElement"));
        },
        
        // The ERROR function will be called in an error case.
        error: function(response, ioArgs) { 
          console.error("HTTP status code: ", ioArgs.xhr.status); 
          return response; 
        }
    });
    
    setTimeout("process();", 15 * 1000);
}
