var sidebar = document.getElementById('container_sidebar');
var content = document.getElementById('container_content');

sidebarHeight = sidebar.offsetHeight;
contentHeight = content.offsetHeight;


if (sidebarHeight < contentHeight ) {
	sidebar.style.height = (contentHeight - 27) + 'px';
}

var vline = document.getElementById('vline')
var hdc   = document.getElementById('hdc')

if(hdc != undefined)
{	
	var hdcHeight = hdc.clientHeight;
	vline.style.height = (sidebarHeight - (hdcHeight + 44)) + 'px';
}
else
{	
	vline.style.height = (sidebarHeight - 137) + 'px';
}	


