function xmhObj() { if (window.ActiveXObject) return new ActiveXObject('Microsoft.XMLHTTP'); else if (window.XMLHttpRequest) return new XMLHttpRequest(); else return false;}

function rsMonSch(){ if (objHTTP.readyState == 4){ if (objHTTP.status == 200) { document.getElementById('informLinks').innerHTML+=objHTTP.responseText; document.getElementById('informBox').style.display="block";} else{} } }

function displayInformBox(){ szUrl = "http://www.boston.com/inform/proxy?url=" + document.location; objHTTP = xmhObj(); if(objHTTP){objHTTP.onreadystatechange = rsMonSch; objHTTP.open("GET", szUrl, true); objHTTP.setRequestHeader("Content-Type", "text/xml; charset=utf-8"); objHTTP.send(null); } }
