/*******************************
 * online.js                   *
 * 文字を消す                  *
 ******************************/
 
var first_click = true;
function clearFormText(){
    if ( first_click ) {
        clearTextNodeObj( document.getElementById('mail_text') );
        first_click = false;
    }
}