var lang = GetCookie('ocelang');
var redirect = null;
if (lang != null) {
	switch (lang) {
		case 'be-fr' : redirect = 'http://fr.oce.be'; break;
		case 'be-nl' : redirect = 'http://nl.oce.be'; break;
		default: break;
	}
	if (redirect != null) {
  		/*
		setTimeout('window.location.href = redirect',2250);
		*/
		window.location.href = redirect;
  }
}

