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