﻿var txtSearch = null;
function NavToNFIBSearch()
{
    var searchParam = '';
    if(txtSearch == null){ txtSearch = document.getElementById('txtSearch'); }
    if((txtSearch != null) && (txtSearch != undefined))
    {
        if(txtSearch.value != 'Type what you are searching for')
        {
            searchParam = 'search?q=' + txtSearch.value;
        }
    }

    window.location.href = ("http://google.nfib.com/" + searchParam);

    return false;
};

function ManageNFIBSearchText()
{
    if(txtSearch == null){ txtSearch = document.getElementById('txtSearch'); }
    if((txtSearch != null) && (txtSearch != undefined))
    {
        if(txtSearch.value == '')
        {
            txtSearch.value = 'Type what you are searching for';
        }
        else if(txtSearch.value == 'Type what you are searching for')
        {
            txtSearch.value = '';
        }
    }
};
