<!-----Script use to hide/show history table of each page -->
function ChangeStatus() {   // function which make the table 2 visible or hidden

	switch(window.document.all.table2.style.visibility)
		{
			case 'hidden' : window.document.all.table2.style.visibility="visible";
							document.getElementById("linktext").innerHTML ="Hide previous changes";
							break;
			case 'visible': window.document.all.table2.style.visibility="hidden";
							document.getElementById("linktext").innerHTML ="Show previous changes";
							break;
		}
}

// Script use for the process overview table, to be used with the dropdownlist
function ChangeUrl(formulaire)	{
	if (formulaire.ListeUrl.selectedIndex != 0)
		{
		location.href = formulaire.ListeUrl.options[formulaire.ListeUrl.selectedIndex].value;
	 	}
}


// Script to open a popup window
// Input parameters : The url of the page you want to display
//                    The title of the popup
function OpenPopup(page_url) {
window.open(page_url, "Information", "width=300, height=140, resizable=no, scrollbars=no");
}

// Script to define the title of a set of pages
var titleA0="www.willebroek.info";
var titleB0="Welkom...";
var titleB1="Woordenboek";
var titleB2="Archief";
var titleB3="Tijdsbalk";
var titleB4="Genealogie";
var titleB5="Links";
var titleB6="Bedankt";
var titleB7="Gemeentelijke website";
var titleB8="Help & Uitleg";
var titleB9="Foto's";

