﻿function doBullsEyeSearch(bPopupUsed) {

    var sIndID = "bullsEyeIndustry";
    var sLocID = "bullsEyeLocation"
    var sInvID = "bullsEyeCapital"

    if (doBullsEyeSearch.arguments.length == 0 || bPopupUsed == true) {
        sIndID += "PU";
        sLocID += "PU";
        sInvID += "PU";
    }

    var cboInd = document.getElementById(sIndID);
    var cboLoc = document.getElementById(sLocID);
    var cboInv = document.getElementById(sInvID);

    var sInd = cboInd.options[cboInd.selectedIndex].value;
    var sLoc = cboLoc.options[cboLoc.selectedIndex].value;
    var sInv = cboInv.options[cboInv.selectedIndex].value;

    var sURL = "";
    if (sInd.length > 0 || sLoc.length > 0 || sInv.length > 0) {
        sURL = "?ind=" + escape(sInd) + "&loc=" + escape(sLoc) + "&inv=" + escape(sInv);
    }
    //document.location.href = "SearchBullseye.aspx" + sURL;
    document.location.href = "/FranchiseFinder1.aspx" + sURL;
}
