﻿var partID="ctl00_ContentPlaceHolder1_";
var partID2=partID+"UC_SearchTab1_";

function onKeySearch()
{
    alert(window.event.keyCode);
    if(event.keyCode==13) { goSearch(); return false;}
}
function onKeySearch2(evtKeyCode)
{
    if(evtKeyCode==13) { goSearch(); return false;}
}
function goSearch()
{
    var word=getValue(partID2+"txtSearchWord");
    if(word=="") return;
    var url="search.aspx?q=" + escape(word) + "&type=" + getValue(partID2+"hiddenSearchTab");
    location.href=url;
}
function changeTag(type)
{
    setValue(partID2+"hiddenSearchTab",type);
    setCss(partID2+"hypTimeline","");
    setCss(partID2+"hypEvent","");
    setCss(partID2+"hypLists","");
    setCss(partID2+"hypCreator","");
    var selectedCssName="search-active";
    if(type==1) setCss(partID2+"hypTimeline",selectedCssName);
    else if(type==2) setCss(partID2+"hypEvent",selectedCssName);
    else if(type==3) setCss(partID2+"hypCreator",selectedCssName);
    else if(type==5) setCss(partID2+"hypLists",selectedCssName);
}
