<!--
	var oLastBtn=0;
	function RaiseButton(){
		window.event.cancelBubble=true;
		oBtn = window.event.srcElement;
		var bChosen = false;
		if(oLastBtn && oLastBtn != oBtn){
			HideButton();
		}
		if(oBtn.buttonType){
			oBtn.className = oBtn.buttonType + "Up";
			oLastBtn=oBtn;
			}
		else {
		oLastBtn = 0;
		}
	}
	function DepressButton(){
		window.event.cancelBubble=true;
		oBtn = window.event.srcElement;
		if(oBtn.buttonType){
			oBtn.className = oBtn.buttonType + "Down";
		}
	}
	function HideButton(){
		if ((oLastBtn.buttonType == "LeftNavChosen") || (oLastBtn.buttonType == "LeftNavSubChosen") || (oLastBtn.buttonType == "appNavChosen") || (oLastBtn.buttonType == "appNavSubChosen")) {
			oLastBtn.className = oLastBtn.buttonType;
		}
		else {
		oLastBtn.className = oLastBtn.buttonType + "Off";
		}
	}
function popup(thePage,wi,ht,scroll) {	
	// NOTE: do NOT use dialog with multi-querystring URLs!!
    var scroll = "YES"
    if (scroll == 0) { scroll = "NO" }
	var popupname = "popupmini"
	if(window.name){
		popupname = window.name & "1"
	}
    eval('desktop = window.open("' + thePage + '",popupname,"width=' + wi + ',height=' + ht + ',toolbar=yes,location=yes,status=yes,menubar=yes,scrollbars=' + scroll + ',resizable=no");')
}
function popupmini(thePage,wi,ht) {
	var popupname = "popupmini"
	if(window.name){
		popupname = window.name & "1"
	}
	eval('desktop = window.open("' + thePage + '",popupname,"width=' + wi + ',height=' + ht + ',toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no");')
}
function showForm(theForm,wi,ht) {
	// NOTE: do NOT use dialog with multi-querystring URLs!!
        eval('desktop = window.open("/forms/showform.asp?formName=' + theForm + '","formWindow","width=' + wi + ',height=' + ht + ',toolbar=no,location=no,status=no,menubar=no,scrollbars=auto,resizable=yes");')
}
function getCookie(name) {
	var cname = name+"=";
	if (document.cookie.length > 0) {
		begin = document.cookie.indexOf(cname);
		if (begin != -1) {
			begin += cname.length;
			end = document.cookie.indexOf(";", begin);
			if (end == -1)
				end = document.cookie.length;
				return unescape(document.cookie.substring(begin, end));
			}
	 }
	 return null;
}
function setCookie(name, value, exp_date) {
	document.cookie = name+"="+escape(value)+((exp_date == "") ? "" : ("; expires="+exp_date))+"; path=/";
	alert('cookie set')
}
function imgswap(imgName,imgPath,dir,optionalName){
	imgSrc=imgName
	if(optionalName!=""){imgSrc=optionalName}
	var newPath=imgPath+imgSrc
	for (var i=0;i<document.images.length;i++){
		if(document.images[i].name==imgName){
			if(dir!=""){
				newPath=newPath+"_"+dir
			}
			newPath=newPath+".gif"
			document.images[i].src=newPath
			break
		}
	}
}
var glossaryCt = 0
function glossary(def){
	glossaryCt = glossaryCt + 1
	eval('glossaryWindow = window.open("/glossary.asp?def=' + def + '&gct=' + glossaryCt + '","glossary","width=656,height=300,toolbar=no,location=no,status=no,menubar=no,scrollbars=yes,resizable=no");')
	glossaryWindow.focus()
}
// --> 