function createTreePanel() {
	if($_GET.rub == 1)
	{
		showTree();
	}	
}
function createControlPanel(usePoiBtn, useAddressBtn, useNotesBtn) {
    usePoiBtn = usePoiBtn == undefined ? true : usePoiBtn;
    useAddressBtn = useAddressBtn == undefined ? true : useAddressBtn;
    useNotesBtn = useNotesBtn == undefined ? true : useNotesBtn;
    createTreePanel()
    createZoomPanel();
}

function createZoomPanel() {
	$('.mapZoom').prependTo('#mapCanvas').show().show().show();
	//$('#zoomInBtn').click(function(){changeMapZoom(1);})
	//$('#zoomOutBtn').click(function(){changeMapZoom(-1);})
}
