function bbWindowOpen(page) {
	var w = 600, h = 400;
	if (document.all || document.layers) {
	   w = screen.availWidth;
	   h = screen.availHeight;
	}
	var popW = 600, popH = 560;
	var leftPos = (w-popW)/2, topPos = (h-popH)/4;
	
	bbWindow = window.open("", "bbWindow", "toolbar=0,location=1,directories=0,status=1,menubar=0,scrollbars=0,copyhistory=0,resizable=1,width=" + popW + ",height=" + popH + ",screenY=" + topPos + ",screenX=" + leftPos + ",top=" + topPos + ",left=" + leftPos);

	if (bbWindow != null) {
		if (bbWindow.opener == null) {bbWindow.opener = self}
		bbWindow.location.href = page;
		bbWindow.focus();
	}
}

/*debugWindow = null;
debugExist = 0;
function dw(debugData) {
	if (!debugExist) {
		debugWindow = window.open("/debug.htm", "debugWindow", "toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars=1,copyhistory=0,resizable=1,width=400,height=400,screenY=500,screenX=100,top=500,left=100");
		debugExist = 1;
	}
	if (debugWindow != null) {
		if (debugWindow.opener == null) {debugWindow.opener = self}
		if (!debugExist) {
			debugExist = 1;
		}
		debugWindow.document.display.info.value = debugData;
	}
}*/