/**
 * Районен съд Котел - javascript
 *
 * @author: Hristo Drumev [www.hdrumev.com]
 * @date: 12.01.2010
 *
 */

window.onload = function()
{
  document.getElementById( 'archivebutton' ).onclick = function()
  {
    var element = document.getElementById( 'archive' );
    element.style.display = element.style.display == 'none' ? '' : 'none';
  }
  document.getElementById( 'archive' ).style.display = 'none';
}