function OnSubmitSearchForm(frmnm)
{
    var frm = document.getElementById(frmnm);
    var inpt = document.getElementById('searchTxt');
    var rad1 = document.getElementById('searchScope1');
    var rad2 = document.getElementById('searchScope2');
    var cmpnm = document.getElementById('companyName');
    //var cmppr = document.getElementById('companyProducts');
    //var cmplo = document.getElementById('companyLocation');
    //var cmpcn = document.getElementById('companyContact');
    
    if(rad1.checked == true)
    {
        frm.action = 'index.php?menu_item=search';
    }
    else if(rad2.checked == true)
    {
        cmpnm.value = inpt.value;
        //cmppr.value = inpt.value;
        //cmplo.value = inpt.value;
        //cmpcn.value = inpt.value;
        frm.action = 'index.php?menu_item=companySearch';
    }

    return true;
}

function OnSubmitSearchForm2(frmnm)
{
    var frm = document.getElementById(frmnm);
    var inpt = document.getElementById('searchTxt2');
    var rad1 = document.getElementById('searchScope21');
    var rad2 = document.getElementById('searchScope22');
    var cmpnm = document.getElementById('companyName2');
    //var cmppr = document.getElementById('companyProducts2');
    //var cmplo = document.getElementById('companyLocation2');
    //var cmpcn = document.getElementById('companyContact2');
    
    if(rad1.checked == true)
    {
        frm.action = 'index.php?menu_item=search';
    }
    else if(rad2.checked == true)
    {
        cmpnm.value = inpt.value;
        //cmppr.value = inpt.value;
        //cmplo.value = inpt.value;
        //cmpcn.value = inpt.value;
        frm.action = 'index.php?menu_item=companySearch';
    }

    return true;
}
