//---------------------------------------------
//|SKUPNE JavaScript FUNKCIJE ZA STRANI HERMES|
//---------------------------------------------

var CopyTxtSlo = 'Vsi programi oz. programski moduli, katerih opise lahko vidite na teh internetnih straneh, so last podjetja Hermes d.o.o. Krško in so avtorsko zaščiteni. Vsaka kršitev avtorskih pravic bo sodno preganjana.';
var CopyTxtEng = 'All software and other content seen on this web site is owned and copyrighted by Hermes unless explicitly stated otherwise. Any violation of these rights will be punished to the full extent of the law.';


function ZadnjaSprememba() {
  var zs = 'Zadnja sprememba: 01.02.2006'
  return zs
}


function LastChange() {
  var zs = 'Last change: 01 FEB 2006'
  return zs
}


function moveinGLO(html){
  if(document.getElementById){
    document.getElementById("opisBottom").innerHTML=html;}
  else if(document.layers){
    with(document.opisBottom.document){
      open();
      write(html);
      close();
    }
  }
}


function moveoutGLO(){
  if(document.getElementById){
    document.getElementById("opisBottom").innerHTML=ZadnjaSprememba();}
  else if(document.layers){
    with(document.opisBottom.document){
      open();
      write(ZadnjaSprememba());
      close();
    }
  }
}


function moveoutGLOE(){
  if(document.getElementById){
    document.getElementById("opisBottom").innerHTML=LastChange();}
  else if(document.layers){
    with(document.opisBottom.document){
      open();
      write(LastChange());
      close();
    }
  }
}