﻿
window.onload=function()
{
    var h1=350;
    var h2=350;
    var h3=350;
    
    if($("text")){
		if ($("text").offsetHeight>h1)
		{
			h1=$("text").offsetHeight;
		}
		$("text").style.height=h1;
	}
    if ($("data"))
    {
        if ($("data").offsetHeight>h2)
        {
            h2=$("data").offsetHeight;
        }
        $("data").style.height=h2;
    }
    if ($("trade"))
    {
        if ($("trade").offsetHeight>h3)
        {
            h3=$("trade").offsetHeight;
        }
        $("trade").style.height=h3;
    }
};

