/*
 * ナース専科
 * ユーザー画面：共通
 */
function popup(url, winname, width, height) {
    popupwin = window.open(url, winname, 'scrollbars=1,width=' + width + ',height=' + height + ',resizable=1,directories=0,toolbar=0,status=1,location=0');
    popupwin.focus();
}
