function typewrite()
{	var m = typ[current]
	window.status = m.substring(0, x++) + "_"
	if (x == m.length + 1)
	{	x = 0
		current++
		if (current > typ.length - 1)
		{	current = 0
		}
		setTimeout("typewrite()", speed2)
	}
	else
	{	setTimeout("typewrite()", speed)
	}
}
function beginneon()
{	if (document.all)
	flashing=setInterval("neon()",flashspeed)
}
function neon()
{	//Change all letters to base color
	if (n==0)
	{	for (m=0;m<message.length;m++)
		tempref[m].style.color=neonbasecolor
	}
	//cycle through and change individual letters to neon color
	tempref[n].style.color=neontextcolor
	if (n<tempref.length-1)
		n++
	else
	{	n=0
		clearInterval(flashing)
		setTimeout("beginneon()",1500)
		return
	}
}
<!-- NODIG VOOR DOORLOPENDE TEKST IN STATUSBALK : -->
function initArray(n)
{	this.length = n;
	for (var i =1; i <= n; i++)
	{	this[i] = ' '
	}
}
function typewrite()
{	var m = typ[current]
	window.status = m.substring(0, x++) + "_"
	if (x == m.length + 1)
	{	x = 0
		current++
		if (current > typ.length - 1)
		{	current = 0
		}
		setTimeout("typewrite()", speed2)
	}
	else
	{	setTimeout("typewrite()", speed)
	}
}
<!-- NODIG VOOR OPLICHTEN VAN DE PLAATJES : -->
function high(which2)
{	theobject=which2
	highlighting=setInterval("highlightit(theobject)",50)
}
function low(which2)
{	clearInterval(highlighting)
	which2.filters.alpha.opacity=50
}
function low2(which2)
{	clearInterval(highlighting)
	which2.filters.alpha.opacity=50
}
function highlightit(cur2)
{	if (cur2.filters.alpha.opacity < 100)
		cur2.filters.alpha.opacity+=10
	else if (window.highlighting)
		clearInterval(highlighting)
}

<!-- NODIG VOOR VERSPRINGENDE TEKST : -->
function MM_swapImgRestore() { //v2.0
  if (document.MM_swapImgData != null)
    for (var i=0; i<(document.MM_swapImgData.length-1); i+=2)
      document.MM_swapImgData[i].src = document.MM_swapImgData[i+1];
}

function MM_swapImage() { //v2.0
  var i,j=0,objStr,obj,swapArray=new Array,oldArray=document.MM_swapImgData;
  for (i=0; i < (MM_swapImage.arguments.length-2); i+=3) {
    objStr = MM_swapImage.arguments[(navigator.appName == 'Netscape')?i:i+1];
    if ((objStr.indexOf('document.layers[')==0 && document.layers==null) ||
        (objStr.indexOf('document.all[')   ==0 && document.all   ==null))
      objStr = 'document'+objStr.substring(objStr.lastIndexOf('.'),objStr.length);
    obj = eval(objStr);
    if (obj != null) {
      swapArray[j++] = obj;
      swapArray[j++] = (oldArray==null || oldArray[j-1]!=obj)?obj.src:oldArray[j];
      obj.src = MM_swapImage.arguments[i+2];
  } }
  document.MM_swapImgData = swapArray; //used for restore
}

function MM_showHideLayers() { //v2.0
  var i, visStr, args, theObj;
  args = MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) { //with arg triples (objNS,objIE,visStr)
    visStr   = args[i+2];
    if (navigator.appName == 'Netscape' && document.layers != null) {
      theObj = eval(args[i]);
      if (theObj) theObj.visibility = visStr;
    } else if (document.all != null) { //IE
      if (visStr == 'show') visStr = 'visible'; //convert vals
      if (visStr == 'hide') visStr = 'hidden';
      theObj = eval(args[i+1]);
      if (theObj) theObj.style.visibility = visStr;
  } }
}

<!-- NODIG VOOR VERGROTEN VAN PLAATJES NA DUBBELKLIKKEN : -->
function Show(img){
picture= new Image();
picture.src=(img);
Control(img);
}
function Control(img){
if((picture.width!=0)&&(picture.height!=0)){
viewPicture(img);
}
else{
resize="Control('"+img+"')";
interval=setTimeout(resize,20);
}
}
function viewPicture(img){
width=picture.width+20;
height=picture.height+20;
string="width="+width+",height="+height;
popup=window.open(img,"",string);
}

