/**
 * Antonio - Ridimensionamento Browser per sfondo cliccabile
 * 
 * @version		1.1
 * 
 * @license		TINCO
 * @author		Antonio Cangemi 
 * @client		GPONE
 * @copyright	Author
 */

function ridimensionamento()
{
   var width = document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth;
   var height = document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientHeight:document.body.clientHeight;
   if(width>979)
   {
document.getElementById("sfondoleft").style.width = ((width-982)/2)+"px";
document.getElementById("sfondoright").style.width = ((width-982)/2)+"px";
   }
} 

