function MinimumFontSize() {
 var XDivElement = document.getElementById('menu');
  if ((XDivElement.offsetHeight > "60")||(document.body.clientWidth<641)) {
    tags = new Array ('contenuti', 'link', 'separatore', 'separatore2','principali','correlati');
    for (j = 0; j < tags.length; j ++) {
      var getbody = document.getElementById(tags[j]);
      if (getbody) { 
		getbody.style.styleFloat='none';
		getbody.style.display = 'block';
        getbody.style.width = '99%';
		getbody.style.margin = '0';
		getbody.style.clear = 'both';
      }
    }
  }
}