// Mailing list
window.onload = function() {

  //
  var txt1 = 'Tu Nombre'
  var txt2 = 'Tu EMail';
  var tu_nombre = document.getElementById('TuNombre');
  var tu_email = document.getElementById('TuEMail');

  //
  tu_nombre.onfocus = function() {
    if (this.value == txt1) {
     this.value = '';
    }
  }

  //
  tu_nombre.onblur = function() {
    if (this.value == '') {
      this.value = txt1;
    }
  }

  //
  tu_email.onfocus = function() {
    if (this.value == txt2) {
     this.value = '';
    }
  }

  //
  tu_email.onblur = function() {
    if (this.value == '') {
      this.value = txt2;
    }
  }

}
