
/*
	Show and hide sales and rental price dropdown based 
	on radio button selection
*/
 

function hideDiv(){
var tag = document.getElementsByTagName("div");
 for(x=0;x<tag.length; x++){
  if(tag[x].getAttribute('id').indexOf("choose_") != -1){
   tag[x].style.display = "none";
  }
 }
}
function view(id){
 if (id == '1'){
 		id2 = '2';
 } else {
 		id2 = '1'
 }
 document.getElementById('choose_' + id).style.display = "block";
 document.getElementById('choose_' + id2).style.display = "none";
 
}


function display_me (id){
	if(id == "lettings"){
		document.getElementById('choose_a2').style.visiblity = "visible";
		document.getElementById('choose_a1').style.visiblity = "hidden";
	}
	
	if(id == "sales") {
		document.getElementById('choose_a1').style.visiblity = "visible";
		document.getElementById('choose_a2').style.visiblity = "hidden";
	}
}