function rest(id)
{
	valor = document.getElementById(id).value;
	//alert(valor);
	if(valor == "")
	{
		document.getElementById(id).value = id;
	}
}

function clean(id)
{
	valor = document.getElementById(id).value;
	
	if(valor == id)
	{
		document.getElementById(id).value = "";
	}
}

function confirma(id)
{
	valor = document.getElementById(id).value;
	
	if(valor == id)
	{
		alert('Por favor preencha todos os campos corretamente!');
		document.getElementById(id).focus();
		return false;
	}
}