function changeFont(type, uri) {
	createCookie ("veiligmetverf", type, 1);
	if (document.all && document.getElementById) {
		self.setTimeout('document.location.href="' + uri + '";', 0);
	} else {
		// Mozilla needs a delay.. Setting cookies takes longer?!
		self.setTimeout('document.location.href="' + uri + '";', 1000);
	}
}

/*---------------- Cookie functions -------------*/

function createCookie(name,value,days) {
	if (days){
		var date = new Date();
		date.setTime(date.getTime()+(days*24*60*60*1000));
		var expires = "; expires="+date.toGMTString();
	}
	else var expires = "";
	document.cookie = name+"="+value+expires+"; path=/";
}
