// JavaScript Document by PlasmaFactory.net

function initPage() {
  if (document.getElementById) {
    var oInput = document.getElementById("q");
    oInput.onfocus = function() {
      if (this.value == this.defaultValue) {
        this.value = "";
      }
    }
    oInput.onblur = function() {
      if (this.value == "") {
        this.value = this.defaultValue;
      }
    }
  }
}
if (window.addEventListener) {
  window.addEventListener("load", initPage, false);
} else {
  window.attachEvent("onload", initPage);
}