
	function SetUpExitLinks(appPath) {
		if (typeof(updateLinks) == "function") updateLinks(appPath);
	}

	function openPopupWindow(url, width, height) {
		var winvars = "titleBar=0,resizable=1,statusBar=1,scrollbars=1";
		winvars += ",width=" + ((typeof(width) != "undefined") ? width : 800);
		winvars += ",height=" + (((typeof(height) != "undefined") ? height : 600) + (isExplorer ? 30 : 0));
		if (isExplorer) height += 30;
		window.open(url, "_new", winvars);
	}
	function disableAll() {
		var links = document.getElementsByTagName("A");
		for (var i=0; i<links.length; i++) {
			links[i].disabled = 'disabled';
			links[i].href = "javascript:void(0)";
		}
		var inputs = document.getElementsByTagName("INPUT");
		for (var i=0; i<inputs.length; i++) inputs[i].disabled = 'disabled';
	}

