
	function fnChangeParent(intParentID) {
		top.fraContainer.menu.location.href="menu.asp"
		top.topMnu.fnChangeTopImg(intParentID)
	}

	function fnChangeTop(intWidth,intParentID) {
		top.topMnu.fnChangeTopImg(intParentID)
		top.fraContainer.top2.document.location.href="top_title.asp?Width=" + intWidth + "&pid=" + intParentID
	}
	
	function hreq(u, ro) {
		if (u.indexOf("?") > -1) {
			u+="&rnd=" + (Math.random() * 200000);
		} else {
			u+="?rnd=" + (Math.random() * 200000);
		}
		srtRefreshing = true;
		var req;
		var stateChanged = function() {
			if (req.readyState == 4) {
				ro.innerHTML = req.responseText;
			}
		}
		
		if (window.XMLHttpRequest) {
			req = new XMLHttpRequest();
			req.onreadystatechange = stateChanged;
			req.open("GET", u, true);
			req.send(null);
		} else if (window.ActiveXObject) {
			req = new ActiveXObject("Microsoft.XMLHTTP");
			if (req) {
				req.onreadystatechange = stateChanged;
				req.open("GET", u, true);
				req.send();
			}
		} else {
			void(0);
		}
	}
