function aanpassen() 
{	
	// script voor het aanpassen van de font-size en de schermbreedte aan de resolutie-->
   	x=window.screen.width;
	if(x>1280)
	{x=1280}
	if(x<1024)
	{x=1024}
	fsz=Math.round(x/61.5);
	schermbreedte=x-32;
	document.body.style.fontSize=fsz+'px';
  	document.body.style.width=schermbreedte+'px';
}

// script voor de timer die de hoofding "acties voor het goede doel doet knipperen
function start() {
 var w = document.getElementById('acties')
  if (teller==0) {
  	w.style.color="#FFFF00"
  	teller=1;
	timer = setTimeout("start()",600);
	}
  else {
  	w.style.color="#999999";
  	teller=0;
	timer = setTimeout("start()",400);
	}
}
