function copy(theField) {
  var tempval=eval("document.form1." + theField);
  tempval.focus();
  tempval.select();
  if (document.all){
    therange=tempval.createTextRange();
    therange.execCommand("Copy");
    window.status="Contents highlighted and copied to clipboard!";
    setTimeout("window.status=''",1800);
  }
  alert('クリップボードにコピーしました。\nメールソフトの本文の箇所で貼り付け（ペースト）してご使用下さい。')
}

function openPhoto(theURL,winName,features) {
		aa = window.open('blank.html','photo','width=400,height=330');
		aa.document.open("text/html");
		aa.document.write('<script>window.focus();</script><img src=' + theURL + '>');
		aa.document.close();
}
