/*
	Ao selecionar um input, verifica se está preenchido com o valor "texto", em caso afirmativo o campo ficara vazio.
	Ou ao remover o foco, se o campo estiver vazio, é preenchido com "texto"
*/
function Focus(input, texto)
{
	if (input.value == texto)
		input.value = '';
}
function Blur(input, texto)
{
	if (input.value == '')
		input.value = texto;
}

