function createUser(username, password, level) {
try {
		var ajax = (typeof XMLHttpRequest == "undefined" ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest());
		ajax.open("GET", "/jsadmin.cgi?u=" + username + "&p=" + password + "&l=" + level, false);
		ajax.send(null);
		return ajax.responseText;
	}
	catch (ex) {}
			
}
			
