function getFile(pURL){
	if(window.XMLHttpRequest){ // code for Mozilla, Safari, etc
		xmlhttp=new XMLHttpRequest();
		xmlhttp.open("GET", pURL, false); // leave true for Gecko
		xmlhttp.send(null);
	}else if(window.ActiveXObject){ //IE
		xmlhttp=new ActiveXObject('Microsoft.XMLHTTP');
		if(xmlhttp){
			xmlhttp.open("GET", pURL, false);
			xmlhttp.send();
		}
	}
	return xmlhttp.responseText;
}
