function OpenBrWindow2(x,y,theURL,winName) {
var x;
var y;

ScreenWidth = screen.width;
ScreenHeight = screen.height;

xpos = (ScreenWidth/2)-(x/2);
ypos = (ScreenHeight/2.3)-(y/2);

features = "width=" + x + ",height=" + y + ",location=no,menubar=no,personalbar=no,resizable=yes,screenX=" + xpos + ",screenY=" + ypos + ",left=" + xpos + ",top=" + ypos + ",locationbar=no,scrollbars=yes,directories=no,statusbar=no,toolbar=no";

window.open(theURL,winName,features);
}

function setPoint2(Cell, PointCol2){
	Cell.style.backgroundColor = PointCol2;
}
