
	var Fb_frame_height = 342
	var news_box_height = 380
	var extra_padding = 335
	var total_height = Fb_frame_height + extra_padding

	function setHeight() {
	    if (document.getElementById('Content').clientHeight + news_box_height >= total_height) {
		    document.getElementById('LeftBar').style.height = document.getElementById('Content').clientHeight + news_box_height + 'px';
		}
		else {
			document.getElementById('LeftBar').style.height = total_height + 'px';
		}
	}
			
	function setNavPath() {
		var tempString = document.getElementById('LocalNavPath').innerHTML;
		var tempString2 = tempString.replace(/sepImage/g,"&nbsp;&nbsp; <img src='/Separator.png' style='vertical-align:middle;'/> &nbsp;&nbsp;"); 
		document.getElementById('NavPath').innerHTML = tempString2;
		document.getElementById('NavPath').style.visibility ="visible"
		RoundRect.run();
	}

	function getVariable(variable) {
	  var query = window.location.search.substring(1);
	  var vars = query.split("&");
	  for (var i=0;i<vars.length;i++) {
	    var pair = vars[i].split("=");
	    if (pair[0] == variable) {
	      return pair[1];
	    }
	  }
	}


	function growIframeWidth(){
		document.getElementById('MenuFrame').style.width="700px"
	}
	
	function shrinkIframeWidth(){
		document.getElementById('MenuFrame').style.width="195px"		
	}	
