﻿var arrFunctions = new Array();

function addFunction(fReference) 
{
    /* Deze functie voegt een functie-pointer toe aan de array van functies die uitgevoerd wordt in de body onload. */
    arrFunctions[arrFunctions.length] = fReference;
}

function callAllFunctions() 
{
    for(var i=0; i < arrFunctions.length; i++) 
    {
        arrFunctions[i]();
    }
}

function clearInput(el) 
{	
    el.value = ""; 
}

function popupWindow(url, windowsettings) {
	window.open(url, "popup", windowsettings); 
}

