
/** ===========================================================================
Return :
Comment: Popup
Usage  :
------------------------------------------------------------------------------*/
function onPopup( fileName, winName, winWidth, winHeight, Scroll )
{

var	winPosLeft = (screen.width - winWidth) / 2;
var	winPosTop = (screen.height - winHeight) / 2;
var	winOpt = "width="+ winWidth +", height="+ winHeight +", top="+ winPosTop +", left="+ winPosLeft +", scrollbars="+ Scroll +", menubar=No, resizable=No, status=No, toolbar=No";

var	Wins = window.open(fileName, winName, winOpt + "");

	Wins.focus();

}
