function clickclear(thisfield, defaulttext)
{
if (thisfield.value == defaulttext)
{
thisfield.value = "";
}
}


function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = ""
}

