function textcopy() {
  obj = document.copy_form.copy_text.createTextRange();
  obj.execCommand("Copy");
  alert("クリップボードにコピーしました。");
}
