﻿function WaterMark(txt, evt) {


    if (evt.type == "blur") {
       
        txt.style.color = "#bdd4ee";

        txt.value = "Location, Product, Store, etc";

    }

    if (evt.type == "focus") {
        
        txt.style.color = "black";
        txt.value = "";


    }

}