function ShortWindow(x,ww,wh){
  var sc="yes";
  if(x.substr(1,5)=="photo") sc="no";
  var l=(screen.width-ww)/2;
  var h=(screen.height-wh)/2;
  var a=window.open(x,"smallwindow","left="+l+",width="+ww+", height="+wh+",top="+h+", status=no, toolbar=no, menubar=no, resizable=yes, scrollbars="+sc);
  a.focus();
  return false;
}


$(document).ready(function(){
	$('#maptree div').hide();
	$('#maptree a').click(function(){
		var iEl = $(this).parent('i');
		$(this).toggleClass('open');
		if($(iEl).next().is('div')){
			$(iEl).next('div').toggle();
			return false;
		}
	});
	$('#leftTree div').hide();
	$('#leftTree a').click(function(){
		var iEl = $(this).parent('i');
		$(this).toggleClass('open');
		if($(iEl).next().is('div')){
			$(iEl).next('div').toggle();
			return false;
		}
	});
});
