defaultStatus = "warrens bakery";

var str_current_panel = "";
function show_panel(str_id) {
	if (str_id != str_current_panel) {
		if (document.getElementById) {
			var obj_panel = document.getElementById(str_id);
			if (obj_panel) {
				obj_panel.style.display = "";
				hide_panel(str_current_panel);
				str_current_panel = str_id;
			} // end if
		} // end if
	} // end if
	return true;
} // end function
function hide_panel(str_id) {
	if (document.getElementById) {
		var obj_panel = document.getElementById(str_id);
		if (obj_panel) {
			obj_panel.style.display = "none";
		} // end if
	} // end if
	return true;
} // end function