<!--
function insertImg(id,path,alt)
{
  var img='<img src="'+path+'" alt="'+alt+'" />';
  if(parseInt(document.getElementById("imgBox").style.width)!=300)
  	document.getElementById("imgBox").style.width="300px";
  document.getElementById(id).innerHTML=img;
}

function sendForm(nome,azione,parametri)
{
  document.forms[nome].action=azione+parametri;
  document.forms[nome].submit();
}


function imgBig(lang,path,alt,x,y)
{
  if(lang="it")
	  var chiusura="[ chiudi ]";
	else if(lang="en")
	  var chiusura="[ close ]";

  var marginPopup=20;
  var windowH=y+(marginPopup*3);
  var windowW=x+(marginPopup*2);
  var Ydest=(screen.availHeight/2)-(windowH/2)-10;
  var Xdest=(screen.availWidth/2)-(windowW/2);
  var s = "left="+Xdest+",top="+Ydest+",width="+windowW+",height="+windowH;
	var popup=window.open('','popup',s);
	popup.document.open();
	alt=alt.replace(/\*/g,"'");
	popup.document.write('<html><head><title>Giglio Hotel</title><style>@import url(/templates/popup.css);</style></head>');
	popup.document.write('<body><img src="/img/'+path+'.jpg" alt="'+alt+'" />');
	popup.document.write('<body><div>'+alt+'</div><div class="close">[ <a href="javascript:window.close();">chiudi</a> ]</div></body></html>');
	popup.document.close();
}
//-->
