	function BegripPopup(astrKeyWord)
	{
		var myUrl;
		if ((astrKeyWord+'')!='')
		{		
			myUrl = "Begrippenlijst.aspx?Keyword=" + escape(astrKeyWord);
		}
		else
		{
			myUrl = "Begrippenlijst.aspx";
		}
		
		var myWindow;
		myWindow = window.open(myUrl,'Begrip','menubar=no,scrollbars=no,width=365,height=415,screenX=1,screenY=1,left=1,top=1');
		myWindow.focus();
	}
	
			
	function DoMenuOver(ablnOver, astrMenuId)
	{
		if (document.images)
		{
			document.images[astrMenuId + "_img"].src = ablnOver ? 'images/MenuPijltje_h.gif':'images/MenuPijltje.gif';
			
		}
		if (document.getElementById)
		{
			var cell = document.getElementById(astrMenuId + "_cell1");
			cell.className = ablnOver ? "HoofdmenuCell1On":"HoofdmenuCell1";
			var cell = document.getElementById(astrMenuId + "_cell2");
			cell.className = ablnOver ? "HoofdmenuCell2On":"HoofdmenuCell2";
			
			row = document.getElementById(astrMenuId + "_row2");
			row.className = ablnOver ? "HoofdmenuRow2On":"HoofdmenuRow2";
			var aref = document.getElementById(astrMenuId + "_a");
			aref.className = ablnOver ? "HoofdmenuOn":"Hoofdmenu";
		}
	}
	
	function Print()
	{
		window.print();
	}
	
	
	
	
	
	function PostData()
	{
		var theform;
		if (window.navigator.appName.toLowerCase().indexOf("netscape") > -1) {
			theform = document.forms[0];
		}
		else {
			theform = document.forms[0];
		}
		theform.name = "frmMail";
		//theform.action = "testPostData.aspx";
		theform.action = "http://forms.ahold.nl/servlet/PostData";
		theform.__VIEWSTATE.name = 'NOVIEWSTATE';
		theform.submit();
	}

	//CAP update
   function toggleRow(tRId)
    {
       var div = document.getElementById(tRId);
       if (div)
       {
          if (div.style.display == "none")
          {
            div.style.display = "block";
          }
            else
          {
            div.style.display = "none";
          }
      }
    
    }
