var win;

function winOpen (strPage, intWidth, intHeight, boolCenter)
{
	win = window.open(strPage, "BRK", "width=" + intWidth + ", height=" + intHeight + ",scrollbars=yes,resizable=yes");
	if (boolCenter) {
		var x, y;
		x = (screen.width / 2) - (intWidth / 2);
		y = (screen.height / 2) - (intHeight / 2);
		win.moveTo(x, y);
		win.resizeTo(intWidth, intHeight+22);
	}
	win.focus();
}
