//Designed by Ray Rarey (rayr@accessus.net)//
//Visit http://users.accessus.net/~rayr/javascript/ for more scripts//
//Copyright (c) NuGen Web Productions//

image = new Array(3);
link = new Array(3);
image[0] = 'http://drogi.com/reklam2/1.gif'
image[1] = 'http://drogi.com/reklam2/2.gif'
image[2] = 'http://drogi.com/reklam2/3.gif'
image[3] = 'http://drogi.com/reklam2/4.gif'
image[4] = 'http://drogi.com/reklam2/5.gif'

link[0] = 'http://drogi.com/reklam2/1.html'
link[1] = 'http://drogi.com/reklam2/2.html'
link[2] = 'http://drogi.com/reklam2/3.html'
link[3] = 'http://drogi.com/reklam2/4.html'
link[4] = 'http://drogi.com/reklam2/5.html'


index = Math.floor(Math.random() * image.length);
document.write("<DL COMPACT=0>\n");
document.write("<A HREF="+link[index]+">");
document.write("<IMG SRC="+image[index]+" BORDER=0></A>");
document.write("</DL>\n");