﻿function txtaHeight()
{
    if(document.getElementById("text_Contact"))
    {
        var tc=document.getElementById("text_Contact");
        var isIe=navigator.appName.indexOf("Microsoft")!=-1?true:false;
        if(isIe)
        {
            tc.style.height=tc.scrollHeight;
        }
        else
        {
            tc.style.height=tc.scrollHeight+"px";
        }
    }
}
function exTxtaHeight()
{
    if(document.getElementById("Textarea1"))
    {
        var tc=document.getElementById("Textarea1");
        var isIe=navigator.appName.indexOf("Microsoft")!=-1?true:false;
        if(isIe)
        {
            tc.style.height=tc.scrollHeight;
        }
        else
        {
            tc.style.height=tc.scrollHeight+"px";
        }
    }
}