//ポップアップウィンドウ
function openWindow(openurl) {
    var w = window.open(openurl, 'mywindow', 'width=940, height=800, location=yes, menubar=yes, toolbar=yes, scrollbars=yes, resizable=yes ');
    w.focus();
}
