function openPage(id) {
	
	try {
		location.href = document.getElementById(id).href;
	}
	catch (e) {
		alert('fout bij linken');
	}
	
}