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 valign=middle align=center>";
html_bas = "</td></tr></table>";

pub_html = "<table width=100% height=100%><tr><td align=center valign=middle>";
var a;
a = 1+Math.round(Math.random()*4);
if (a==1) pub_html += '<img src="../img/visite.gif"><br /><iframe src="../java/regie.html" width="468" height="60" frameborder="0" scrolling="no"></iframe>';
if (a==2) pub_html += '<img src="../img/visite.gif"><br /><iframe src="../java/regie.html" width="468" height="60" frameborder="0" scrolling="no"></iframe>';
if (a==3) pub_html += '<img src="../img/visite.gif"><br /><iframe src="../java/regie.html" width="468" height="60" frameborder="0" scrolling="no"></iframe>';
if (a==4) pub_html += '<img src="../img/visite.gif"><br /><iframe src="../java/regie.html" width="468" height="60" frameborder="0" scrolling="no"></iframe>';
if (a==5) pub_html += '<img src="../img/visite.gif"><br /><iframe src="../java/regie.html" width="468" height="60" frameborder="0" scrolling="no"></iframe>';

pub_html += "</td></tr></table>";
document.getElementById("pub").style.width= larg;
document.getElementById("pub").style.height= haut;
document.getElementById("pub").innerHTML = html_haut+pub_html+html_bas;
setTimeout("closeSup()",10000);

function closeSup()
	{
	if(document.getElementById)
		{
		document.getElementById("pub").style.width= 1;
		document.getElementById("pub").style.height= 1;
		document.getElementById("pub").innerHTML = '';
		}
	}