function emoticon(text) {
		var txtarea = document.getElementById( 'guestbookMessage' );
		text = '' + text + '';
		if (txtarea.createTextRange && txtarea.caretPos) {
			var caretPos = txtarea.caretPos;
			caretPos.text = caretPos.text.charAt(caretPos.text.length - 1) == ' ' ? caretPos.text + text + ' ' : caretPos.text + text;
			txtarea.focus();
		} else {
			txtarea.value  += text;
			txtarea.focus();
		}
		//limiet( document.getElementById( 'bericht' ), 500, 'aantal' ); 
		//limitText(document.getElementById( 'guestbookMessage' ),document.getElementById( 'countdown_Content' ),255);
	}