function menuMouseOver(object)
{
	object.style.backgroundColor = "#E3C991";	
}
function menuMouseOut(object)
{
	object.style.backgroundColor = "#F0EDE1";	
}
function setFontSize(size)
{
	document.body.style.fontSize = size + 'px';
}
function showBlock(name)
{	
	var block = document.getElementById(name);
	block.style.display = "block";
}
function hideBlock(name)
{
	var block = document.getElementById(name);
	block.style.display = "none";
}
function delPage(id)
{
	var answer = confirm("Bent u zeker dat u deze pagina wil verwijderen ?\nDeze actie is ONOMKEERBAAR !");
	if (answer)
	{
		window.location = "admin.php?action=delpage&id=" + id;	
	}
}
