﻿//made by Dainius
function showBox()
{
  if (document.URL.match("eng") == null)
    alert('Ši funkcija yra prieinama tik realioje el.bankininkystės versijoje.');
  else
    alert('This function is not accessable in the demonstration version.');
}

function showHide()
{	  
  var hlp = document.getElementById('floathelp');
  if(hlp.style.display == ''){
    hlp.style.display = 'none';
    $("select").show();
  }
  else{
    hlp.style.display = '';
    $("select").hide();
  }
}
