window.onload = initPage;

function initPage() {
  if(document.getElementById('quickcontact')) {
    document.getElementById('qcname').onfocus = clear;
    document.getElementById('qcemail').onfocus = clear;
    document.getElementById('qctel').onfocus = clear;
    document.getElementById('qcenquiry').onfocus = clear;
    document.getElementById('qcname').onblur = reset;
    document.getElementById('qcemail').onblur = reset;
    document.getElementById('qctel').onblur = reset;
    document.getElementById('qcenquiry').onblur = reset;
  }
}

function clear() {
  if(this.id == 'qcname') {
    if(this.value == 'Name') {
      this.value = '';
    }
  }
  if(this.id == 'qcemail') {
    if(this.value == 'E-mail') {
      this.value = '';
    }
  }
  if(this.id == 'qctel') {
    if(this.value == 'Telephone') {
      this.value = '';
    }
  }
  if(this.id == 'qcenquiry') {
    if(this.value == 'Enquiry') {
      this.value = '';
    }
  }
}

function reset() {
  if(this.id == 'qcname') {
    if(this.value == '') {
      this.value = 'Name';
    }
  }
  if(this.id == 'qcemail') {
    if(this.value == '') {
      this.value = 'E-mail';
    }
  }
  if(this.id == 'qctel') {
    if(this.value == '') {
      this.value = 'Telephone';
    }
  }
  if(this.id == 'qcenquiry') {
    if(this.value == '') {
      this.value = 'Enquiry';
    }
  }
}