/*
Version Date			Developer			Comment
----------------------------------------------------------------------
d1		16-Jun-2003		James Home			Created
d2		27-Nov-2003		Matt Stevenson		Added glossary popup
*/


function displayPopup(a_sURL)
/*
----------------------------------------------------------------------
	d1		16-Jun-2003		James Home			Created
----------------------------------------------------------------------

Note CDP 10-Dec-03: For some reason this is not used for the glossary 
popup boxes - the Javascript for them is found inline in products/overview.jsp

*/
{	
	mywindow=open(a_sURL ,'myname','resizable=no,scrollbars=yes,width=460,height=350');
	mywindow.location.href = a_sURL;
	mywindow.focus();
	if (mywindow.opener == null) 
	{
		mywindow.opener = self;
	}
}


function glossary_popup(a_sURL)
/*
----------------------------------------------------------------------
	d2		27-Nov-2003		Matt Stevenson		Created
----------------------------------------------------------------------
*/
{
	var glossary_features = "height=385,width=400,status=false,toolbar=false,menubar=false";
	window.open(a_sURL,'glossary', glossary_features);
	
	return false;
}

