<!-- Main 
function banners()
{

// Перечисляем ссылки и соответствующие им картинки.
// Здесь их 6, но количество может быть любым.


// this[1]="http://www.orexca.com/cd.shtml";
// this[2]="http://www.orexca.com/img/cd-eng.gif";

this[1]="http://www.orexca.com/combined_central_asia_tours.shtml";
this[2]="http://www.orexca.com/images/banners/banner5.gif";

this[3]="http://www.orexca.com/contacts.php";
this[4]="http://www.orexca.com/images/banners/advertising_eng.jpg";

this[5]="http://www.orexca.com/centralasia.php";
this[6]="http://www.orexca.com/images/banners/silkroad-en.gif";

this[7]="http://www.orexca.com/historical_tours.shtml";
this[8]="http://www.orexca.com/images/banners/uzbekistan_tours.gif";

this[9]="http://www.kazakhstan.orexca.com/tours_kazakhstan.shtml";
this[10]="http://www.orexca.com/images/banners/kazakhstan_tours.gif";

this[11]="http://www.orexca.com/uzbekistan_india_tour1.shtml";
this[12]="http://www.orexca.com/images/banners/banner_babur.swf";

this[13]="http://www.orexca.com/scheduled_tour.shtml";
this[14]="http://www.orexca.com/images/banners/scheduled_tour.swf";

this[15]="http://www.orexca.com/tours_uzbekistan.shtml";
this[16]="http://www.orexca.com/images/banners/uzbektur_eng.gif";
// Осуществляем случайный выбор баннера с привязанной
// и нему ссылкой (не правда ли, простой механизм?) и пишем
// соответствующий фрагмент HTML-кода. Интервал, в котором 
// выбирается переменная j, должен соответствовать общему 
// количеству баннеров.

if ((navigator.appName == "Netscape") && (parseInt(navigator.appVersion.substring(0,1)) < 2)) { return(' '); }
var j=(new Date()).getSeconds() % 8;
document.write('<a href=' + this[2*j+1] + '><img src=' + this[2*j+2] + ' border=1 width=468 height=60  style="border: 1 solid #682f24"></a>');
return(' ');
} 
// -->
