<!--  Advanced Search  -->
<!-- Begin
var noArray =  new Array("('select city','',true,true)",
"('---------------------------------------')");
var australiaArray =  new Array("('select city','',true,true)",
"('---------------------------------------')",
"('Melbourne')",
"('Sydney')");
var austriaArray =  new Array("('select city','',true,true)",
"('---------------------------------------')",
"('Innsbruck')",
"('Salzburg')",
"('Wien')");
var britainArray =  new Array("('select city','',true,true)",
"('---------------------------------------')",
"('Belfast')",
"('Chesterfield')",
"('Edinburgh')",
"('London')");
var franceArray =  new Array("('select city','',true,true)",
"('---------------------------------------')",
"('Lyon')",
"('Marseille')",
"('Nimes')",
"('Paris')",
"('Toulouse')");
var germanyArray =  new Array("('select city','',true,true)",
"('---------------------------------------')",
"('Amrum')",
"('Augsburg')",
"('Berlin')",
"('Bochum')",
"('Bonn')",
"('Braunschweig')",
"('Celle')",
"('Dortmund')",
"('Dresden')",
"('Duisburg')",
"('Düsseldorf')",
"('Essen')",
"('Frankfurt')",
"('Freiburg')",
"('Halle')",
"('Hamburg')",
"('Hannover')",
"('Hildesheim')",
"('Kampen')",
"('Keitum')",
"('Köln')",
"('Krefeld')",
"('Leipzig')",
"('List')",
"('Mainz')",
"('Mülheim')",
"('München')",
"('Neuss')",
"('Niebüll')",
"('Stuttgart')",
"('Westerland')",
"('Wiesbaden')");
var indonesiaArray =  new Array("('select city','',true,true)",
"('---------------------------------------')",
"('Bali')",
"('Bandung')",
"('Jakarta')",
"('Makassar')");
var icelandArray =  new Array("('select city','',true,true)",
"('---------------------------------------')",
"('')");
var italyArray =  new Array("('select city','',true,true)",
"('---------------------------------------')",
"('Roma')");
var swissArray =  new Array("('select city','',true,true)",
"('---------------------------------------')",
"('Bern')",
"('Zürich')");


function populateCity(inForm,selected) {
var selectedArray = eval(selected + "Array");
while (selectedArray.length < inForm.city.options.length) {
inForm.city.options[(inForm.city.options.length - 1)] = null;
}
for (var i=0; i < selectedArray.length; i++) {
eval("inForm.city.options[i]=" + "new Option" + selectedArray[i]);
}
if (inForm.region.options[0].value == '') {
inForm.region.options[0]= null;
if ( navigator.appName == 'Netscape') {
if (parseInt(navigator.appVersion) < 4) {
window.history.go(0);
}
else {   	
if (navigator.platform == 'Win32' || navigator.platform == 'Win16') {
window.history.go(0);
            }
         }
      }
   }
}
function populateUSstate(inForm,selected) {  
var stateArray =  new Array("('Select State','',true,true)",
"('Wyoming')");
if (selected == 'USA') {
for (var i=0; i < stateArray.length; i++) {
eval("inForm.city.options[i]=" + "new Option" + stateArray[i]);
}
if ( navigator.appName == 'Netscape') {
if (parseInt(navigator.appVersion) < 4) {
window.history.go(0)
}
else {    	
if (navigator.platform == 'Win32' || navigator.platform == 'Win16') {
window.history.go(0)
         }
      }
   }
}
else {
}
 
// if (selected == 'Other') { 
// newCity = "";
// while (newCity == ""){
// newCity=prompt ("Please enter the name of your city.", "");
// }
// if (newCity != null) {
// inForm.city.options[(inForm.city.options.length-1)]=new Option(newCity,newCity,true,true);
// inForm.city.options[inForm.city.options.length]=new Option('Other, not listed','Other');
//    }
// }


if(inForm.city.options[0].text == 'select city') {
inForm.city.options[0]= null;
   }
}
// End -->