  var loadhtpl=""
  var win_guida = null
  var GA_TIMEOUT = 5000


  function apri_guida(file_indice, form1, nome_finestra) {
    if ((win_guida != null) && ! win_guida.closed) {
      win_guida.focus()
      return
    }

    if (typeof nome_finestra == "undefined")
      nome_finestra = "guida_quasar"

    var w = 670
    if (screen.width > 800)
      w = 950 
    var h = 550 

    win_guida = window.open("", nome_finestra, "width=" + w + ", height=" + h + ", menubar=0, resizable=1")
    var f = null
    if (typeof form1 != "undefined")
      f = form1
    else
      f = document.form1
    if ((f == null) || (typeof f == "undefined")) {
      alert("IMPOSSIBILE ACCEDERE ALLA GUIDA.")
      return
    }
    f.target = win_guida.name
    f.module.value = "progetti"
    f.op.value = "leggiContenutoFile"
    f.nomefile.value = file_indice
    f.htpl.value = "guida/guida.htpl"
    f.submit()    
  } 


  function hideg() {
    var item = document.getElementById('bguida')
    if (item != null)
      item.style.display = 'none'
  }


  function guidanimata() {
    setTimeout("hideg()", GA_TIMEOUT)  
  }


  function ferma_guida_animata(marrone) {
    if (marrone)
      var img = "/images/guidam.gif"
    else
      var img = "/images/guida.gif"
    setTimeout("non_animata('" + img + "')", GA_TIMEOUT)
  }


  function non_animata(img) {
    document.getElementById("bguida").src = img 
  }

