function sb_focus(id, text) {
	e = document.getElementById(id);
  	if (e.value == text) {
		e.value = '';
  	}
  	return true;
}

function sb_exit(id, text) {
	e = document.getElementById(id);
	if (e.value == '') {
		e.value = text;
	}
	return true;
}