// Clears default text from a text box when the box is clicked into
function clearText(thefield){
    if (thefield.defaultValue==thefield.value)
    thefield.value = ""
}
