﻿function hide(c) { $("#" + c).addClass("gone"); }

function show(c) {
    // hide other visible popup
    $(".popup_table").addClass("gone");

    //show our
    $("#" + c).removeClass("gone");

  }

function clearif(c, b) {
    if (c && c.value == b)
    { c.value = ""; }
}

function resetWatermark(c, b) {
    if (c && c.value == "")
    { c.value = b; }
}


