﻿// JScript 文件
function pcSearch()
{
    var maxtype=document.getElementById("ProdClassSearch1_drtype");
    var _id = maxtype.options[maxtype.selectedIndex].value;
    var id = _id.replace("max_","").replace("min_","");
    //
    var key = document.getElementById("ProdClassSearch1_KeyText1").value;
    if(_id.indexOf("min")>=0)
    {
        window.location.href = "/Search.aspx?cid="+id+"&key="+key;
    }
    else if(_id.indexOf("max")>=0)
    {
        window.location.href = "/Search.aspx?maxid="+id+"&key="+key;
    }
    else
    {
        window.location.href = "/Search.aspx?key="+key;
    }
}