function Set_Variabili() {
  // imopsta tutte le variabili

  dir_img = "http://www.ioeimmobili.it/images/ban_jpg/"
  ext_jpg = ".jpg"

  dir_html = "http://www.ioeimmobili.it/annunci/html/"
  ext_html = ".html"

  // GESTIONE PER ROLLOVER UTILIZZATO DA PROVE ANNUNCI (03)
  // crea gli oggetti immagine per rollover
  btn_affitto_act_on = new Image ( );
  btn_affitto_act_off = new Image ( );
  btn_affitto_act_on.src = "./images/btn_affitto_act_on.gif";
  btn_affitto_act_off.src = "./images/btn_affitto_act_off.gif";

  PREZZO_CARRELLO = 0  // totale carrello
  PREZZO_TIPO = 0    //selezione del tipo abbonamento
  PREZZO_FOTO = 0    //selezione # foto

  ARTICOLI_CARRELLO = ""      // stringa risultante dalle cmb
  ART_TIPO = ""      // tipo abbonamento selezionato
  ART_FOTO = ""      // foto selez.

  //#### stesse defininizioni in Set_VarJScript() di mia_lib_jscript.js
  //IOE = "1"
  //IOEIOE  = "024135" ////1
  //IOEIOE_ = "031425" //\\1

  //IOE = "2"
  //IOEIOE  = "5142630" ////2
  //IOEIOE_ = "6135204" //\\2

  //IOE = "3"
  //IOEIOE  = "9158260374" ////3
  //IOEIOE_ = "6147925830" //\\3

  IOE = "4"
  IOEIOE  = "9258160374" ////4
  IOEIOE_ = "6417925830" //\\4
  //########### AREA PAYPAL/SANDBOX ###########
  iNotifUrl = -1 // =-1 OK per accodamento della mia QueryString PassWord Condivisa
  iInv = -1      // =-1 inversione stringa  =0 nessuna inversione stringa
  iRipr = 0      // =-1 controriprova (ritorna originale) TEST  = 0 no controriprova
                 // in pratica serve per vedere che nonostante la codifica
                 // si riesce a ripresentare la stringa in modo originale
  iDbg = 0       // =-1 debug    =0 no dbg
  //###################################################################

  strBrowser=SetBrowser();
  intMioTip8 = false

}

function SetBrowser(){
  if (navigator.appVersion.indexOf("MSIE")!=-1)
    return "IE";
  else if(navigator.userAgent.indexOf("Firefox")!=-1)
    return "FF";
  else if(navigator.userAgent.indexOf("Chrome")!=-1)
    return "CH";
  else
    return "Altri";
}



