﻿/* JScript File
function clearText()
{
if (topnav1_searchControl_txtKeyword.value)) {
        document.getElementById("topnav1_searchControl_txtKeyword").innerText = "";
        document.getElementById("topnav1_searchControl_txtKeyword").innerHtml = "";
    }
}
function clearEmail()
{
    document.getElementById("footer1_txtEmail").innerText = "";
}
*/
function doClear(theText) {
    if (theText.value == theText.defaultValue) {
        theText.value = ""
    }
}