﻿
function BlurText(vid, showtxt) {
    var txt = document.getElementById(vid);

    if (txt.value == "" || txt.value == showtxt) {
        txt.value = showtxt;
        txt.style.color = "#9B9A9A";
    }
    else {

        txt.style.color = "Black";
    }

}


function FocusText(vid, showtxt) {

    var txt = document.getElementById(vid);

    if (txt.value == showtxt) {
        txt.value = "";
        txt.style.color = "Black";
    }

}