function bericht(naam) {

	// inputveld/textarea waarin de smilieCode kan worden geplaatst
	this.naam = naam;
	
	// deze functie voegt een smilieCode toe aan het bericht
	this.voegtoe = function(smilieCode)	{
		if (document.all) { 
		  // Internet Explorer of Opera
		  var id = document.all[naam]
		} 
		else { 
		  // Mozilla of Netscape
		  var id = document.getElementById(naam)
		}

		if (document.selection) {
			id.focus();
			sel = document.selection.createRange();
			sel.text = smilieCode;
			id.focus();
		}
		else if (id.selectionStart || id.selectionStart == '0') {
				var startPos = id.selectionStart;
				var endPos = id.selectionEnd;
				id.value = id.value.substring(0, startPos)
				+ smilieCode 
				+ id.value.substring(endPos, id.value.length);
				id.focus();
			}
		else {
			id.value += smilieCode;
		}
	}
}