var ajaxmessage="AJAX Call can not be made......Browser does not support HTTP Request";function GetXmlHttpObject(A){var B=null;if(window.XMLHttpRequest){B=new XMLHttpRequest()}else{if(window.ActiveXObject){B=new ActiveXObject("Microsoft.XMLHTTP")}}if(B==null){alert(ajaxmessage)}return B}function ConnectServer(C,E,B,D,A){if(A==null||A==""){xmlHttp.onreadystatechange=processResponse}else{xmlHttp.onreadystatechange=A}if(E=="POST"){xmlHttp.open(E,C,B);xmlHttp.setRequestHeader("Content-Type","application/x-www-form-urlencoded");xmlHttp.send(D)}else{xmlHttp.open(E,C+"?"+D,B);xmlHttp.send(null)}};
