﻿function postbackSearch(e) {
    //if is clicked enter, navigate to search
    var evt = e ? e : window.event;
    if (evt.keyCode == 13) {
        WebForm_DoPostBackWithOptions(new WebForm_PostBackOptions('imgA', '', false, '', 'Kauai_Search/Default.aspx', false, true));
        return false;
    }
    var txt = $get('txtSearch');
    //    txt.style.color = "#000000";
    if (txt.value.length == 5) {
        if (txt.value.substring(1, 0) == "9") {

            __doPostBack('txtSearch', '');
        }
    } else if (txt.value.length == 6) {
        try {
            var inta = parseInt(txt.value);

            if (inta) {

                __doPostBack('txtSearch', '');
            }
        }
        catch (e) {

        }

    }
}
function clearTextAndMakeSearch() {

    
    var txt = $get('txtSearch');
    txt.value = "";
    txt.style.color = "#000000";

    if (txt.value.length >= 5) {
        if (txt.value.substring(5, 0) != "Enter") {
            txt.value = '';

        }
    }

}

