﻿var boxValue = "";

function clearText(box) {
    boxValue = box.value;
    box.value = "";
}

function resetText(box) {
    if (box.value == "") {
        box.value = boxValue;
    }
}