	function PopUpGlossary(ref)
	{	
		var strFeatures="toolbar=no,status=no,menubar=no,location=no"
		strFeatures=strFeatures+",scrollbars=yes,resizable=yes,height=370,width=370,left=15,top=15"
		
		newWin = window.open(ref,"_blank",strFeatures);
		newWin.opener = top;
	}
	function PopUpWide(ref)
	{	
		var strFeatures="toolbar=no,status=no,menubar=yes,location=no"
		strFeatures=strFeatures+",scrollbars=yes,resizable=yes,height=575,width=750,left=15,top=15"
		
		newWin = window.open(ref,"_blank",strFeatures);
		newWin.opener = top;
	}
	function PopUp(ref)
	{	
		var strFeatures="toolbar=no,status=no,menubar=yes,location=no"
		strFeatures=strFeatures+",scrollbars=yes,resizable=yes,height=450,width=685,left=15,top=15"
		
		newWin = window.open(ref,"_blank",strFeatures);
		newWin.opener = top;
	}
	function PopUpAltLoc(ref)
	{	
		var strFeatures="toolbar=no,status=no,menubar=yes,location=no"
		strFeatures=strFeatures+",scrollbars=yes,resizable=yes,height=410,width=685,left=55,top=55"
		
		newWin = window.open(ref,"_blank",strFeatures);
		newWin.opener = top;
	}
	function setFocus() 
	{	var bFound = false;
		for (f=0; f < document.forms.length; f++)
		{	for(i=0; i < document.forms[f].length; i++)
			{	if (document.forms[f][i].type != "hidden")
      				{	if ((document.forms[f][i].disabled != true) && ((document.forms[f][i].type == "text") || (document.forms[f][i].type == "password")))
					{	document.forms[f][i].focus();
            					var bFound = true;
        				}
      				}
				if (bFound == true) break;
			}
 			if (bFound == true) break;
		}
	}


