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

function setDefault(el) {  el.value = el.defaultValue}
