				function rowStyle(row, color, cursor) {
					row.style.backgroundColor = color;
					row.style.cursor = cursor;
				}
				function toonHelp(onderdeel) { 
					window.open('/help/help.php?onderdeel=' + onderdeel,'OpenHelp','toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width=500,height=300'); }

				function toonUBB() {
					window.open('/help/ubb.php', 'ToonUBB', 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=600,height=600');
				}
				
				function toonDetails(link, popup) {
					if (popup == "nee") {
						location.href = link
					}
					else {
						window.open(link)
					}
				}			
				
				function vraagBevestigingGET(url, melding) {
				    if (confirm(melding)) {
				        location.href = url;
				    }
				    else {
				        return false;
				    }
				}

				// -->
				var menu = null;
				function init_menu()
				{
					menu = document.getElementById('menuHeader');
					var li = menu.getElementsByTagName('li'), i = li.length;
					while (i--) li[i].onmouseover = showMenu;
					menu.onmouseout = timeout;
					menu.onmouseover = cleartimer;
				}
				
				var timer = null;
				function timeout()
				{
					timer = setTimeout('hideMenus(menu, null)', 100);
				}
				
				function cleartimer()
				{
					if (timer)
					{
						clearTimeout(timer);
						timer = null;
					}
				}
				function showMenu()
				{
					var ul = this.parentNode;
					while (ul)
					{
						if (ul.tagName.toLowerCase() == 'ul')
						{
							hideMenus(ul, this);
							break;
						}
				
						ul = ul.parentNode;
					}
				
					ul = this.firstChild;
					while (ul)
					{
						if (ul.nodeType == 1 && ul.tagName.toLowerCase() == 'ul')
						{
							ul.style.display = 'block';
							ul.style.visibility = ''; // necessary for IE
							break;
						}
				
						ul = ul.nextSibling;
					}
				}
				
				function hideMenus(level, skipli)
				{
					var stack = [level], i = 0, li, j, el, tag;
					do
					{
						li = stack[i].childNodes, j = li.length;
						while (j--)
						{
							el = li[j];
							if (el.nodeType == 1 && el != skipli)
							{
								tag = el.tagName.toLowerCase();
								if (tag == 'li')
								{
									stack[i++] = el;
								}
								else if (tag == 'ul' && el.style.display == 'block')
								{
									stack[i++] = el;
									el.style.display = 'none';
									el.style.visibility = 'hidden'; // necessary for IE
								}
							}
						}
					}
					while (i--);
				}
