window.onload=function(){MM_resize(attivo);self.focus()};

var attivo = 'testo';

function MM_resize() { //v6.0
  var i,args=MM_resize.arguments;
  var myArray = new Array(
  		"testo",
  "nullo"
  );
  for (i=0; i<(myArray.length); i+=1){
  	if(myArray[i] != "nullo")
  	{	nascosto(myArray[i]); }
  }
    visibile(args[0]);
  }
  function visibile(id) { 
//document.getElementById(id).style.overflow = 'visible';
document.getElementById(id).style.visibility = 'visible';
  }
    function nascosto(id) { //v6.0
//document.getElementById(id).style.overflow = 'hidden';
document.getElementById(id).style.visibility = 'hidden';
  } 
