function MouseOver(obj)
{
    obj.style.backgroundColor = "#F0F0F0";
    obj.style.cursor = "hand";
    obj.style.color = "red";
}
function MouseOut(obj)
{
    obj.style.backgroundColor = "#FFFFFF";
    obj.style.cursor = "";
    obj.style.color = "003278";
}

function showDetail(id)
{
    window.location = "Detail.aspx?id=" + id;
}

function WebSiteSearch()
{
    var SearchType = document.getElementById("cboSearchCategory").value;
    var SearchContent = document.getElementById("txtSearchContent").value;
    window.location.href = "/Search.aspx?st=" + SearchType + "&sc=" + SearchContent;
}

function SearchSubmit()
{
    if (event.keyCode == 13)
    {
        event.returnValue = false;
        event.cancel = true;
        WebSiteSearch();
    }
}
