function openGWin(url)
			{	
					
				LeftPosition = 100; //update this to reflect your popupu window position
				TopPosition = 100; //update this to reflect your popup window height  
					
					//this is the method that opens the window
					//change the width and height values to fit your content
				window.open(url, 'glossary', 'width=400,height=350,top='+TopPosition+',left='+LeftPosition+',screenY='+TopPosition+',screenX='+LeftPosition+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,alwaysRaised=yes');
			}
		
function openGWinLarge(url)
			{	
					
				LeftPosition = 50; //update this to reflect your popupu window position
				TopPosition = 50; //update this to reflect your popup window height  
					
					//this is the method that opens the window
					//change the width and height values to fit your content
				window.open(url, 'glossary', 'width=500,height=550,top='+TopPosition+',left='+LeftPosition+',screenY='+TopPosition+',screenX='+LeftPosition+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,alwaysRaised=yes');
			}
