/* alterCate script - clears text box default text onFocus, restores when not | http://chrisken.utacm.org/code/ */
function alterCate(elm, onoff){if (typeof(onoff) == "undefined" ){onoff = "blur";}if (!elm.base){elm.base = elm.value;}if (elm.value == elm.base && onoff != "blur"){elm.value = "";}else if (elm.value == "" && onoff == "blur"){elm.value = elm.base;}}