fontSelected = "#014085"
fontNotSelected = "white"
fontHighlight = "#014085"
bgSelected = "#6699ff"
bgNotSelected = "#cedfe6"

function sel (thisBlock, link) {
	clear();
	thisBlock.style.background = bgSelected;
	thisBlock.style.color = fontSelected;
	parent.rbottom.location.href = link;
	}	

function muisAan (thisBlock) {
	thisBlock.style.color = fontHighlight;
	}

function muisUit (thisBlock) {
	if (thisBlock.style.background == bgSelected) {
		thisBlock.style.color = fontSelected;
		}
		else {
		thisBlock.style.color = fontNotSelected; 
		}
	}

