function chText(t, type)
{
	if(type == 'focus')
	{
		t.value = "";
	}
}

function chForm(f)
{
	if(f.oracao.value.length < 2 || f.oracao.value == "Deixe aqui seu pedido...")
	{
		alert('Preencha o formul\u00e1rio e tente novamente');
		return false;
	}
	
	return true;
}
