<script type="text/javascript">
function resizeTextarea(event, key)
{
if (event.keyCode == 13) {
if (typeof self.totalEnter != 'number') {
totalEnter = 1;
}
totalEnter++;
if (totalEnter > 3) {
key.rows = key.rows + 1;
}
}
}
</script>