function newWindow(url, name, width, height) {
  
  if (document.all) {
    width += 20;
  }
  
  photoWindow = window.open(url, name,"location=no,directories=no,menubar=no,status=no,toolbar=no,scrollbars=yes,height=" +height+ ",width=" +width+ ",resizable=yes");
  photoWindow.resizeTo(width,height);
  photoWindow.focus();
  return false;
}

function togglePriceSelector() {
  propType = document.getElementById('propertyCategory');
  propPriceSale = document.getElementById('priceSelectorBuying');
  propPriceRent = document.getElementById('priceSelectorRenting');

  if(propType.options[propType.options.selectedIndex].value == null || propType.options[propType.options.selectedIndex].value == '1') {
    propPriceSale.style.display = 'block'; 
    propPriceRent.style.display = 'none';
  } else {
    propPriceRent.style.display = 'block';
    propPriceSale.style.display = 'none';
  }
}