var defnWind = null;

function Glossary(theURL,winName){

         var xMax = screen.width; yMin=0;
         var xOffset = xMax - 450; var yOffset = yMin;

         defnWind = window.open(theURL,winName,'resizable,wrap,scrollbars,width=400,height=100,screenX='+xOffset+',screenY='+yOffset+',top='+yOffset+',left='+xOffset+'');
	 defnWind.focus();
}
function closeWindow(){
	if (defnWind != null && defnWind.open) defnWind.close();
}

function FocusMe()
               {
                       setTimeout("defnWind.focus()",250);
               }