function openNoScrollWindow(url, width, height)
{
	//var feats = "width=" + width + ",height=" + height + ",location=no,menubar=no,status=no,toolbar=no,scrollbars=no,resizable=yes";
	//var win = window.open(url, 'Details', feats, true);
	//return (false);
	
	//var width="300", height="125";
    var left = (screen.width/2) - width/2;
    var top = (screen.height/2) - height/2;
    var styleStr = 'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no,resizable=no,copyhistory=yes,width='+width+',height='+height+',left='+left+',top='+top+',screenX='+left+',screenY='+top;
    var msgWindow = window.open(url,"msgWindow", styleStr);
}