function setBarHeight() {
var lc = document.getElementById("divLeftContent");
var rc = document.getElementById("divRightContent");
var bgImg = document.getElementById("bgImg");
if(lc&&rc)
	{
	
	var objHeight=0;
	if(lc.offsetHeight>rc.offsetHeight)
		{
		objHeight=lc.offsetHeight;
		}
	if(rc.offsetHeight>lc.offsetHeight)
		{
		objHeight=rc.offsetHeight;
		}
	if(lc.offsetHeight==rc.offsetHeight)
		{
		objHeight=lc.offsetHeight;
		}
	bgImg.style.height = objHeight+"px";
	}

}

function setBG()
{
var mwHeight = document.getElementById("divMainWrapper").clientHeight;
document.getElementById("BGFadeLeft").style.height=(mwHeight)+"px";
document.getElementById("BGFadeRight").style.height=(mwHeight)+"px";
}
