/* MULTIE ONLOAD */

var init = new Array();

function _init(){	
	// loop through all the items in the init array
	// and execute any functions
	for( var i=0; i < init.length; i++ ){
		if( typeof init[i] == "function" ) init[i]();
	}
}

function addMail(id){
	if($(id).value.length>0){
		//preform GET!
		location.href = 'index.php?c=nieuwsbrief&a=aanmelden&email=' + escape($(id).value);
	}
}