// JavaScript Document
window.onload = function() {
  applyDefaultValue(document.getElementById('txtName'), 'User ID');
  applyDefaultValue(document.getElementById('txtPass'), 'Password');
  //applyDefaultValue(document.getElementById('txtUserID'), 'Find Profile');

}

function applyDefaultValue(elem, val) {
  elem.style.color = '#777';
  elem.value = val;
  elem.onfocus = function() {
    if(this.value == val) {
      this.style.color = '';
      this.value = '';
    }
  }
  elem.onblur = function() {
    if(this.value == '') {
      this.style.color = '#777';
      this.value = val;
    }
  }
}
