window.onload = function(e){
	resizePage();
}

function resizePage(){

	var height = '';
	var backgroundHeight = document.getElementById('background').offsetHeight;
	var foregroundHeight = document.getElementById('foreground').offsetHeight;
	var menuHeight = document.getElementById('menu').offsetHeight;

	if(backgroundHeight > foregroundHeight) height = backgroundHeight;
	else height = foregroundHeight;

//	document.getElementById('frame').style.height = height + 'px';

	var margin = foregroundHeight - menuHeight - 375;
	if(margin < 20) margin = 20;
//	document.getElementById('contactdata').style.marginTop = margin + 'px';

	var done = false;
	if(document.getElementById('rightbar')) {
	var blocks = document.getElementById('rightbar').getElementsByTagName('div');
	for(var count = 0; count < blocks.length; count++) if(blocks[count].className == 'block' && !done){
		blocks[count].style.marginTop = '110px';
		done = true;
	}
	}

	window.onresize = resizePage;

}

function nieuwsbrief(el,type)
{
	if ( type == 'aanmelden' )
	{
		document.nieuwsbriefform.action = '/nl/aanmelden';
	}
	else
	{
		document.nieuwsbriefform.action = '/nl/afmelden_stap2';
	}
	// Submit form
	document.nieuwsbriefform.submit();
}


