/*
SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/

var nbimage= 40;
var width;
var height;
var url;
var alte;
function banniere()
{
numimage= Math.round(Math.random()*(nbimage-1)+1);
if (numimage <= 10)
{
gotosite = "";
url = "Img_css/index1.jpg";
alte = "";
}
if (numimage > 10 && numimage <= 20)
{
gotosite = "";
url = "Img_css/index2.jpg";
alte = "";
}
if (numimage > 20 && numimage <= 30)
{
gotosite = "";
url = "Img_css/index3.jpg";
alte = "";
}
if (numimage > 30 && numimage <= 40)
{
gotosite = "";
url = " Img_css/index4.jpg";
alte = "";
}
if (numimage > 40)
{
gotosite = "";
url = "Img_css/index5.jpg";
alte = "";
}
if(gotosite != "")
	{
	document.write ('<A HREF="' + gotosite + '">');	
	}
document.write('<IMG SRC="' + url + '" ALT="' + alte + '" BORDER=0>')
if(gotosite != "")
	{
	document.write('</A>')
	}
}
