function clickclear(thisfield, sog) {
    if (thisfield.value == sog) {
        thisfield.value = "";
    }
}
function clickrecall(thisfield, sog) {
    if (thisfield.value == "") {
        thisfield.value = sog;
    }
}