//winopen
function SeeDetailsWinOpen(smwinname,smtitle,smimg,smwidth,smheight){
  var SDWO = window.open("",smwinname,"toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + smwidth + ",height=" + smheight );
  SDWO.focus();
  SDWO.document.write("<html><head><title>" + smtitle + "</title></head>");
  SDWO.document.write("<body bgcolor='#FFFFFF' marginwidth='0' marginheight='0' topmargin='0' leftmargin='0'>");
  SDWO.document.write("<table border='0' cellpadding='0' cellspacing='0' width='" + smwidth + "' height='" + smheight + "'><td background='" + smimg + "'><a href='javascript:top.close();'>");
  SDWO.document.write("<img alt='この画面を閉じるには画像をクリックしてください' border='0' src='/images/s.gif' width='" + smwidth + "' height='" + smheight + "'>");
  SDWO.document.write("</a></td></tr></table></body></html>");
  SDWO.document.close();
}