function limpaLogin(){
	if(document.getElementById('loginPBF').value == 'login'){
		document.getElementById('loginPBF').value = '';
	}
}
function colocaLogin(){
	if(document.getElementById('loginPBF').value == ''){
		document.getElementById('loginPBF').value = 'login';
	}
}
function limpaSenha(){
	if(document.getElementById('senhaPBF').value == 'senha'){
		document.getElementById('senhaPBF').value = '';
	}
}
function colocaSenha(){
	if(document.getElementById('senhaPBF').value == ''){
		document.getElementById('senhaPBF').value = 'senha';
	}
}
function sendForm(){
	document.unidade.submit();
	document.unidade.usuario.value = '';
	document.unidade.senha.value = '';
}