function openwin1(url) {
 /* 横幅504px、縦幅515pxのウインドウを開く */
 w = window.open(url, 'win1','width=504,height=525,status=no,scrollbars=no,directories=no,menubar=no,resizable=no,toolbar=no');
}

function openwin2(url) {
 /* 横幅624px、縦幅600pxのウインドウを開く */
 w = window.open(url, 'win2','width=624,height=600,status=no,scrollbars=no,directories=no,menubar=no,resizable=no,toolbar=no');
}

function openwin2en(url) {
 /* 横幅624px、縦幅610pxのウインドウを開く */
 w = window.open(url, 'win2en','width=624,height=610,status=no,scrollbars=no,directories=no,menubar=no,resizable=no,toolbar=no');
}

function openwin3(url) {
 /* 横幅668px、縦幅450pxのウインドウを開く */
 w = window.open(url, 'win3','width=668,height=460,status=no,scrollbars=no,directories=no,menubar=no,resizable=no,toolbar=no');
}

function openwin4(url) {
 /* 横幅715px、縦幅460pxのウインドウを開く */
 w = window.open(url, 'win4','width=715,height=460,status=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=no');
}

function openwin5(url) {
 /* 横幅800px、縦幅600pxのウインドウを開く */
 w = window.open(url, 'win5','width=800,height=600,status=no,directories=no,menubar=no,resizable=yes,toolbar=no,scrollbars=yes');
}