// JavaScript Documentvar CityNameFR = new Array ("PARIS");var CityValueFR = new Array ("PAR");var PropertyNamePAR = new Array ("Hotel de la Sorbonne","Hotel des Grands Hommes","Hotel du Pantheon","Hotel Eiffel Park","Hotel Ferrandi","Hotel le Jardin de l'Odeon","Tournefort-Mouffetard");var PropertyValuePAR = new Array ("1001","1015","1016","1018","7113","1017","5448");        function fillcity( formulaire, country ) {        newcountry = country.replace(/ /,'');        if ( country.length == 0 ) {            formulaire.city.length = 1;            formulaire.city.options[0] = new Option("[Show all cities/towns]");            formulaire.city.options[0].value = '';                      formulaire.property.length = 1;            formulaire.property.options[0] = new Option("[Show all properties]");            formulaire.property.options[0].value = '';                        return;          }          newOptions = eval('CityName'+newcountry);          newOptionsvalue = eval('CityValue'+newcountry);          formulaire.city.length = 1;          formulaire.city.options[0] = new Option("[Show all cities/towns]");          formulaire.city.options[0].value = '';          formulaire.city.options[0].selected = true;                              formulaire.property.length = 1;          formulaire.property.options[0] = new Option("[Show all properties]");          formulaire.property.options[0].value = '';          formulaire.property.options[0].selected = true;                    for ( i=0; i<newOptions.length; i++ ) {            formulaire.city.length=i+1;            thisEntry = newOptions[i];            newOption = new Option( thisEntry );            newOption.value = newOptionsvalue[i]            formulaire.city.options[i+1] = newOption;          }                  }                function fillproperty( formulaire, city ) {        newcity = city.replace(/ /,'');        if ( city.length == 0 ) {            formulaire.property.length = 1;            formulaire.property.options[0] = new Option("[Show all properties]");            formulaire.property.options[0].value = '';                        return;          }          newOptions = eval('PropertyName'+newcity);          newOptionsvalue = eval('PropertyValue'+newcity);                    formulaire.property.length = 1;          formulaire.property.options[0] = new Option("[Show all properties]");          formulaire.property.options[0].value = '';          formulaire.property.options[0].selected = true;                                        for ( i=0; i<newOptions.length; i++ ) {            formulaire.property.length=i+1;            thisEntry = newOptions[i];            newOption = new Option( thisEntry );            newOption.value = newOptionsvalue[i]            formulaire.property.options[i+1] = newOption;                      }                  }                function popopenurl(url) {        windowprops = "height=500,width=600,location=no,scrollbars=no,menubars=no,toolbars=no,resizable=no";        window.open(url, "Popup", windowprops);        }        function popopenurlscroll(url) {        windowprops = "height=500,width=600,location=no,scrollbars=yes,menubars=no,toolbars=no,resizable=no";        window.open(url, "Popup", windowprops);        }