﻿function CleanSearch(StrText) {
    if (StrText == "Pesquisar...") {
        document.getElementById("TxtSonSoftSearch").value = "";
        document.getElementById("TxtSonSoftSearch").style.fontStyle = "normal";
        document.getElementById("TxtSonSoftSearch").style.color = "#CC0000";
    } else {
        document.getElementById("TxtSonSoftSearch").select();
    }
}
function ReloadSearch(StrText) {
    if (StrText == "") {
        document.getElementById("TxtSonSoftSearch").value = "Pesquisar...";
        document.getElementById("TxtSonSoftSearch").style.fontStyle = "italic";
        document.getElementById("TxtSonSoftSearch").style.color = "#999999";
    }
}