<!--

function over(section) {
 if (goodBrowser) {
  imgOn = eval(section + "1.src");
  document[section].src = imgOn;
 }
}

function out(section) {
 if (section != current) {
  if (goodBrowser) {
   imgOff = eval(section + "0.src");
   document[section].src = imgOff;
  }
 }
}

if (document.images) {

 var i,j;
 var sections = new Array('dosie', 'timeline', 'infrastructure', 'experts', 'library', 'equipment', 'culture007', 'terrorism', 'spetsnaz', 'l01', 'l02', 'l03', 'l04', 'l05', 'l0', 'l06','is0','is1','is2','is3','is4');
 var onoff = new Array('0','1');
 for (i in sections) {
  for (j in onoff) {
   eval(sections[i] + j + ' = new Image();');
   eval(sections[i] + j + '.src = "/english/sys/i' + j + sections[i] + '.gif";');
   if (sections[i] == current) {
    eval(sections[i] + j + '.src = "/english/sys/i2' + sections[i] + '.gif";');
    }
  }
 }
}

bName = navigator.appName;
bVer = parseInt(navigator.appVersion);
if ((bName == "Netscape" && bVer >= 3) || (bName == "Microsoft Internet Explorer" && bVer >= 4))
 goodBrowser = true;
else
 goodBrowser = false;

//-->
