function actief(num)
{
	document.getElementById('blok' + num).style.background = '#4d76a1';
	document.getElementById('img' + num).style.display = 'block';
	if (num == 1)
	{
		document.getElementById('specialisaties').style.display = 'block';
	}
}

function deactief(num)
{
	document.getElementById('blok' + num).style.background = '#003b79';
	document.getElementById('img' + num).style.display = 'none';
	if (num != 1)
	{
		document.getElementById('specialisaties').style.display = 'none';
	}
}

function specialisatieactief(num)
{
	document.getElementById('specialisatie' + num).style.background = '#7191b4';
}

function specialisatiedeactief(num)
{
	document.getElementById('specialisatie' + num).style.background = '#4d76a1';
}

function showspecialisaties()
{
	actief(1);
	document.getElementById('specialisaties').style.display = 'block';
}

function hidespecialisaties()
{
	deactief(1);
	document.getElementById('specialisaties').style.display = 'none';
}

function checkform()
{
	if ((document.getElementById('formnaam').value != '') && (document.getElementById('formemail').value != ''))
	{
		return true;
	}
	else
	{
		alert('Vul aub uw naam en e-mail adres in');
		return false;
	}
}

