document.getElementById('newsletterBox').onfocus = function() { 
	if (this.value == 'E-Mail') this.value='';
};
document.getElementById('newsletterBox').onblur = function() { if (this.value == '') this.value = 'E-Mail'; };
