function openWindow() {
	window.open("","popup",'width=420,height=320,scrollbars=no,status=no,resizable=no,toolbar=no,directories=no,menubar=no');
}
function c_copy1() {
   if (document.all && navigator.userAgent.match(/windows/i) && document.tags.txtarea1.value) {
      copy_obj = document.tags.txtarea1.createTextRange()
      copy_obj.execCommand("Copy")
      alert("合計カウンターの表示タグをコピーしました。");
   }
}
function c_copy2() {
   if (document.all && navigator.userAgent.match(/windows/i) && document.tags.txtarea2.value) {
      copy_obj = document.tags.txtarea2.createTextRange()
      copy_obj.execCommand("Copy")
      alert("今日カウンターの表示タグをコピーしました。");
   }
}
function c_copy3() {
   if (document.all && navigator.userAgent.match(/windows/i) && document.tags.txtarea3.value) {
      copy_obj = document.tags.txtarea3.createTextRange()
      copy_obj.execCommand("Copy")
      alert("昨日カウンターの表示タグをコピーしました。");
   }
}
