function cambia(elemento,immagine,didascalia) {
  var div_img;//=document.getElementById("div_img_centro_hotel");
//  var div_img_nowc=document.getElementById("div_img_centro_hotel_noweb");
  var array_div=new Array("div_img_centro_hotel","div_img_centro_hotel_nowc_nopromo","div_img_centro_hotel_noprev","div_img_centro_hotel_noweb");
//  if(div_img==null) div_img=document.getElementById("div_img_centro_hotel_noweb");
  i=0;
  while((i<4)&&(div_img==null))//(for(i=0;i<4;i++)
  {
	 div_img=document.getElementById(array_div[i]);
	 i++;
  }
  div_img.style.visibility = 'visible';
  var img = document.getElementById(elemento);
  img.setAttribute("src", immagine);
  var testo_didascalia = document.getElementById("testo_didascalia");	
  testo_didascalia.innerHTML=didascalia;
  var image_object=new Image();
  image_object.src=immagine;
  if((image_object.width>495)&&(image_object.height>image_object.width))
  {
	  //img.width="495";
	  img.height=(image_object.height/image_object.width)*260;
  }else
  if((image_object.height>333)&&(image_object.height>image_object.width))
  {
	img.height=(image_object.height/image_object.width)*260;
  }
  else
  {
	img.height="330";
  }
}

function cambia_stazioni(elemento,immagine,didascalia) {
  var testo_didascalia = document.getElementById("didascalia_foto_stazione");	
  testo_didascalia.innerHTML=didascalia;
  var img = document.getElementById(elemento);
  img.setAttribute("src", immagine);
}


