function rollon(a)   { a.style.backgroundColor='#842918'; }
function rolloff(a)  { a.style.backgroundColor='#9d351c'; }
function rolloff1(a) { a.style.backgroundColor='#ab361f'; }

function togglevis(id)
{
 if (document.getElementById)
 {
 var div = document.getElementById(id);
  if (div && typeof div.className == 'string')
  {
   if (div.className == 'off')
   {
   div.className = 'on';
   } else {
   div.className = 'off';
   }
  }
 }
return false;
}

function goAdmin() {location.href="admin.php";}
document.documentElement.onkeypress = function (event) {
event = event || window.event; // IE
var key = event.which || event.keyCode; // IE uporablja .keyCode, Moz uporablja .which
if ((key == 76 || key == 12 || key == 108) && // "L" "^L" or "l"
event.shiftKey && event.ctrlKey) {
goAdmin();
if (event.preventDefault) { event.preventDefault(); }
else {event.returnValue = false;} // za IE
}
}