// Sítio de ELmadan

function lvi(o, s) {
	if (o.value == s) {
		o.value = '';
		o.style.color = '#336F13';
	}
}
function rvi(o, s) {
	if (o.value == '') {
		o.style.color = '#CCCCCC';
		o.value = s;
	}
}