<!-- Расчет расстояний -->
function  click_distance(){
  var url = 'http://www.ruscargoservice.ru/distance/distance.php?simple=yes&bgcolor=FFFFFF&color1=66993&color2=333333&title=';
  var temp = document.distance.from_city.value;
  url += '&from_city=' + temp;  temp = document.distance.to_city.value; url += '&to_city=' + temp;
  if(document.distance.from_city.value == '' ||
    document.distance.to_city.value == '') {
    alert('Введите города между которыми нужно рассчитать растояние!');
  } else window.open(url, '', 'toolbar=0, location=0, directories=0, status=0, menubar=0, scrollbars=1, resizable=1, width=700, height=500');
  return false; }
<!-- /Расчет расстояний -->
