var nums = 14;
var imgs = new Array(nums);
var hrefs = new Array(nums);
var alts = new Array(nums);

if (Math.random() < 0.5)
  imgs[0] = "http://darkindustry.darkside.ru/pictures/banners/DI_banner_4.gif"
  else
  imgs[0] = "http://darkindustry.darkside.ru/pictures/banners/di_ban2003v3.gif";
imgs[1] = "http://darkindustry.darkside.ru/pictures/banners/iem_banner.gif";
imgs[2] = "http://dcos.narod.ru/smershb.gif";
imgs[3] = "http://members.lycos.co.uk/old_monks_saga/banner.gif";
imgs[4] = "http://zhb.radionoise.ru/zhbanner.gif";
imgs[5] = "http://darkindustry.darkside.ru/pictures/banners/erthad_banner.gif";
if (Math.random() < 0.5)
  imgs[6] = "http://music.wasteland.ru/banner.jpg"
  else
  imgs[6] = "http://music.wasteland.ru/banner2.jpg";
imgs[7] = "http://machine.radionoise.ru/banner.jpg";
imgs[8] = "http://atherisieren.kulichki.com/banners/ether-main-banner-001.jpg";
imgs[9] = "http://darkindustry.darkside.ru/pictures/b/solalteromskban.jpg";
imgs[10] = "http://www.coldgraey.com/banr/banr.jpg";
imgs[11] = "http://radiodrone.ru/rdbanner.gif";
imgs[12] = "http://approximation.ru/baner/baner.gif";
imgs[13] = "http://www.eternalpride.ru/rus/EP_ban.gif";

hrefs[0] = "http://darkindustry.darkside.ru";
hrefs[1] = "http://iem.nigilist.ru";
hrefs[2] = "http://dcos.narod.ru/";
hrefs[3] = "http://clik.to/oms";
hrefs[4] = "http://zhb.radionoise.ru/rus/news.html";
hrefs[5] = "http://erthad.da.ru";
hrefs[6] = "http://music.wasteland.ru";
hrefs[7] = "http://machine.radionoise.ru";
hrefs[8] = "http://ether.cjb.net";
hrefs[9] = "http://solater.sitecity.ru";
hrefs[10] = "http://www.coldgraey.com";
hrefs[11] = "http://radiodrone.ru";
hrefs[12] = "http://approximation.ru";
hrefs[13] = "http://www.eternalpride.ru/rus/";

alts[0] = "Dark Industry. Dark ambient, post-industrial, power electronics, noise";
alts[1] = "Независимая электронная музыка";
alts[2] = "Desolate Catacombs of SMERSH";
alts[3] = "Ukrainian Dark Syndicate official website";
alts[4] = "ZHELEZOBETON - industrial recordings";
alts[5] = "Erthad";
alts[6] = "Dark Ambient. Сайт иркутского проекта Necropolis";
alts[7] = "Машинное отделение";
alts[8]  = "Ether: Russian Industrial Scene: Sound Violence. Art/text/reviews/mailing-list/forum";
alts[9]  = "Сайт омской ritual/dark-folk группы Sol Ater";
alts[10]  = "Cold Graey. Лэйбл индустриальной направленности. Noise, ambient, power electronics, rythmic noise, electronics";
alts[11]  = "Radiodrone — вебзин индустриальной и экспериментальной музыки";
alts[12]  = "Проект «Постиндустриальное приближение». Аудио-визуальные компиляции на тему постиндустриального приближения";
alts[13]  = "Eternal Pride Productions";

var rnd = Math.random();
var irnd = Math.round(rnd * nums) - 1;
if (irnd < 0)
  irnd++;
var imgsrc = imgs[irnd];
var ahref = hrefs[irnd];
var alt = alts[irnd];

function prior() {
  irnd--;
  if (irnd < 0)
    irnd = nums - 1;
  document.myimg.src = imgs[irnd];
  document.myimg.alt = alts[irnd];
  document.myimg.title = alts[irnd];
}

function next() {
  irnd++;
  if (irnd >= nums)
    irnd = 0;
  document.myimg.src = imgs[irnd];
  document.myimg.alt = alts[irnd];
  document.myimg.title = alts[irnd];  
}

function hclick() {
  window.open(hrefs[irnd]);
}

document.write("<center><table border=0 cellspacing=0 cellpadding=0><tr><td colspan=3>");

document.write("<a name='myhref' href='javascript:hclick()'><img name='myimg' src='" + imgsrc + "' alt='" + "' title='" + alt + "' border=0 width=468 height=60 alt='Go to URL'></a>");

document.write("<tr align=center><td width=20%><a href='javascript:prior()' target='_self'><b><font size=1>PREVIOUS</b></a>");

document.write("<td width=60%> <a href='http://darkindustry.darkside.ru/riwr/index.htm' target='_self'><b><font size=1>Russian Industrial Web Ring</b></a>");

document.write("<td width=20%> <a href='javascript:next()' target='_self'><b><font size=1>NEXT</b></a></table>");

document.write("</center>")
