﻿function Search() {
    var selectedControlId = "";
    var selectedControltxt = "";
    var searchAppend = "";
    var searchHead = "";

    try {
        if (cmbControlList.selectedIndex() != -1) {
            selectedControlId = cmbControlList.options[cmbControlList.selectedIndex()].value;
            selectedControltxt = cmbControlList.options[cmbControlList.selectedIndex()].text;
        }
    }
    catch (ex) {
    }


    var txtSearchText = escape(document.getElementById('txtSearchText').value);

    if (txtSearchText == "" || txtSearchText == "Search") {
        txtSearchText = GetQuerystring("qrg");
    }

    /*if (selectedControlId != "") {
    searchAppend = '+site:obout.com/' + getControlFolder(selectedControlId);
    }

    searchHead = selectedControltxt + '&qrg=' + txtSearchText+'&ctlId='+selectedControlId;*/



    if (txtSearchText.trim() != '') {
        //window.location.href = "/search?q=" + txtSearchText + searchAppend + "&output=xml_no_dtd&client=default_frontend&ctl=" + searchHead;
        window.open('http://www.google.com/search?q=' + txtSearchText + '+site:obout.com', '_blank', '');
    }
}
