function getAJAX(url,func) {
	var xmlHttp;
	try {  // Firefox, Opera 8.0+, Safari, IE 7+  
		xmlHttp=new XMLHttpRequest(); 
	}
	catch (e) {  // Internet Explorer  
		try {
			xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
		}
		catch (e) {   
			try {
				xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
			}
	    	catch (e)  {
	    	 	return false;
			}
		}
	}
	if (func) {
		xmlHttp.onreadystatechange = function() {
			if (xmlHttp.readyState == 4) {
				func(xmlHttp.responseText);
			}
		}
	}
	if (url) {
		xmlHttp.goUrl = new function() {
			xmlHttp.open("GET",url);
		  	xmlHttp.send(null);  
		}
	}
	return xmlHttp;
}