// JavaScript Document

// Clears the form text field onFocus
// Example <INPUT TYPE=text VALUE="Search Text" ONFOCUS="clearDefault(this)">

function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = ""
}