var navigatie = getCookie("navigatie");
if (navigatie!="null") {
	if (parent.menuframe.document.location.href.indexOf("/home/rechts.php?m=" + navigatie)<0) {
		parent.menuframe.document.location.href = "/home/rechts.php?m=" + navigatie;
	}
}

function percentage_tonen(perc,x,balkid) {
	if (perc!=0) {
		x++;
		if (x<perc) {
			Id = window.setTimeout("percentage_tonen("+perc+","+x+",'"+balkid+"')",40); 
		} else {
			clearTimeout(Id);
		}
		document.getElementById('percentage').innerHTML = x + '%';
		document.getElementById(balkid).style.width = x+'%';
	}
}