	var websiteOpen=null;
	function loadWebsite(website,query){
		if(query=="yes"){
			if(msieversion()<5){
				if(!window.confirm("Please note that this tool requires a fully XML-compliant browser\nsuch as Internet Explorer 5  ... unpredictable browser behaviour may\nresult with your current browser!")){return;}
			}
		}
		configString="location=no,menubar=no,directories=no,scrollbars=yes,resizable=yes,status=yes,width=700,height=500";
		if (websiteOpen == null) {
			websiteOpen = window.open(website, "websiteWindow",configString);
			websiteOpen.location = website;
			websiteOpen.focus();
		} else {
			if (websiteOpen.closed) {
				websiteOpen = window.open(website, "websiteWindow",configString);
				websiteOpen.focus();
			} else {
				websiteOpen.location = website;
				websiteOpen.focus();
			}
		}
		return;
	}
	function msieversion() { 
		var ua = window.navigator.userAgent; 
		var msie = ua.indexOf ( "MSIE " );
		if ( msie > 0 ){ 
			return parseInt (ua.substring (msie+5, ua.indexOf (".", msie )));
		}else{ 
			return 0;
		}
	}  


		var toolWindowOpen=null;
		function loadTool(toolURL,toolWidth,toolHeight,query){
			if(query=="yes"){
				if(msieversion()<5){
					if(!window.confirm("Please note that this tool requires a fully XML-compliant browser\nsuch as Internet Explorer 5  ... unpredictable browser behaviour may\nresult with your current browser!")){return;}
				}
			}
			configString="location=no,menubar=no,directories=no,scrollbars=yes,resizable=yes,status=no,width="+toolWidth.toString()+",height="+toolHeight.toString();
			if (toolWindowOpen == null) {
				toolWindowOpen = window.open("blankPage.htm", "toolWindow",configString);
			} else {
				if (toolWindowOpen.closed) {
					toolWindowOpen = window.open("blankPage.htm", "toolWindow",configString);
					toolWindowOpen.resizeTo(toolWidth, toolHeight);
				} else {
					toolWindowOpen.close();
					toolWindowOpen = window.open("blankPage.htm", "toolWindow",configString);
					toolWindowOpen.resizeTo(toolWidth, toolHeight);
				}
			}
			toolWindowOpen.location = toolURL;
			toolWindowOpen.focus();
			return;
		}

