/* -----------------------------------------------------------------------------
Descricao : Verifica se o tamanho da string é 0.
Parametro : str - string
Retorno   : true - str =  0
			false - str <> 0
Globais   : -
Data de criação: 13/03/2001
Autor: Daniele
comentario: utiliza as funcoes - /rtrim.js
							   - /ltrim.js
							   - /trim.js
*/
function isEmpty(str)
{
	str = new String(str);
	str = trim(str);
	if (str.length == 0)
		return true;
	else
		return false;
}
