// jscript voor begrippenlijst

function GetBegrip(i_Argument)
{
	sEscaped = escape ( i_Argument);
	sUrl = "../../thema/common/begrip.asp?concept=" + sEscaped.replace(/\+/g, "%2B")
	Launch(sUrl)
}

function GetBegripWithSection(begrip, section)
{
	sEscaped = escape(begrip);
	sUrl = "../../thema/common/begrip.asp?concept=" + sEscaped.replace(/\+/g, "%2B") + "&section=" + section
	Launch(sUrl)
}

function Launch( sURL ) {
  var newwin;
  
  newwin = window.open( sURL, 'independerbegrip',"resizable=yes,scrollbars=yes,width=400,height=300");
  newwin.focus();
}