function setStyle(kleur) {
	
	if (kleur == 1){
		document.getElementById('background_content').style.background = 'white'; 
		document.getElementById('background_content').style.color = '#003871';	
		kleur=0;
	}
	if (kleur == 0){
		document.getElementById('background_content').style.background = '#44C0EB'; 
		document.getElementById('background_content').style.color = 'white';	
		kleur=1;
	}	

}


function setText(kleur2){
	if (kleur2 == 1){
		document.getElementById('background_content').style.fontSize = '14px'; 				
	}
	else{
		document.getElementById('background_content').style.fontSize = '10px'; 				
	}	
		
}

function changeBackground(hmid, smid)
{
	if(smid == "")
	window.location = "changebackground.php?hmID=" + hmid;
	else
	window.location = "changebackground.php?hmID=" + hmid + "&smID=" + smid;
}

function changeTextSize(hmid, smid)
{
	if(smid == "")
		window.location = "changetextsize.php?hmID=" + hmid;
	else
		window.location = "changetextsize.php?hmID=" + hmid + "&smID=" + smid;
}