﻿function SearchForum(event){
    var e = event || window.event;
    var key = event.charCode || event.keyCode;
    if (document.getElementById("searchForumTxt").value == ""){
            alert("עלייך להזין טקסט על מנת לחפש");
            document.getElementById("searchForumTxt").blur();
            return false;
    }
    else{
         if ((key == 13) || (document.getElementById("searchForumTxt").value != "")){
            var elementVal = document.getElementById('searchForum').value;
            if (elementVal == 'forum'){window.location = "ForumsList.aspx?Display=3&Search=" + document.getElementById("searchForumTxt").value;};
            if (elementVal == 'topic'){window.location = "TopicList.aspx?Order=3&Search=" + document.getElementById("searchForumTxt").value;};
        }
}
}