// JavaScript Document

//RICHIEDI PROPONI IMMOBILI ABILITA' CAMPI
function abilitaCampi(valore)
{
    if (valore == "1")
    {
  		document.getElementById('residenziali').style.display = "block";
  		document.getElementById('commerciali').style.display = "none";
    }
    else if (valore == "3")
    {
  		document.getElementById('residenziali').style.display = "none";
  		document.getElementById('commerciali').style.display = "block";
    }
    else
    {
  		document.getElementById('residenziali').style.display = "none";
  		document.getElementById('commerciali').style.display = "none";
    }
}

//FUNZIONE POPUP
function window_scheda(url)
{
  	if (window.innerWidth)
  		iw = window.innerWidth;
  	else if (document.documentElement && document.documentElement.clientWidth)
  		iw = document.documentElement.clientWidth;
  	else if (document.body)
  		iw = document.body.clientWidth;
	
		varwidth  = 930;
		varheight = 550;
		varleft   = (iw-varwidth)/2;
		vartop    = 100;
	
link = window.open(url,"scheda","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=0,width="+varwidth+",height="+varheight+",left="+varleft+",top="+vartop); 
link.focus();
}

