/////////////////////////////////////////////////////////////////////////////
//	File:			ajax.js									//
//	Author:		Justin Wies								//
//	Created on:		20-02-2010								//
//	Last edit on:	20-02-2010								//
/////////////////////////////////////////////////////////////////////////////

function SysValuesAJAX(url) {
	if (window.XMLHttpRequest) {// code for IE7+, Firefox, Chrome, Opera, Safari //
		xmlhttp=new XMLHttpRequest();
	} else {// code for IE6, IE5 //
		xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
	}
	xmlhttp.onreadystatechange=function() {
		if(xmlhttp.readyState==4) {
			document.getElementById('SysValues').innerHTML=xmlhttp.responseText
		}
	}
	xmlhttp.open("GET",url,true);
	xmlhttp.send(null);
}
