//*****************************************************************************
//  ニュースを別ウィンドウに表示。
//
//*****************************************************************************
function openwin(url) {
 /* 横幅700px、縦幅600pxのウインドウを開く */
 w = window.open(url, 'win','width=700,height=600,status=no,scrollbars=yes,directories=no,menubar=no,resizable=no,toolbar=no');
}
