// (c) 2000, 2001 Giedrius "Fozis" Kaleckas
function ClickHandler(file_id)
{
  if (file_id != null) 
    {
      if (file_id != document.IndexForm.FileId.value)
        {
          document.IndexForm.FileId.value = file_id;
          document.IndexForm.Index.value = 0;
        }
    }  
	document.IndexForm.submit();
}

function highlight(which, on)
{ var name = "Galerija #" + which;
  var imagefile = "images/g";
  if (which == 0) {
    name = "Laiskai";
    imagefile = "images/mail";
  }
  if (on == "a") window.status = name;
    else window.status="";
  document.all("G" + which).src = imagefile + which + on + ".gif";
}