function limparCaixaTexto(elemento, valorOriginal) {
	if (elemento.value == valorOriginal)
		elemento.value = '';
}

function preencherCaixaTexto(elemento, valorOriginal) {
	if (elemento.value == '')
		elemento.value = valorOriginal;
}

function atualizarLeft(sender, left) {
	sender.style.marginLeft = left;
}

function ocultar(elemento) {
	elemento.style.display = "none";
}

function exibir(elemento) {
	elemento.style.display = "block";
}