	var rightcol = document.getElementById('rightcol');
	if (rightcol) {
		var input_items = rightcol.getElementsByTagName('INPUT');
		for(var i=0; i<input_items.length; i++) {
			if (input_items[i].className == "text t90" || input_items[i].className == "text t60") {
				input_items[i].def_txt = input_items[i].value;
				input_items[i].onfocus = function() {
					// this.style.color = '#807f7f';
					this.value = this.def_txt == this.value ? '' : this.value;
				};
	
				input_items[i].onblur = function() {
					// this.style.color = '#bfbfbf';
					this.value = this.value == '' ? this.def_txt : this.value;
				};
			};
		};
	};