function createWindow(cUrl,cName,cFeatures) {
  var tstWin = window.open(cUrl,cName,cFeatures);
}

function CallSearch() {
var sAreas=""
var sNewLoc="";
var sPropType="";
var StartPrice="";
var EndPrice="";
var NewWin;


    sAreas=form1.SelArea.value;
    sPropType=form4.selType.value;
    StartPrice=form2.SelMinprice.value;
        EndPrice=form3.SelMaxprice.value;

//    NewWin=window.open("LoadingProperties.htm","LoadingPage","width=300,height=170");
//    children[children.length]=NewWin;
	
    sNewLoc="Results.php?Area=" + sAreas +"&StartPrice="+StartPrice+"&EndPrice="+EndPrice+"&PType="+sPropType;
    window.location=sNewLoc;

}
