/* Customer Javascript */
Ext.onReady(function(){	
	Ext.get('Value1').addListener('focus', function(evt, t, o){
		t.value = '';
	}); 	
       Ext.get('Value2').addListener('focus', function(evt, t, o){
		t.value = '';
	}); 	
 });
