function addtext(veld,text) {
	text = ''+text+' ';
  	if (document.frmMain.elements[veld].createTextRange) {
  		document.frmMain.elements[veld].focus();
  		document.selection.createRange().duplicate().text = text;
   	} else {
		document.frmMain.elements[veld].focus();
  		document.frmMain.elements[veld].value += text;
   	}
}
