var nbimage= 20;
var width;
var height;
var url;
var alte;
function banniere()
{
numimage= Math.round(Math.random()*(nbimage-1)+1);
if (numimage <= 10)
{
gotosite = "/Site.php?page=pub";
url = "Mod/Pubs/Pub1.png";
alte = "Pub1";
}
if (numimage > 10)
{
gotosite = "http://erepublik.over-blog.com/";
url = "Mod/Pubs/Pub2.png";
alte = "pub2";
}
if(gotosite != "")
	{
	document.write ('<A HREF="' + gotosite + '">');	
	}
document.write('<IMG SRC="' + url + '" ALT="' + alte + '" BORDER=0>')
if(gotosite != "")
	{
	document.write('</A>')
	}
}
