
function GetXml(DataToSend, URL, bText) {
			var xmlhttp;
			var browser = navigator.appName;
			if (browser == "Microsoft Internet Explorer") { //IE
					xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
				}
			else { //Other Browser
					xmlhttp = new XMLHttpRequest();
				}
			xmlhttp.open("POST",URL + "?rand="+ Math.random() ,false);
			xmlhttp.setRequestHeader("Content-Type", "application/x-www-form-urlencoded");
			xmlhttp.send(DataToSend);
			return(bText?xmlhttp.responseText:xmlhttp.responseXML);
		}
		
function ShowHide(x) {
			obj=document.getElementById('forums');
			if (x=='move') {
				obj.style.display = "";
			}
			else {
				obj.style.display = "none";
			}
		}
