function limpaCampo(obj, sCampo){  
	if(obj.value == sCampo){
		obj.value = '';
	}
	if(obj.value == ''){
		obj.value = sCampo;
	}
}
