function submitSearch()
{
    var form = document.searchForm;
    var contin = true;
    
    var styp = form.styp.value;    
    
    if (styp == "AD")
    {
        var adCountry=document.getElementById("adCountryID").value;
        document.searchForm.adCountry.value = adCountry;  
        var adStreet=document.getElementById("adStreetID").value;
        document.searchForm.adStreet.value = adStreet;
        var adCity=document.getElementById("adCityID").value;
        document.searchForm.adCity.value = adCity;                    
        
           }
            if (contin)
    {
        document.body.style.cursor = "wait";
        
        form.action = "http://www.terraserver.com/search.asp";
        form.submit();
    }
}