//переключение языков 
function setLanguage_static (f) {
var language, country, temp;
temp = f;
language = temp.substr(0,2);
if (temp.substr(2,1) == "-") country = temp.substr(3,2);
if (temp == 'ru') country = "ru";
document.cookie = "LANG" + "=" + escape(language) + '; path=/; domain=kompass.com;' ;
switch (country) {
  case "cz":
  case "fr":
  window.location = "http://www.kompass." + country;
  break;
  case "ru":
    //window.location = "http://www.kompass." + "ua";
  break;
  default:
    window.location = "http://www.kompass.com/kinl/" + language;
  break;
  return(true);
}}


//открытие в новом окне 
var win = null;

function NewWindow(mypage,myname,w,h,scroll)
    {

        LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
        TopPosition = (screen.height) ? (screen.height-h)/2 : 0;

        settings = 'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+''
        win = window.open(mypage,myname,settings)
}

