function Maiuscula(pPalavra)
{
	valor=pPalavra.value;
	pPalavra.value = valor.toUpperCase();	
}
