// JavaScript Document

// ==================================================================
// =============== Functies voor het beheer van dias ===================
// ==================================================================

function dias_display (id , num){
var i , ix;
for (i=1;i<=num;i++)
	{
	ix = 'dia' + i;
	document.getElementById(ix).style.display='none';
	}
ix = 'dia' + id;
document.getElementById(ix).style.display='block';
}

// ==================================================================
function dia_hide(num){

var i , ix;
for (i=1;i<=num;i++)
	{
	ix = 'dia' + i;
	if (document.getElementById(ix).style.display == 'block')
		{
		document.getElementById(ix).style.display='none';
		}
	}
}

// ==================================================================
// =============== Functie om vanuit een lijst naar een anker te springen ===================
// ==================================================================
function goThere(){
var list = document.ganaar.urlList
location = list.options[list.selectedIndex].value
}
	
// ==================================================================
// =============== Functie voor het openen van een nieuw venster ===================
// ==================================================================
function popupwin (locatie , hoog , breed){
var Newwindow = window.open (locatie , "Beheerapplicatie", "HEIGHT=" + hoog + ", WIDTH=" + breed + " ,SCROLLBARS=yes , RESIZABLE=yes");
}

