1. function getEvents(eventDate)
  2.     {
  3.         DWREngine._execute(_ajaxConfig._cfscriptLocation,null,'getEvents',eventDate,showEvents);
  4.     }
  5.         
  6. // call back function
  7. function showEvents(r)
  8.     {
  9.         $('divEvent').innerHTML = r;
  10.     }