var el = document.getElementById("dnn_dnnSEARCH_txtSearch");
var helpText = "Search...";
el.value = helpText;
el.onfocus = function() {if (this.value == helpText) { el.value = "";}};
el.onblur = function() {if (this.value == "") { el.value = helpText;}}

