function inputHandler(hash){
				var inputId = hash['inputId'];
				var inputElement = document.getElementById(inputId);
				var inputValue = inputElement.value;
				inputElement.onfocus = function(){
											inputElement.value = '';
											};
				inputElement.onblur = function(){
												if(inputElement.value.length == 0){
													inputElement.value = inputValue;
												}
											
											};

}	
