function clickclear(textarea) {
    textarea.value = '';
    }

function clickrecall(textarea,message) {
    textarea.value = message;
    }
