	function showHiddenDiv(Id) {
		div = document.getElementById(Id);
		if (div.style.display == 'none') {
			div.style.display = 'block';
		} else {
			div.style.display = 'none';
		}
		return;
	}



function go() {
	window.location = '/watisdeschakel.php';
	
}

function SetBackground(id,background) {
	div = $(id);
	div.style.background = background;	
}