var nbimage= 30;
var width;
var height;
var url;
var alte;
function banniere()
{
numimage= Math.round(Math.random()*(nbimage-1)+1);
if (numimage <= 10)
{
gotosite = "";
url = "http://www.biotopcanada.com/apropos.jpg";
alte = "Biotop Canada";
}
if (numimage > 10 && numimage <= 20)
{
gotosite = "";
url = "http://biotopcanada.com/garantie.jpg";
alte = "Biotop Canada";
}
if (numimage > 20)
{
gotosite = "";
url = "http://biotopcanada.com/distributeurs.jpg";
alte = "Biotop Canada";
}
if(gotosite != "")
	{
	document.write ('<A HREF="' + gotosite + '">');	
	}
document.write('<IMG SRC="' + url + '" ALT="' + alte + '" BORDER=0>')
if(gotosite != "")
	{
	document.write('</A>')
	}
}
