// ポップアップウィンドウ

function OpenWin(theURL,winName,features){
    win=window.open(theURL,winName,features);
    win.focus();
}