function com(whichLayer)
{
if (document.getElementById)
{
var style2 = document.getElementById(whichLayer).style;
if (style2.display != "")
{
style2.display = style2.display? "":"block";
}
else
{
style2.display = style2.display? "":"none";
}

}
else if (document.all)
{
var style2 = document.all[whichLayer].style;
if (style2.display != "")
{
style2.display = style2.display? "":"block";
}
else
{
style2.display = style2.display? "":"none";
}

}
else if (document.layers)
{
var style2 = document.layers[whichLayer].style;
if (style2.display != "")
{
style2.display = style2.display? "":"block";
}
else
{
style2.display = style2.display? "":"none";
}}}
function showsup()
	{
	if( document.getElementById )
		{
		document.getElementById("pub").style.width = larg;
		document.getElementById("pub").style.height = haut;
		document.getElementById("pub").innerHTML = html_haut+html_mil+html_bas;
		setTimeout("closeSup()",1500);
		}
		else if (document.all)
		{		
		document.getElementById("pub").style.width = larg;
		document.getElementById("pub").style.height = haut;
		document.getElementById("pub").innerHTML = html_haut+html_mil+html_bas;
		setTimeout("closeSup()",1500);
		}
		else if (document.layers)
		{
		document.getElementById("pub").style.width = larg;
		document.getElementById("pub").style.height = haut;
		document.getElementById("pub").innerHTML = html_haut+html_mil+html_bas;
		setTimeout("closeSup()",1500);
		}
	}
function closeSup()
	{
	if(document.getElementById)
		{
		document.getElementById("pub").style.width = 1;
		document.getElementById("pub").style.height = 1;
		document.getElementById("pub").innerHTML = '';
		}
	}
if(document.all)
	{
	larg = document.body.clientWidth;
	haut = document.body.clientHeight;
	}
else
	{
	larg = screen.width;
	haut = screen.height;
	}
html_haut = "<TABLE WIDTH="+larg+" HEIGHT="+haut+"><TR><TD ALIGN=center BACKGROUND=http://www.expert-comptable-jei.fr/jeune-entreprise-innovante/i/grille.gif>";
html_bas = "</TD></TR></TABLE>";
posX = (larg/2)-(haut/2) ;
html_mil = "<div style=\"position:absolute;top:200px;left:"+posX+"px;width:380px;height:220px;border:1px solid #000;background-image:url('http://www.expert-comptable-jei.fr/jeune-entreprise-innovante/i/reflexion.jpg');background-position:right top;background-repeat:no-repeat;background-color:#96959D;color:#fff;\"><form method=\"post\"><a href=\"#\" onclick=\"closeSup();\" style=\"display:block;text-align:right;color:white;\">Fermer X</a><p><br><p><br><p style=\"font-size:12pt;padding-top:70px;font-weight:bold;\">TRAITEMENT EN COURS<br><img src=\"http://www.expert-comptable-jei.fr/jeune-entreprise-innovante/i/attente-flash.gif\"></p></div>";
//window.onload = showsup;