// form clearing functions
function clickclear(tf, df) { if (tf.value == df) { tf.value = ""; } }
function clickrecall(tf, df) { if (tf.value == "") { tf.value = df; } }
