function onLoadHome ()
    {
    //alert ("in onload...");
    var lc = document.getElementById('c2_leftcontent');
    var rc = document.getElementById('c2_rightcontent');

    var lch = lc.offsetHeight;
    var rch = rc.offsetHeight;

    lc.style.height = 0 + 'px';
    rc.style.height = 0 + 'px';

    if (lch >= rch)
	{
	lc.style.height = lch + 'px';
	rc.style.height = lch + 'px';
	}
    else if (rch >= lch)
	{
	lc.style.height = rch + 'px';
	rc.style.height = rch + 'px';
	}

    lc.style.backgroundColor='#e2e2e2';
    rc.style.backgroundColor='#e2e2e2';
    return;
    }

function onLoad ()
    {
    //alert ("in onload...");
    var lc = document.getElementById('c3_leftcontent');
    var cc = document.getElementById('c3_centercontent');
    var rc = document.getElementById('c3_rightcontent');

    var lch = lc.offsetHeight;
    var cch = cc.offsetHeight;
    var rch = rc.offsetHeight;

    lc.style.height = 0 + 'px';
    cc.style.height = 0 + 'px';
    rc.style.height = 0 + 'px';

    if (lch >= cch && lch >= rch)
	{
	lc.style.height = lch + 'px';
	cc.style.height = lch + 'px';
	rc.style.height = lch + 'px';
	}
    else if (cch >= lch && cch >= rch)
	{
	lc.style.height = cch + 'px';
	cc.style.height = cch + 'px';
	rc.style.height = cch + 'px';
	}
    else if (rch >= lch && rch >= cch)
	{
	lc.style.height = rch + 'px';
	cc.style.height = rch + 'px';
	rc.style.height = rch + 'px';
	}

    lc.style.backgroundColor='#e2e2e2';
    cc.style.backgroundColor='#e2e2e2';
    rc.style.backgroundColor='#e2e2e2';
    return;
    }


