function print_popup(url) {
  ok = window.open(url, 'print_popup', 'toolbar=0,width=980,height=600')
  if (ok) return false;
  else return true;
};

document.write('<script type="text/javascript" src="templates/foehrenbacher/js/jquery.js" charset="utf-8"></script>');
document.write('<script type="text/javascript" src="templates/foehrenbacher/js/jScrollPane.js" charset="utf-8"></script>')
document.write('<script type="text/javascript" src="templates/foehrenbacher/js/main.js" charset="utf-8"></script>')

window.onload = function(){
	SetHeight();
}
function SetHeight(){
	var x1 = document.getElementById("sidebar").clientHeight;
	var x2 = document.getElementById("content").clientHeight;
	var max_h1 = Math.max(x1, x2);
	document.getElementById("sidebar").style.height = max_h1+10 + "px";
	document.getElementById("content").style.height = max_h1 + "px";
}
