function showRowView() {
   $('.propertylistsingle').addClass("propertylistsingle_row");
   $('.propertylistsingle').removeClass("propertylistsingle");

   $('.propertylistphoto').addClass("propertylistphoto_row");
   $('.propertylistphoto').removeClass("propertylistphoto");

   $('.propertylistinfo').addClass("propertylistinfo_row");
   $('.propertylistinfo').removeClass("propertylistinfo");

   $('.propertylistphoto_tab').hide();
   $('.listdescription').show();
   $('#pl-vo-3').addClass("current");
   $('#pl-vo-2').removeClass("current");

}

function showGridView() {
   $('.propertylistsingle_row').addClass("propertylistsingle");
   $('.propertylistsingle_row').removeClass("propertylistsingle_row");

   $('.propertylistphoto_row').addClass("propertylistphoto");
   $('.propertylistphoto_row').removeClass("propertylistphoto_row");

   $('.propertylistinfo_row').addClass("propertylistinfo");
   $('.propertylistinfo_row').removeClass("propertylistinfo_row");

   $('.propertylistphoto_tab').show();
   $('.listdescription').hide();
   $('#pl-vo-2').addClass("current");
   $('#pl-vo-3').removeClass("current");

}

function showStuff(id) {
  document.getElementById(id).style.display = 'block';
}
function hideStuff(id) {
  document.getElementById(id).style.display = 'none';
}

function propertySearch() {
	var indice1 = document.search_form.propertytype.selectedIndex;
	var valor1 = document.search_form.propertytype.options[indice1].value;
	var indice2 = document.search_form.region.selectedIndex;
	var valor2 = document.search_form.region.options[indice2].value;
	
	var destino = valor2+valor1;
	document.location = destino;	
}

function resetForm() {
    document.search_form.propertytype.selectedIndex = 0;
    document.search_form.region.selectedIndex = 0;
}
