// JavaScript Document
/*function creatediv() {
	querystring = location.search;
	currentPage = document.location.pathname;

	if (currentPage ==  '/index.asp' && querystring == '' ){
   var newdiv = document.createElement("div");
   newdiv.setAttribute('id', 'natale');
   var bodyRef = document.getElementsByTagName("body").item(0);

  bodyRef.appendChild(newdiv);
   newdiv.innerHTML = '<img src="../natale/bigliettoNatale08.jpg" width="862" height="579" border="0" usemap="#Mapnatale"><map name="Mapnatale"><area shape="rect" coords="762,3,862,43" href="javascript:chiudiNatale();"></map>';
	}
}
  function ApriImmagini(file)
    {
  
      var prop = "top=100, left=100"; // Altre proprietà... eccetto width ed height!
      window.open(file, null, prop);
    }

function chiudiNatale(){
	document.getElementById('natale').style.visibility="hidden"; 
	}
	
function apriNatale(){
	var finestra = document.getElementById("natale");
	finestra.style.visibility="visible"; 
	scrollTo(0,0);
	
	
	}
*/
