/* ******************************************************* Software: Web Wiz NewsPad Info: http://www.webwiznewspad.com Copyright: ©2006-2011 Web Wiz. All rights reserved ******************************************************* */ //AJAX var xmlHttp2; var xmlHttpResponseID2; //create XMLHttpRequest object function createXMLHttpRequest2(){ if (window.XMLHttpRequest){ xmlHttp2 = new XMLHttpRequest(); }else if (window.ActiveXObject){ xmlHttp2 = new ActiveXObject('Msxml2.XMLHTTP'); if (! xmlHttp2){ xmlHttp2 = new ActiveXObject('Microsoft.XMLHTTP'); } } } //XMLHttpRequest event handler function XMLHttpResponse2(){ if (xmlHttp2.readyState == 4 || xmlHttp2.readyState=='complete'){ if (xmlHttp2.status == 200){ xmlHttpResponseID2.innerHTML = xmlHttp2.responseText; }else { xmlHttpResponseID2.innerHTML = 'Error connecting to server'; } } } //Get AJAX data function getAjaxData2(url, elementID){ xmlHttpResponseID2 = document.getElementById(elementID); createXMLHttpRequest2(); xmlHttp2.onreadystatechange = XMLHttpResponse2; xmlHttp2.open("GET", url, true); xmlHttp2.send(null); }