﻿function search() {
  if (window.$("m_inputSearchKey").value.Trim().length > 0) {
    window.open("http://soso.0377auto.com/car.aspx?q=" + window.escape(window.$("m_inputSearchKey").value.Trim()), "_blank");
  }
}

function CreateGroupPurchaseItem(brand) {
  return Xphter.DocumentUtility.CreateElement("div", {
    className: "item"
  }, null, [Xphter.DocumentUtility.CreateElement("a", {
    href: "http://www.0377auto.com/brand/index.aspx?bid=" + brand.ID,
    target: "_blank",
    className: "brandLink"
  }, null, [Xphter.DocumentUtility.CreateElement("img", {
    src: brand.LogoURI,
    alt: brand.Name
  }, null)]), Xphter.DocumentUtility.CreateElement("a", {
    href: "http://tuangou.0377auto.com/tg.aspx?id=" + brand.GroupPurchaseID,
    target: "_blank",
    className: "groupPurchaseLink"
  }, null, [window.document.createTextNode(brand.Name)])]);
}

function CreateGroupPurchaseList(brandArray) {
  var list = window.$("m_groupPurchaseList");
  for (var i = 0; i < brandArray.length; i++) {
    list.appendChild(CreateGroupPurchaseItem(brandArray[i]));
  }
}
