	function displayMailAddress(text, alt) {

		var e = 'bouwe' + '@' + 'hppt' + '.nl';

		if (text == '') text = e;

		var xxhtml = "<a href='mailto:" + e + "' title='" + alt + "'>" + text + "</a>";

		document.write(xxhtml);
	}

