// JavaScript Document
/*function dimensiona_img(){
//alert("III");
if (document.miania){
aa=document.miania.width;
bb=document.miania.height;
alert (aa);
alert (bb);
		if (aa>230 || bb>270){
		// resizo
					if (aa>230 && bb>270){
					// resizo in alt e largh
					cc=aa/bb;
					alert("c="+cc);
					dd=230/cc;
					document.miania.width=230;
						if(dd>270){
						document.miania.height=270;
						}else{
						document.miania.height=dd;
						}
					}
					if(aa>230 && bb<=270){
					// resizo solo in largh
					cc=aa/bb;
					alert("c="+cc);
					dd=230/cc;
					document.miania.width=230;
					document.miania.height=dd;
					}
					if(aa<=230 && bb>270){
					// resizo solo in alt
					cc=aa/bb;
					alert("c="+cc);
					dd=230*cc;
						if(dd>230){
									document.miania.width=230;
									document.miania.height=270;
									}else{
									document.miania.width=dd;
									document.miania.height=270;
									}
					}
		
		}
}
}
function dimensiona_img_logo_ag(){
//alert("III");
if (document.logo_agenzia){
aal=document.logo_agenzia.width;
bbl=document.logo_agenzia.height;
//alert ("agw="+aal);
//alert ("agh"+bbl);
		if (aal>230 || bbl>80){
		// resizo
					if (aal>230 && bbl>80){
					// resizo in alt e largh
					ccl=aal/bbl;
					//alert("c="+ccl);
					ddl=230/ccl;
					document.logo_agenzia.width=230;
						if(ddl>80){
						document.logo_agenzia.height=ddl;
						}else{
						document.logo_agenzia.height=ddl;
						}
					}
					if(aal>230 && bbl<=80){
					// resizo solo in largh
					ccl=aal/bbl;
					//alert("c="+ccl);
					ddl=230/ccl;
					document.logo_agenzia.width=230;
					document.logo_agenzia.height=ddl;
					}
					if(aal<=230 && bbl>80){
					// resizo solo in alt
					ccl=aal/bbl;
					//alert("c="+ccl);
					ddl=230*cc;
						if(ddl>230){
									document.logo_agenzia.width=230;
									document.logo_agenzia.height=80;
									}else{
									document.logo_agenzia.width=ddl;
									document.logo_agenzia.height=80;
									}
					}
		
		}
}
}
function dimensiona_img_logo_ag_var(nome_img){
alert("III="+nome_img);

if(document.getElementById(nome_img)){
x_aal=document.getElementById(nome_img).width;
x_bbl=document.getElementById(nome_img).height;
alert ("agw="+x_aal);
alert ("agh"+x_bbl);
		if (x_aal>230 || x_bbl>80){
		// resizo
					if (x_aal>230 && x_bbl>80){
					// resizo in alt e largh
					x_ccl=x_aal/x_bbl;
					//alert("c="+ccl);
					x_ddl=230/x_ccl;
					document.getElementById(nome_img).width=230;
						if(x_ddl>80){
						document.getElementById(nome_img).height=x_ddl;
						}else{
						document.getElementById(nome_img).height=x_ddl;
						}
					}
					if(x_aal>230 && x_bbl<=80){
					// resizo solo in largh
					x_ccl=x_aal/x_bbl;
					//alert("c="+ccl);
					x_ddl=230/x_ccl;
					document.getElementById(nome_img).width=230;
					document.getElementById(nome_img).height=x_ddl;
					}
					if(x_aal<=230 && x_bbl>80){
					// resizo solo in alt
					x_ccl=x_aal/x_bbl;
					//alert("c="+ccl);
					x_ddl=230*x_cc;
						if(x_ddl>230){
									document.getElementById(nome_img).width=230;
									document.getElementById(nome_img).height=80;
									}else{
									document.getElementById(nome_img).width=x_ddl;
									document.getElementById(nome_img).height=80;
									}
					}
		
		}
}
}
*/