// JavaScript Document
function xmlAspAjax(aspWidgetUrl, div){
	//create the XMLHttpRequest
	var ajaxReq;
	//start ajax
	try{// Firefox, Opera 8.0+, Safari
 	 ajaxReq=new XMLHttpRequest();
	}
	catch (e){
	  try{//IE 6+
		ajaxReq=new ActiveXObject("Msxml2.XMLHTTP");
	  }
	  catch (e){
		try{//IE 5
		  ajaxReq=new ActiveXObject("Microsoft.XMLHTTP");
		}
		catch (e){//error
		  alert("Your browser does not support AJAX!");
		  return false;
		}
	  }
	}
	ajaxReq.onreadystatechange=function(){
		if(ajaxReq.readyState==4){
			var ajaxDisplay = document.getElementById(div);
			ajaxDisplay.innerHTML = ajaxReq.responseText;
		}
	}
	//open a connection to the script
	ajaxReq.open('GET', aspWidgetUrl, true);
	ajaxReq.send(null);	
}//end inksplotAjax