function smiley(nom_form,text,texte_defaut) {
    var txtarea = document.getElementById(nom_form).req_message; text = ' ' + text + ' ';
	if(txtarea.value == texte_defaut) {
		txtarea.value = text;
    } else {
        txtarea.value += text; txtarea.focus(); 
    } 
} 