// JavaScript Document

/* APRI CHIUDI DIV HOME PAGE */
function abilitaDivHome(idDivOpen, divTotal)
{
		for (i = 1; i <= divTotal; i++)
		{
			document.getElementById('home'+i).style.display='none';
			document.getElementById('pulsanteHome'+i).style.background='url(img/sf_homepage.png)';
		}

		document.getElementById('home'+idDivOpen).style.display='block';
		document.getElementById('pulsanteHome'+idDivOpen).style.background='url(img/sf_homepageR.png)';
}
/* FINE APRI CHIUDI DIV HOME PAGE */

//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 new_window(url)
{ 
link = window.open(url,"newsletter","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=650,height=370,left=0,top=0"); 
link.focus();
}

function new_window_contatti(url)
{ 
link = window.open(url,"contatti","toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=0,resizable=0,width=840,height=470,left=0,top=0"); 
link.focus();
}

//FUNZIONE OPENWIN PER FOTO
function openWin(content,w,h,isscroll,isresize) { //pagina, larghezza, altezza, se-scrollabile, se-ridimensionabile
	finestra=window.open(content,'zoom','scrollbars=' + isscroll + ',resizable=' + isresize + ',width=' + w + ',height=' + h + ',status=no,location=no,toolbar=no');
	finestra.focus();
}

