var w = window;function openwin(url) {/* 横幅100px、縦幅100pxのウインドウを開く */if ((w == window) || w.closed) { w = open(url, "_blank", "width=630,height=465", "scrollbars=yes"); } else { w.focus(); } return(false);}