function setParameter(name, value) {
try {
		var ajax = (typeof XMLHttpRequest == "undefined" ? new ActiveXObject("Microsoft.XMLHTTP") : new XMLHttpRequest());
		ajax.open("GET", "/configsrv.php?n=" + name + "&v=" + value, false);
		ajax.send(null);
		return ajax.responseText;
	}
	catch (err) {}
			
}
			
