function Hirakumado(loc) {
    var wnd="Hirakumado";
    var width='580';
    var height='700';
    var myWindow = window.open(loc, wnd, 'resizable=no,scrollbars=yes,status=0,width='+width+',height='+height);
    if (myWindow.focus!=null) {
        myWindow.focus();
    }
}