function viewBc(bcUrl) {
	var posX = (screen.width / 2) - 325;
	var posY = (screen.height / 2) - 250;
	var bcWindowSpecs = "width=650,height=500,status=no,toolbar=no,menubar=no,location=no,scrollbars=yes,resizable=yes,top=" + posY + ",left=" + posX;
	window.open(bcUrl, "SDNBC", bcWindowSpecs);
}

function toggleCheckbox(cb1, cb2) {
	var funcName = htmlb_formid + "_getHtmlbElementId";
	func = window[funcName]; 
	var checkbox1 = eval(func(cb1));
	var checkbox2 = eval(func(cb2));
	if(checkbox1.getChecked() == true) {
		checkbox2.setChecked(false);
	}
}
