//--------------------POP UP WINDOW--------------------

function openPopWin(url){
popupWin = window.open(url,"name",'toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,resizable=1,Width=400,Height=380');
popupWin.focus();
}


//----------------デジタルパンフレット-----------------

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();
}


//------------デジタルパンフレット閲覧環境-------------
var w = window;
function openWin2(url) {
      w = open(url, "help", "width=540,height=590,menubar=no,resizable=yes,status=yes,scrollbars=yes");
   return(false);
}

