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