
	//  used for copy & paste error in MSIE 6
	if (window.createPopup && document.compatMode && document.compatMode=="CSS1Compat") {
		document.onreadystatechange = onresize = function fixIE6AbsPos() {
			if (!document.body) return;
			if (document.body.style.margin != "0px") document.body.style.margin = 0;
			onresize = null;
			document.body.style.height = 0;
			setTimeout(function() { document.body.style.height = document.documentElement.scrollHeight+'px'; }, 1);
			setTimeout(function() { onresize = fixIE6AbsPos; }, 100);
			  }
		}


	//  classes used for the front page map only
	m_on = function(x){var tkEl= document.getElementById(x);tkEl.className=tkEl.className.replace(new RegExp("normal\\b"), "changed");}
	m_out = function(x){var tkEl= document.getElementById(x);tkEl.className=tkEl.className.replace(new RegExp("changed\\b"), "normal");}



// clear  input  boxes  using  onFocus="clearBox(this);"
      clearBox =  function(box) {
	 	 if(box.value==box.defaultValue) {
	 	 	 box.value = "";
	 	}
	 }