<!--


var ic = {};
ic.startH = 0;

ic.setMainHeight = function(x)
{
	if(x == 1)
	{
		if(typeof $("mainDV1") == "object" && typeof $("mainDV2") == "object" && typeof $("mainDVL") == "object" && typeof $("mainDVR") == "object" && typeof $("sepLine") == "object")
			this.startH = GetHeight("mainDV2");
	}

	if(this.startH > 0)
	{
		SetHeight("sepLine", 1);
		
		var h1 = GetHeight("mainDV1");
		var hl = GetHeight("mainDVL");
		var hr = GetHeight("mainDVR");
		
		var h = Math.max(hl, hr);
		
		if(h1>0 && h>0)
		{
			SetHeight("sepLine", h1-(this.startH - h));
		}		
	}
}


//-->


