window.onload = function () {
	externeLinks();
	vorigePagina();
}

function externeLinks() {
	if (!document.getElementsByTagName) return;

	var anchors = document.getElementsByTagName('a');
	for (var i=0; i<anchors.length; i++) {
		var anchor = anchors[i];
		if (anchor.getAttribute('href') && anchor.className == 'extern'){
			anchor.target = '_blank';
			if (anchor.title == '') {
				anchor.title = '[opens in new window]' ;
			}
			else {
				anchor.title = anchor.title + ' [opens in new window]';
			}
			if(anchor.childNodes[0].nodeName != 'IMG'){
				anchor.className = anchor.className + ' ext';
			}
		}
	}
}

function vorigePagina() {
	if (!document.getElementById) return;

	var content = document.getElementById('content');
	for (var i=0; i<content.childNodes.length; i++) {
		node = content.childNodes[i];
		if (node.nodeName == 'P' && node.id == 'navigatie') {
			node.innerHTML = 'Please use the main menu on the right side to navigate trough the website or go back to the <a href="[go back to previous page]" onclick="history.back(); return false">previous page</a>.';
  		}
  	}
}
