function clearText(id, text) {
	meuCampo = document.getElementById(id);
	oldText = meuCampo.value;
	if (meuCampo.value == text) {
		meuCampo.value = "";
	}		

}

function setText(id, text) {
	meuCampo = document.getElementById(id);
	oldText = meuCampo.value;
	if (meuCampo.value == "") {
		meuCampo.value = text;
	} 	
}
