function getObject(object,id,url){var xmlHttp;try{xmlHttp=new XMLHttpRequest();}catch(e){try{xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");}catch(e){try{xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");}catch(e){alert("Browser is old!");return false;}}}xmlHttp.onreadystatechange=function(){if(xmlHttp.readyState==4){var txt=String(xmlHttp.responseText);document.getElementById(id).innerHTML=txt;var patt = new RegExp(']*>([\\S\\s]*?)<\\/script>', 'ig');var matches=txt.match(patt);if(matches){for (var i=0;i","");xp=xp.replace("<\/"+"script>","");eval(xp);}}}} var params="";xmlHttp.open("POST",url+"/"+object,true);xmlHttp.setRequestHeader("Content-type", "application/x-www-form-urlencoded");xmlHttp.setRequestHeader("Content-length", params.length);xmlHttp.setRequestHeader("Connection", "close");xmlHttp.send(params);}