function clearDefault(el) {
  if (el.defaultValue==el.value) el.value = ""
  // If Dynamic Style is supported, clear the style
	if (el.style) el.style.cssText = "color: #FF6600;"
}

