﻿

function GoToSearch(clientId) {
    var url = "/Search.aspx?text=";
    url += document.getElementById(clientId).value;
    window.location = url;
}

function GotoKnowledgeSearch(clientId){
    var url = "/SearchKnowledge.aspx?text=";
    url += document.getElementById(clientId).value;
    window.location = url;

}
