function openWindow(URL, winName, features){
window.open(URL, winName, features);
newWin.focus()
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  newWin = window.open(theURL,winName,features);
newWin.focus()
}

<!----- デジタルパンフレット用追加スクリプトここから----->
function OpenPamphlet( 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( "http://www4.d-pam.com/fileRoot/fp/2/0/200434/DigitalAlbumRoot/060425134427/default1.html", "", sTRFeatures );
    windowname.focus();
}
<!----- デジタルパンフレット用追加スクリプトここまで----->
