function miru(name, url, left, top, width, height) {
    toolbar_str = 'yes';
    menubar_str = 'yes';
    statusbar_str = 'yes';
    scrollbar_str = 'yes';
    resizable_str = 'yes';
    window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}

