/* =============================================
	Mirror-fetch File
	Started: 3.25.2008
	Version: 3.25.2008
	Copyright 2007-2008 Michael Wallar
   ============================================= */
   
// Getting it on with the AJAX
function getmirrors($id) {
	var url = "http://iem.rp-addict.com/core/mirrors.php?id="+$id;
	var ele = "mirrors_"+$id;
	var xhr = new XMLHttpRequest();
	xhr.open("GET", url, true);
	xhr.onreadystatechange = function(){
		if ( xhr.readyState == 4 ) {
			if ( xhr.status == 200 ) {
				document.getElementById(ele).innerHTML = xhr.responseText;
			} else {
				document.body.innerHTML = "ERROR";
			}
		}
	};
	xhr.send(null);

}