﻿function o(obj)
{
    return document.getElementById(obj);
}

function seldisabled(obj1,obj2)
{
    if(obj1.value != "")
       o(obj2).disabled = true;
    else
       o(obj2).disabled = false;
}

function openLpsearch()
{
    var area = o("SelQY").options[o("SelQY").selectedIndex].value;
    var bk = "";//o("selbk").options[o("selbk").selectedIndex].value;
    var wytype = o("SelType").options[o("SelType").selectedIndex].value;
    var kptime = "";
    var fwyt = ""//o("SelYT").options[o("SelYT").selectedIndex].value;
    var price = o("price").value;
    var itype = o("itype").options[o("itype").selectedIndex].value;
    var info = o("txtContext").value;
    if(info == "请输入楼盘") info="";
    //alert(info);
    window.open("http://lpzl.haofz.com/floorsearch.aspx?area="+escape(area)+"&bk="+escape(bk)+"&wytype="+escape(wytype)+"&fwyt="+escape(fwyt)+price+"&itype="+escape(itype)+"&info="+escape(info));
}

function checkSearchLPMCData()
{
	if(o("txtLPMC").value=="" || o("txtLPMC").value=="请输入楼盘名称" || o("txtLPMC").value.lenght==0)
	{
		alert("请输入楼盘名称!");
		return false;
	}
	else
	{
	     var str=o("txtLPMC").value;
	     window.open("http://lpzl.haofz.com/lpzl/lpWzInfo.aspx?z=wzsearch&name="+escape(str),"_blank"); 
	}
	return true;
}
