/*
SCRIPT EDITE SUR L'EDITEUR JAVASCRIPT
http://www.editeurjavascript.com
*/

var nbimage= 120;
var width;
var height;
var url;
var alte;
numimage= Math.round(Math.random()*(nbimage-1)+1);

if (numimage <= 10)
{
gotosite = "../../pages/pub.html";
width = 100;
height = 60;
url = "../../pub/pub.gif";
alte = "Pub";
}

if (numimage > 10 && numimage <= 30)
{
gotosite = "../../sites/assurancesll/index.html";
width = 100;
height = 60;
url = "../../pub/assurancesll.gif";
alte = "assurances ll";
}

if (numimage > 30 && numimage <= 60)
{
gotosite = "../../sites/tonypizza/index.html";
width = 100;
height = 60;
url = "../../pub/tonypizza.gif";
alte = "tony pizza";
}

if (numimage > 60 && numimage <= 90)
{
gotosite = "../../sites/pain/index.html";
width = 100;
height = 60;
url = "../../pub/pain.gif";
alte = "Carrefour du Pain";
}

if (numimage > 90 && numimage <= 110)
{
gotosite = "http://www.holidaybycar.com";
width = 100;
height = 60;
url = "../../pub/holiday2.gif";
alte = "Holiday by car";
}

if (numimage > 110)
{
gotosite = "http://www.walcom.fr";
width = 100;
height = 60;
url = "../../pub/walcom.gif";
alte = "walcom";
}
document.write ('<A HREF="' + gotosite + '" TARGET="_blank"><IMG SRC="' + url + '" WIDTH=' + width + ' HEIGHT=' + height + ' ALT="' + alte + '" BORDER=1></A>')
