
function bbadd(text) { 
   var txtarea = document.getElementById('text'); 
   txtarea.value += text; 
   txtarea.focus(); 
}
