var totalGrow = 0;
var totalShrink = 0;


function growTextArea(id,type)
{
	if(type == 'grow')
	{
		var totalRow = 0;
		var textArea = document.getElementById(id);
		totalRow = textArea.getAttribute("rows");
		if(totalRow <= 21)
		{
			textArea.setAttribute("rows",(parseInt(totalRow)+7));				
		}
	}
	if(type == 'shrink')
	{
		var totalRow = 0;
		var textArea = document.getElementById(id);
		totalRow = textArea.getAttribute("rows");
		if(totalRow > 7)
		{
			textArea.setAttribute("rows",(parseInt(totalRow)-7));		
		}
	}
}

