var serverLocation = "http://www.animasher.com/";
var controllerLocation = "http://www.animasher.com/comm/ajax_controller.php";
 
function getAjaxRequest() {
	var ajaxRequest;
	try {
		// Opera 8.0+, Firefox, Safari
		ajaxRequest = new XMLHttpRequest();
	} catch (e) {
		// explorer
		try {
			ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
		} catch (e) {
			try {
				ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
			} catch (e){
				throw "unsupported browser";
			}
		}
	}
	return ajaxRequest;
}
