//Popup window script for the glossary

	
   function PopUp(PopUpUrl){
    var ScreenWidth=window.screen.width;
    var ScreenHeight=window.screen.height;
    placementx=(ScreenWidth/2)-((480)/2);
//    placementy=(ScreenHeight/2)-((600+50)/2);
    placementy=1;
    WinPop=window.open(PopUpUrl,"","width=480,height=600,toolbar=1,location=1,directories=0,status=0,scrollbars=1,menubar=1,resizable=1,left="+placementx+",top="+placementy+",screenX="+placementx+",screenY="+placementy+"");
   }