
function showResult()
{
   $('NewslaterInput').onfocus = function() {
     // if already cleared, do nothing
     if (this._cleared) return
	 
	 // otherwise clear this
	 this.clear()
     this._cleared = true
   }
}
