
function Init()	{
	document.getElementById('div2').innerHTML = document.getElementById('div1').innerHTML;
	document.getElementById('div1').style.position = "absolute";
	document.getElementById('div1').style.visibility = "hidden";
	document.getElementById('div1').style.top = -100;
	document.getElementById('div1').style.left = -100;	
}

function Inita()	{
	document.getElementById('div4').innerHTML = document.getElementById('div3').innerHTML;
	document.getElementById('div3').style.position = "absolute";
	document.getElementById('div3').style.visibility = "hidden";
	document.getElementById('div3').style.top = -100;
	document.getElementById('div3').style.left = -100;
	
}

function LargePics(img,title2){
  foto1= new Image();
  foto1.src=(img);
  LargePics2(img,title2);
}
function LargePics2(img,title2){
  if((foto1.width!=0)&&(foto1.height!=0)){
    LargePics3(img,title2);
  }
  else{
    funzione="LargePics2('"+img+"','"+title2+"')";
    intervallo=setTimeout(funzione,20);
  }
}
function LargePics3(img,title2){
  largh=foto1.width+40;
  altez=foto1.height+200;
  stringa="width="+largh+",height="+altez;
  newWind=window.open("","",stringa);
		 output="<HTML><HEAD><title>"+title2+"</title></HEAD><BODY><CENTER>"
 		 output+="<FONT FACE='Arial' SIZE='+1' COLOR='black'><B>"+title2+"</B></FONT><BR>"
		 	output+="<TABLE BORDER='2'><TR><TD>"
		 output+="<IMG SRC='"+img+"'>"
		 	output+="</TD></TR></TABLE>"
		 output+="<FORM><TABLE BORDER='0'><TR><TD><INPUT TYPE='button' VALUE='Close' onClick='self.close()'>"
		 output+="</TD></TR></TABLE></FORM></CENTER></BODY></HTML>"
		 newWind.document.write(output);
		 newWind.document.close();
 		 newWind.focus();
}

function LargePics4(URL) { 
  window.open(URL,'','width=400,height=400');}
  
  
