function onSubmitCheck()
{
	var objBizType 	= document.IndexSearchForm.biztype;
	var sArea 		= document.IndexSearchForm.district.value;
	var sType 		= document.IndexSearchForm.roomnum.value;
	//var sSoure 	= document.IndexSearchForm.housesource.value;
	var sPrice 		= document.IndexSearchForm.houseprice.value;
	var sPrice2 		= document.IndexSearchForm.houseprice2.value;
	var sKeyword 	= document.IndexSearchForm.keyword.value;
	sKeyword = sKeyword.trim();

	
	for(var i=0;i<objBizType.length;i++)
	{
		if(objBizType[i].checked){			
			var sBizType = objBizType[i].value;
		}
	}
	if(sBizType == 'chuzu')
	{
		var url = "/house/rent/index";
		if(sPrice.length>0)
		url = url + "/price/" + sPrice;
	}
	else
	{
		var url = "/house/sale/index";
		if(sPrice.length>0)
		url = url + "/price/" + sPrice2;
	}
		
	if(sArea.length>0)
	url = url + "/area/" + sArea;
	if(sType.length>0)
	url = url + "/type/" + sType;
	if(sKeyword.length>0)
	url = url + "/key/" + urlencoding(sKeyword);
	//alert(url);
	//http://house.anyct.com/rent/index/area/%BE%B2%B0%B2/type/2%CA%D22%CC%FC/price/1000-1500/key/sdf
	document.location = url;
}