focused = false;

function fieldFocused(target) {
	if(focused == false) {
		focused = true;
		target.value="";
		target.style.color='#000000';
	}
}
