﻿
function searchPic()
{
    var key = $V("SearchKey").trim();
    cateID = $("category").getAttribute("val");
    colorID = $("colorSel").getAttribute("val");
    window.open("SearchCenter.aspx?Key=" + escape(key) + "&GID=" + cateID + "&CID=" + colorID, "_blank")
}

function iptKeyDown(evt)
{
    var event = window.event || evt;
    if (event.keyCode == 13)
    {
        event.keyCode = 9;
        searchPic();
    } 
}

DlcList.doAction = function(actionIndex, actionName, index, id)
{
    DlcList.v.CategoryID = id.toString();
    DlcList.render();
}

function setLocation()
{
    var expdate = new Date();
    expdate = expdate.addDays(7);
    Cookies.setValue("LastLocation", window.location.href, expdate);
}

var cateID = "0";
var colorID = "0";
