document.writeln('<div align="center" style="padding:12px; background-color:#FFFFEE; margin:6px">');
document.writeln('<div style="color:#000000; font-size:12px; font-weight:bold; margin-bottom:6px">A Sampling of Current PPS CME Activities</div>');
document.writeln('<div id="activityList" style="text-align:left"></div></div>');
function GetXmlHttpObject() {
  var xmlHttp=null;
  try {
    // non-IE
    xmlHttp=new XMLHttpRequest();
    }
  catch (e) {
    // IE
    try {
      xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
      }
    catch (e) {
      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
      }
    }
  return xmlHttp;
}
xmlHttp=GetXmlHttpObject();
function startIt() {
var url="/feeds/ppsContent.asp";
xmlHttp.open("GET",url,true);
xmlHttp.onreadystatechange=stateChanged;
xmlHttp.send(null);
}
function stateChanged() {
	if (xmlHttp.readyState==4) {
		if (xmlHttp.status==200) {
			document.getElementById('activityList').innerHTML=xmlHttp.responseText;
		} else if (xmlHttp.status==404) {
			alert("Requested URL does not exist");
		} else {
			alert("Error: status code is " + xmlHttp.status);
		}
	}
}
if (xmlHttp!=null) {
startIt();	
}