   MOTO_DOM = (document.getElementById) ? true : false;
   MOTO_NS4 = (document.layers) ? true : false;
    MOTO_IE = (document.all) ? true : false;
   MOTO_IE4 = MOTO_IE && !MOTO_DOM;
   MOTO_IE5 = MOTO_IE && MOTO_DOM;
   MOTO_Mac = (navigator.appVersion.indexOf("Mac") != -1);
  MOTO_IE4M = MOTO_IE4 && MOTO_Mac;
  MOTO_IE5M = MOTO_IE5 && MOTO_Mac;


function MostraCella() {

if(document.body) {
var x=(document.body.clientWidth-230)/2;
var y=(document.body.clientHeight-95)/2;
} else {
var x = 285;
var y = 218;
}

document.open();
document.write("<style TYPE=\"text/css\">");
document.write("#themenuone{position:absolute;left:"+x+"px;top:"+y+"px;}");
document.write("</style>");
document.write("<DIV ID=themenuone style=\"width: 230 px; height: 95 px ; background-color: #F3F3F3; layer-background-color: #F3F3F3; z-index: 1; visibility: visible; border: 0px  \">");
document.write("<table border=0 cellpadding=6 cellspacing=1 width=230 height=95 class=forumline>");
document.write("<TR><TD class=Head align=center>Elaborazione in corso<br><br>attendere...</TD></TR>");
document.write("</table>");
document.write("</DIV>");

setTimeout("ShowCell()",500);
}

function Mostra2Cella() {
  setTimeout("ShowCell()",500);
}

function NascondiCella() 
{
setTimeout("HideCell()",500);
}


function ShowCell()
  {
            if (MOTO_DOM)  {window.document.getElementById('themenuone').style.visibility='visible';  }
            else if (MOTO_NS4) 
                   {window.document.layers['themenuone'].visibility='visible';  }
            else
                  {document.all['themenuone'].style.visibility='visible';  } 
  }

function HideCell()
  {          
           
             if (MOTO_DOM)  {window.document.getElementById('themenuone').style.visibility='hidden';  }
             else if (MOTO_NS4) 
                   {window.document.layers['themenuone'].visibility='hide';  }
            else
                  {document.all['themenuone'].style.visibility='hidden';  } 
  }
if (MOTO_IE4 && !MOTO_Mac)  { window.onLoad = setTimeout("HideCell()",2000);  } 

