<!-- Copyright by Kurt Dunzinger http://faq.united-web.at-->
timer=false
timer2=false
function show_it(id)
{
if(window.opera || (document.getElementById && !document.all))
document.getElementById(id).style.visibility = 'visible';
else if(document.all)
document.all[id].style.visibility = 'visible';
else if(document.layers)
document.layers[id].visibility = 'show';
}
function hide_it(id)
{
if(window.opera || (document.getElementById && !document.all))
document.getElementById(id).style.visibility = 'hidden';
else if(document.all)
document.all[id].style.visibility = 'hidden';
else if(document.layers)
document.layers[id].visibility = 'hide';
}

function clean()
{ 
 var i,cnt=clean.arguments; 
 for(i=0;i<cnt.length;i++)
 { 
   eval("hide_it('divMenu"+cnt[i]+"');"); 
 } 
} 

