function voet(){
	if(window && window.outerWidth && window.outerWidth < 950 && document.getElementById('content_personal')){
		document.getElementById('content_personal').style.display='none';
	}
	else if(document.body && document.body.outerWidth && document.body.outerWidth < 950 && document.getElementById('content_personal')){
		document.getElementById('content_personal').style.display='none';
	}
	else if(document.documentElement && document.documentElement.clientWidth && document.documentElement.clientWidth < 950 && document.getElementById('content_personal')){
		document.getElementById('content_personal').style.display='none';
	}
	
	if(window && window.outerWidth && window.outerWidth < 950 && document.getElementById('st')){
		document.getElementById('st').style.fontSize = '0.8em';
		document.getElementById('st').style.width = '200px';
		document.getElementById('st').style.height = '236px';
	}
	else if(document.body && document.body.outerWidth && document.body.outerWidth < 950 && document.getElementById('st')){
		document.getElementById('st').style.fontSize = '0.8em';
		document.getElementById('st').style.width = '200px';
		document.getElementById('st').style.height = '236px';
	}
	else if(document.documentElement && document.documentElement.clientWidth && document.documentElement.clientWidth < 950 && document.getElementById('st')){
		document.getElementById('st').style.fontSize = '0.8em';
		document.getElementById('st').style.width = '200px';
		document.getElementById('st').style.height = '236px';
	}
	
	var arr = document.getElementsByTagName('select');
	for(i = 0; i < arr.length; i=i+1){
		if(window.getSelection){
			arr[i].focus();
		}
		else if(arr[i].offsetTop > 1){
			arr[i].focus();
		}
	}
	var arr = document.getElementsByTagName('textarea');
	for(i = 0; i < arr.length; i=i+1){
		if(window.getSelection){
			arr[i].focus();
		}
		else if(arr[i].offsetTop > 1){
			arr[i].focus();
		}
	}
	var arr = document.getElementsByTagName('input');
	for(i = 0; i < arr.length; i=i+1){
		if(window.getSelection){
			arr[i].focus();
		}
		else if(arr[i].offsetTop > 1){
			arr[i].focus();
		}
	}
	if(arr.length > 0){
		if(window.getSelection){
			arr[(arr.length-1)].blur();
		}
		else if(arr[(arr.length-1)].offsetTop > 1){
			arr[(arr.length-1)].blur();
		}
	}
	var arr = document.images;
	for(i = 0; i < arr.length; i=i+1){
	arr[i].title = arr[i].alt;
	}
	scrollTo(0,0);
}