Pop-Out

function getEvents(eventDate)
    {
        DWREngine._execute(_ajaxConfig._cfscriptLocation,null,'getEvents',eventDate,showEvents);
    }
        

// call back function
function showEvents(r)
    {
        $('divEvent').innerHTML = r;
    }

Cut-N-Paste