function winopen01(type) {
 var win;
 win = window.open('NEWS/' + type + '.html', 'new1','width=620,height=600,scrollbars=1,resizable=yes');
 win.focus();
}

function winopen01D(type) {
 var win;
 win = window.open('../NEWS/' + type + '.html', 'new1','width=620,height=600,scrollbars=1,resizable=yes');
 win.focus();
}

function winopen02(type) {
 var win;
 win = window.open('NEWS/' + type + '.html', 'new2','width=820,height=500,scrollbars=1,resizable=yes');
 win.focus();
}