if (window.addEventListener)
	window.addEventListener("load", linea_verticale, false);
else if (window.attachEvent)
	window.attachEvent("onload", linea_verticale);
else if (document.all || document.getElementById)
	window.onload=linea_verticale;
			
function linea_verticale() {
	if (document.getElementById("blocco_main_dx") && document.getElementById("blocco_main"))	
	{
		h_destro=document.getElementById("blocco_main_dx").offsetHeight
		h_sinistro=document.getElementById("blocco_main").offsetHeight
		
		if(h_destro>=h_sinistro){
			document.getElementById("blocco_main_dx").style.width='305'
			document.getElementById("blocco_main_dx").style.borderLeft='1px dotted #DDDDDD'
			document.getElementById("blocco_main").style.borderRight='none'

		}
		else
		{
			document.getElementById("blocco_main_dx").style.width='305'
			document.getElementById("blocco_main").style.borderRight='1px dotted #DDDDDD'
			document.getElementById("blocco_main_dx").style.borderLeft='none'
		}
	}
}
