function alarm(bericht)
{
var venster = confirm (bericht);
if (venster == true)
	{
	return true
	}
else
	{
	return false
	}
}

function passText(passedvalue)
{
var oldvalue = document.displayform.informatie.value;
if (passedvalue != "")
	{
	var totalvalue = oldvalue + passedvalue;
	document.displayform.informatie.value = totalvalue;
	document.displayform.informatie.focus();
	}
}

function goThere()
{
var list = document.gaNaar.urlList
location = list.options[list.selectedIndex].value
}
function jump()
	{
	var plaats = "#boven";
	location = plaats;
	}
// ==================================================================
// JavaScript Document
// Versie 20080421:1920
// ==================================================================
// =============== 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';
		}
	}
}
// ==================================================================
// JavaScript Document
// Versie 20090415.0851
// ==================================================================
// =============== Functies tbv pagecounter ===================
// ==================================================================
function SubmitPageCounter (id , formName , fieldName){

    var fi = eval('document.forms.' + formName + '.' + fieldName);
    var fo = eval('document.forms.' + formName);
	fi.value=id;
	fo.submit();
}
