function fitToText()
{
 if (this.scrollHeight>this.clientHeight)
 {
  this.style.height=(this.scrollHeight+20)+"px";
 }
 else
 {
  this.style.height="80px";
  this.style.height=(this.scrollHeight+20)+"px";
 }
}