function controlValues(controlId){
	control = document.getElementById(controlId);
	if(control){
	control.eValue = control.value;
	control.onfocus = function(){
		if(this.value == this.eValue){
			this.value = '';
		}
	}
	
	control.onblur = function(){
		if(this.value == ''){
			this.value = this.eValue;
		}
	}
	}
	return false;
}
