﻿// JScript 文件
function GoSearch(){
    var tempInforType="出租";
    if(document.form1.InforTypeList[1].checked)
        tempInforType="求租";
    if(document.form1.InforTypeList[2].checked)
        tempInforType="出售";
    if(document.form1.InforTypeList[3].checked)
        tempInforType="求购";        
    var tempCity=document.form1.CityList.options[document.form1.CityList.selectedIndex].value;
    var tempHouseType=document.form1.HouseTypeList.options[document.form1.HouseTypeList.selectedIndex].value;
    var tempInforFrom=document.form1.InforFromList.options[document.form1.InforFromList.selectedIndex].value;
    var tempAddress=document.form1.AddressTxt.value;
    if(tempAddress=="请输入房屋地址")
        tempAddress="";
	var tempUrl="Sell_More.aspx";
	if(tempInforType=="出租" || tempInforType=="求租")
		tempUrl="Rent_OutIn_More.aspx";
	window.open("../../"+tempUrl+"?page=1&t="+tempInforType+"&city="+tempCity+"&housetype="+tempHouseType+"&inforfrom="+tempInforFrom+"&address="+tempAddress,"blank");
}