  function settext(id, text) {
		var obj = document.getElementById(id);
  		txt = obj.value;
  		if (txt == text) {
				txt = '';
  		} else
  		if (txt == '') {
			txt = text;
  		}
		obj.value = txt;
  }
