﻿function SearchItem()
{
    var key = document.getElementById("q").value;
    if(key==""||key=="输入您想要的宝贝")
    {
      alert("您还没有输入所需的宝贝关键词呢，查不了哦～～");
      return;
    }
    var rewriteExt = document.getElementById("hdRewriteExt").value;
   // var cid = document.getElementById("ddlType").value;
    var isUrlWrite = document.getElementById("hdisUrlWrite").value;
    if(isUrlWrite == 1)
    {
       // window.location.href = "/s/"+encodeURI(key)+"-"+cid+".html";
        window.location.href = "/q/"+encodeURI(key)+rewriteExt;
    }
    else
    {
      //  window.location.href = "/SearchItem.aspx?key="+encodeURI(key)+"&cid="+cid+"";
        window.location.href = "/SearchItem.aspx?key="+encodeURI(key);
    }
}

function SearchShop()
{
    var key = document.getElementById("nick").value;
    if(key==""||key=="输入您想要的掌柜名")
    {
      alert("您还没有输入要找的掌柜名呢，查不了哦～～");
      return;
    }
    var rewriteExt = document.getElementById("hdRewriteExt").value;
    var isUrlWrite = document.getElementById("hdisUrlWrite").value;
    if(isUrlWrite == 1)
    {
      //  window.location.href = "/s/"+encodeURI(key)+"-"+cid+rewriteExt;
          window.location.href = "/s/"+encodeURI(key)+rewriteExt;
    }
    else
    {
        window.location.href = "/SearchItem.aspx?key="+encodeURI(key);
    }
}


function SearchProd2()
{
    var key = document.getElementById("txtKey2").value;
    var isUrlWrite = document.getElementById("hdisUrlWrite").value;
    if(isUrlWrite == 1)
    {
        window.location.href = "/s/"+encodeURI(key)+"-0.html";
    }
    else
    {
        window.location.href = "/SearchItem.aspx?key="+encodeURI(key)+"";
    }
}

function ItemKeyDown()
{
    if (event.keyCode == 13)
    {
       SearchItem();
       return false;
    }
}

function ShopKeyDown()
{
    if (event.keyCode == 13)
    {
      SearchShop();
       return false;
    }
}
