function inibeForm() {
    document.all('fullTransparentDIV').style.display='block';
    document.all('waitPopupDIV').style.display='block';
    return true;
}

function validateTextArea() {
	if (event.srcElement.offsetHeight<event.srcElement.scrollHeight) {
		alert('Excedeu o numero maximo de linhas.');
		return false;
	}
	return true;
}
