function shrink(ta)
{
    ta.style.height = "150px";
}

function expand(ta)
{
    ta.style.height = "300px";
}
