function
openSizedWindow(page, wid, hgt, name)
{
       var screenwidth = window.screen.availWidth;
       var screenheight = window.screen.availHeight;
       var halfwidth = Math.floor(wid/2);
       var halfheight = Math.floor(hgt/3);
       var leftpos = screenwidth/2 - halfwidth;
       var toppos = screenheight/3 - halfheight;
       var _width = "width=" + wid + ","; //548,";
       var _height = "height=" + hgt + ","; //474,";
       var _scroll = "scrollbars=no,resizable=no,menubar=no,toolbar=no,location=no,directories=no";
       var _posLeft= "screenX=" + leftpos + ",left=" + leftpos + ",";
       var _posTop = "screenY=" + toppos + ",top=" + toppos ;
       var w = window.open(page,name, _width + _height + _scroll + _posLeft + _posTop);
	   //w.focus();
       return false;
}

function
openSizedWindow_scroll(page, wid, hgt, name)
{
       var screenwidth = window.screen.availWidth;
       var screenheight = window.screen.availHeight;
       var halfwidth = Math.floor(wid/2);
       var halfheight = Math.floor(hgt/3);
       var leftpos = screenwidth/2 - halfwidth;
       var toppos = screenheight/3 - halfheight;
       var _width = "width=" + wid + ","; //548,";
       var _height = "height=" + hgt + ","; //474,";
       var _scroll = "scrollbars=yes,resizable=no,menubar=no,toolbar=no,location=no,directories=no";
       var _posLeft= "screenX=" + leftpos + ",left=" + leftpos + ",";
       var _posTop = "screenY=" + toppos + ",top=" + toppos ;
       var w = window.open(page,name, _width + _height + _scroll + _posLeft + _posTop);
	   //w.focus();
       return false;
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

