﻿
//常见问题搜索
function Search(currentId) {
    
    var questionSearch = document.getElementById("txtQuestionSearch").value;

    window.location.href = "/WebArchive/Search/" + currentId + "/" + questionSearch;

    }


