// JavaScript Document
var nbimage= 100;
var width;
var height;
var url;
var alte;
function banniere()
{
numimage= Math.round(Math.random()*(nbimage-1)+1);
if (numimage <= 10)
{
gotosite = "";
url = "../img/headtitle01.jpg";
alte = "";
}
if (numimage > 10 && numimage <= 20)
{
gotosite = "";
url = "../img/headtitle02.jpg";
alte = "";
}
if (numimage > 20 && numimage <= 30)
{
gotosite = "";
url = "../img/headtitle03.jpg";
alte = "";
}
if (numimage > 30 && numimage <= 40)
{
gotosite = "";
url = "../img/headtitle04.jpg";
alte = "";
}
if (numimage > 40 && numimage <= 50)
{
gotosite = "";
url = "../img/headtitle05.jpg";
alte = "";
}
if (numimage > 50 && numimage <= 60)
{
gotosite = "";
url = "../img/headtitle06.jpg";
alte = "";
}
if (numimage > 60 && numimage <= 70)
{
gotosite = "";
url = "../img/headtitle07.jpg";
alte = "";
}
if (numimage > 70 && numimage <= 80)
{
gotosite = "";
url = "../img/headtitle08.jpg";
alte = "";
}
if (numimage > 80 && numimage <= 90)
{
gotosite = "";
url = "../img/headtitle09.jpg";
alte = "";
}
if (numimage > 90)
{
gotosite = "";
url = "../img/headtitle10.jpg";
alte = "";
}
if(gotosite != "")
	{
	document.write ('<A HREF="' + gotosite + '">');	
	}
document.write('<IMG SRC="' + url + '" ALT="' + alte + '" BORDER=0>')
if(gotosite != "")
	{
	document.write('</A>')
	}
}
