//formclear
flag=0;
function formclear(target) {
  if (target=='before') {
    if (flag==0) {
      flag=1;
      document.message.comment.value = "";
    }
  }
  else {
    document.message.comment.value = "";
  }
}

document.write('<FORM action="http://kotonoha.keroyon.net/comment_mail/comment_mail.cgi" method="POST" name="message" style="margin-bottom: 0px; margin-top: 0px">');
document.write('<INPUT type="hidden" name="get_url" value="');
document.write(document.URL)
document.write('">');
document.write('<TEXTAREA name="comment" style="background-color:#ffffff; font-size:10pt; color:#778899; border:1 solid #889900;" rows=5 cols=50 onclick="formclear(\'comment\');">送ボタンで、確認なしに送信します</TEXTAREA> ');
document.write('<INPUT type="submit" value="送" style="background-color:#708090; border:1px solid #808080;"color:#444444;><br>');
document.write('<!-- 削除不可 -->');
document.write('<div style="font-size:9pt;">- CGI by <a href="http://rent.sound-jp.net/" target="_blank" title="Comment Mail">Rent</a> -</div>');
document.write('<!-- 削除不可 -->');
document.write('</FORM>');
