/* floationg menu */ 

$( document ).ready( function (){
$('#rightNavi').scrollFollow({});
});

//オプション
$( document ).ready( function () {
$( '#rightNavi' ).scrollFollow( {
speed: 1300,
offset: 3,
killSwitch: 'exampleLink',
onText: 'Disable Follow',
offText: 'Enable Follow'
} );
} );


/* popup */ 
function openWin(wUrl,wName,wWidth,wHeight){
scWidthCenter = screen.availWidth / 2;
scHeightCenter = screen.availHeight / 2;
wOption = "scrollbars=yes,width=" + wWidth + ",height=" + wHeight +
",Left=" + (scWidthCenter - (wWidth / 2))+",top=" + (scHeightCenter
-(wHeight / 2));
window.open(wUrl,wName,wOption);
}

<!--
function openNew(html,name,size){
newWin = open(html,name,size);
newWin.focus()
}
//-->