//window.onerror=function(){return false;}
var SearchKeys='';
function getId(id){return document.getElementById(id);}
function SearchBreed(id)
{
	var breedList= getId(id);
	var value= breedList.value
	if(value<0)
	{
		var name="";
		if(id=="select_guochan")
		{
			name="国产车型";
		}
		else
		{
			name="进口车型";
		}
		alert("请选择"+name+"后在点击搜索");
	}
	else
	{
		var verform=getId("SearchForm");
		verform.action="http://www.chetx.com/brand_"+ value +"/";
		verform.submit();
	}

}

function SearchPrice(searchtype)
{
    var url="";
    var verform;
    //当前域名
    var hostname=location.hostname;
    var city=hostname.split('.')[0];
    if(city=="t" || city=="chetx" || city=="beijing" || city=="www")
    {
		url="http://price.chetx.com/price/searchCars.aspx?type="+searchtype;
    }
    else
    {
		url="http://price.chetx.com/price/DiFangPrice.aspx?type="+searchtype+"&city="+city;
    }
    if(searchtype=="1")
    {
      var typeid = getId("typeid").value;
      var classid = getId("class").value;
      var type = 1;
      verform=document.QccxForm;
      if(typeid==0&&classid==0)
      {alert("汽车类型和价格范围至少选一项");return;}
    }
    else
    {
	  verform = document.SearchForm;
      var kword = getId("keyword").value.replace(/(\s*getId)/g, "").replace(/(^\s*)/g, ""); 
      if(kword=="")
      {alert("请输入关键词");return;}
    }
	verform.method="post";
	verform.action=url;
	verform.submit();
}

var moneyList0="5万以下,5-8万,8-10万,10-12万,12-15万,15-20万,20-25万,25-30万,30万以上";//默认
var moneyList1="4万以下,4万以上";//微型车
var moneyList2="5万以下,5-8万,8-10万,10万以上";//小型车
var moneyList3="5万以下,5-10万,10-13万,13-15万,15-18万,18-22万,22-30万,30万以上";//紧凑车型
var moneyList4="10万以下,10-15万,15-18万,18-22万,22-25万,25-30万,30-40万,40万以上";//中型车
var moneyList5="40万以下,40-50万,50-60万,60-70万,70万以上";//大型车
var moneyList6="80万以下,80-100万,100-150万,150-200万,200万以上";//豪华车
var moneyList7="25万以下,25-60万,60-100万,100-200万,200万以上";//跑车
var moneyList8="10万以下,10-15万,15-20万,25-40万,40万以上";//MPV
var moneyList9="20万以下,20-40万,40-60万,60-80万,80-150万,150万以上";//SUV

function SearchCheXing(id)
{
	var moneys = getId("class");
	for (var i=moneys.options.length; i>0; i--) 
	{
		moneys.remove(i);
	}
	var a = eval("moneyList"+ id).split(','); 
    for (var i=0; i<a.length; i++)
    {	
		var value=a[i].substring(0,a[i].indexOf("万"));
		if(i==0)
		{
			value="0-"+value;
		}
		else if(i==a.length-1)
		{
			value=value+"-1000";
		}
		moneys.options.add(new Option(a[i],value));
    }
}
function SearchPhoto(id)
{
	var breedList= getId(id);
	var value= breedList.value
	if(value<0)
	{
		var name="";
		if(id=="photo_guochan")
		{
			name="国产车型";
		}
		else
		{
			name="进口车型";
		}
		alert("请选择"+name+"后在点击搜索");
	}
	else
	{
		var verform=getId("PhotoSearch");
		verform.action="http://price.chetx.com/pic/e"+ value +"/";
		verform.submit();
	}
}
function loadSelectValue()
{
	var brands='新宝来,福克斯,雅力士,晶锐,新天籁,新威驰,雅阁,爱丽舍,酷熊,本田cr-v,海马欢动,科鲁兹';
	if(SearchKeys.length>0){brands=SearchKeys;}
	var ite=brands.split(',');
	getId("keyword").value=ite[Math.floor(Math.random()*ite.length)];
}