function checkPassword(){
    if( document.moji.comment.value.indexOf("<tex>", 0) < 0){
        return true;
    }
    else{
        if( document.moji.pwd.value.length < 1){
            window.alert( "数式機能を使う場合には必ずパスワードを設定して下さい。");
            return false;
        }
        return true;
    }
}

