window.addEvent('domready', function() {
 
	$('Tel').addEvents({
		'focus': function(){ if (this.value == 'Telephone' ) this.value = ''; }, 
		'blur': function(){  if (!this.value) this.value = 'Telephone';  },
		'keydown': function(event){ if (event.key == 'enter') submitLogin() }
	});
	
	$('PostCode').addEvents({
		'focus': function(){ if (this.value == 'Postcode' ) this.value = ''; }, 
		'blur': function(){  if (!this.value) this.value = 'Postcode';  },
		'keydown': function(event){ if (event.key == 'enter') submitLogin() }
	});
	 
	})
