url = "/ajax/functions.cfc"; //Load Home Page Our Services Content function loadHOS(objectId,destination) { new mxAjax.Data({ executeOnLoad:true, paramArgs: new mxAjax.Param(url,{param:"objectId="+objectId, cffunction:"getHOSContent"}), postFunction: handleData }); function handleData(response) { var myHTMLOutput = JSON.parse(response); document.getElementById(destination).innerHTML = myHTMLOutput; } }