function highLight(objId){
	if (document.getElementById(objId)){
		document.getElementById(objId).src="../img/stip_aan.gif";
		}
	}
	
function reset(objId){
	if (document.getElementById(objId)){
		document.getElementById(objId).src="../img/stip.gif";
		}
	}
	
function highLightName(objId){
	if (document.getElementById(objId)){
		document.getElementById(objId).style.backgroundColor='#000000';
				
		}
	}
	
function resetName(objId){
	if (document.getElementById(objId)){
		document.getElementById(objId).style.backgroundColor='#eeeeee';
		}
	}
	

