//ウインドウを開く

function opentyousa(url) {
 w = window.open(url, 'win','width=605,height=150,status=no,scrollbars=no,directories=no,menubar=no,resizable=no,toolbar=no');
}

function openbunya(url) {
 w = window.open(url, 'win','width=625,height=400,status=no,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=no');
}

function openkyoto(url) {
 w = window.open(url, 'win','width=800,height=700,status=yes,scrollbars=yes,directories=no,menubar=no,resizable=yes,toolbar=yes');
}

function openmessage(url) {
 w = window.open(url, 'win','width=800,height=550,status=yes,scrollbars=no,directories=yes,menubar=yes,resizable=yes,toolbar=yes');
}

function openreport(url) {
 w = window.open(url, 'win','width=750,height=540,status=yes,scrollbars=no,directories=yes,menubar=yes,resizable=yes,toolbar=yes');
}

function opendept(url) {
 w = window.open(url,'win','width=930,height=580,scrollbars=yes,status=no,resizable=yes');
}

function opensanspo(url) {
 w = window.open(url, 'win','width=700,height=540,status=yes,scrollbars=yes,directories=yes,menubar=yes,resizable=yes,toolbar=yes');
}

function OpenWin( sTRURL ){
    var screen_width = screen.availWidth - 10;
    var screen_height = screen.availHeight - 30;
    sTRFeatures = "screenX=0,screenY=0,width=" + screen_width + ",height=" + screen_height +",";
    sTRFeatures += "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes";

    windowname=window.open( sTRURL, "", sTRFeatures );
    windowname.focus();
}