		function hLgrijs(E)
		{
			while (E.tagName!="TR")
			{
				E=E.parentElement;
			}
			E.className = "Hgrijs";
		}
			
		function dLgrijs(E){
			while (E.tagName!="TR")
			{
				E=E.parentNode;
			}
			E.className = "Dgrijs";
		}
		
		function loadUrl(E,url)
		{
			while (E.tagName!="TR")
			{
				E=E.parentNode;
			}
			
			document.location.href = url;
		}

		function hLwit(E)
		{
			while (E.tagName!="TR")
			{
				E=E.parentElement;
			}
			E.className = "Hwit";
		}
			
		function dLwit(E){
			while (E.tagName!="TR")
			{
				E=E.parentNode;
			}
			E.className = "Dwit";
		}
		
		function loadUrl(E,url)
		{
			while (E.tagName!="TR")
			{
				E=E.parentNode;
			}
			
			document.location.href = url;
		}


	<!--
	var win="null"
	function Popup(pagina,titel,breedte,hoogte,positie)
	{
		if (positie=="center")
		{
		myleft=(screen.width)?(screen.width-breedte)/2:100;
	   mytop=(screen.height)?((screen.height-hoogte)-200)/2:100;
		}
	var settings="width=" + breedte + ",height="+ hoogte +",top=" + mytop + ",left=" + myleft + ",scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no";
	win=window.open(pagina,titel,settings);
	win.focus()
	}
	// -->

<!-- hide
function newGo(box) {
if ((-1 < box.selectedIndex) && (box.options[box.selectedIndex].value.lastIndexOf('ap.org') != -1)) {
        document.forms[0].action = box.options[box.selectedIndex].value;
        document.forms[0].submit();
        return true;
        }
if ((-1 < box.selectedIndex) && (box.options[box.selectedIndex].value != 'nil')) {
        val = box.options[box.selectedIndex].value;
        if (val.lastIndexOf(',') != -1) {
                window.open ((val.substring(0,val.lastIndexOf(","))), (val.substring((val.lastIndexOf(",")+1) , val.length)));
        } else {

                if (val.length>0) {
                window.open (val,'Main');
                 }

                }
        }
        return true;
}
// end hide -->

 
function copy_item(from,to,action) {
	
	var current = from.selectedIndex;
	var nieuw=true;
	
	if (action=="add") {
		if (current>-1) {
			for (var check=0; check<to.length; check++) {  
				if (from.options[current].value==to.options[check].value) {
					nieuw=false;
					check=to.length;
				}
			}
			
			if (nieuw) {
				var optionName = new Option(from.options[current].text, from.options[current].value, false, false);
				to.options[to.length] = optionName;
				from.options[from.selectedIndex] = null;
		  }
		}
	} else {
	  if (to.selectedIndex>-1) {
	  	var optionName = new Option(to.options[to.selectedIndex].text, to.options[to.selectedIndex].value, false, false);
			from.options[from.length] = optionName;
			to.options[to.selectedIndex] = null;
		}
	}  
}
 
function select_all(obj) {
	for (var check=0; check<obj.length; check++) {  
		obj.options[check].selected=true;
	} 
}

function clearInput(obj) {
	
}