
NS4 = (document.layers);
IE4 = (document.all);
if(NS4) 
  document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"http://www.russian.language.ru/ncstyle.css\">")
else    
  document.writeln("<link rel=\"stylesheet\" type=\"text/css\" href=\"http://www.russian.language.ru/style.css\">")



function mouseOver(obj) {
    if(!IE4) return;
        if(!obj.active) obj.style.color = "#5A89B4";
}

function mouseOut(obj) {
    if(!IE4) return;
        if(!obj.active)  obj.style.color = "";
}


//---------------------------


function switchLang(newLang) {
  var currLocation, currLang, newLocation, i;
  currLocation = "" + window.location;
  i = currLocation.lastIndexOf('/');
  currLang = currLocation.substr(i-3, 3);
  //alert(currLang);
  if(currLang !== "/ru" && currLang !== "/de" && currLang !== "/fr") {
    newLocation = currLocation.substring(0, i);
  }
  else {
    newLocation = currLocation.substring(0, i-3);
  }
  if(newLang !== "en") {
    newLocation += "/" + newLang;
  }
  newLocation += currLocation.substring(i);
  //alert(newLocation);
  window.location = newLocation;
}

