function openImmobileDetail( id ) {
  nyx_openScreenCenteredWindow( '../aspx/ImmobileDetailVideo.aspx?idImmobile=' + id, 'immobile_' + id, 680, 700 );
}

function openImmobileInsert() {
  nyx_openScreenCenteredWindow( '../aspx/ImmobileInsert.aspx', 'immobile_new', null, 700 );
}

function openRichiestaImmobileInsert() {
  nyx_openScreenCenteredWindow( '../aspx/RichiestaImmobileInsert.aspx', 'richiedi_immobile', null, 700 );
}

function openRichiestaValutazioneImmobileInsert() {
  nyx_openScreenCenteredWindow( '../aspx/RichiestaValutazioneImmobileInsert.aspx', 'richiedi_valutazione_immobile', null, 700 );
}

function openRicercaPersonaleInsert() {
  nyx_openScreenCenteredWindow( '../aspx/RicercaPersonaleInsert.aspx', 'ricerca_personale', null, 700 );
}

function openNuovaCostruzioneDetail( id ) {
  nyx_openScreenCenteredWindow( "../aspx/CantiereDetail.aspx?idCantiere=" + id, 'cantiere_' + id, null, 700 );
}

function maximizePhoto( virtualPath, width, height ) {
  nyx_openScreenCenteredWindow( "../aspx/immagineShow.aspx?path=" + escape( virtualPath ), '', height + 70, width + 15, true );
}

var t;
function showHideDivFiltri(flag)
{
  var chkForm = document.getElementById( "chkForm" );
  var divApplicaFiltroOp = document.getElementById( "divApplicaFiltroOp" );
  var divApplicaFiltro = document.getElementById( "divApplicaFiltro" );
  
  
  if( t != null )
    clearTimeout( t );
  
  
  if(flag != null && flag == 1 )
  {
    chkForm.value = 0;
    divApplicaFiltro.style.display = "none";
    divApplicaFiltroOp.style.display = "none";
  }
  else
  {
    if( chkForm.value == 0 )
    {
      divApplicaFiltro.style.display = "block";
      divApplicaFiltroOp.style.display = "block";
      chkForm.value = 1;
    
    }
    t = setTimeout("__doPostBack('lnkFind','')", 2000 );
  }
  
  
  
}