window.onload = function(){ Setup(); }
window.onresize = function(){ Setup(); }

function SizeVertRule()
{
	var h = document.getElementById("leftpanel").clientHeight;
	var b = document.body.clientHeight;
	var r = document.getElementById("rightpanelin");
	if (r != null) {
		var newh = Math.max(h, b);	
		r.style.height = newh - 80;
	}
	var r = document.getElementById("toper");
	if (r != null) {
		ShowToper(h > b);
	}
	var r = document.getElementById("addimg");
	if (r != null) {
		window.resizeTo(r.width + 60, r.height + 180);
	}
}

function ShowToper(bb)
{
	if (bb) {
		document.getElementById("toper").className = "";
	} else {
		document.getElementById("toper").className = "toperhide";
	}
}

function Setup()
{
	SizeVertRule();
}
