<!--
var _exhibition = new Object();
_exhibition.href = new Array();

_exhibition.open = function() {
    var _newwin = window.open ( _exhibition.href[this.id], '',
                                'width=450,height=500,resizable=yes,scrollbars=yes' );
}

_exhibition.init = function() {
    var _ancs = document.getElementsByTagName ( 'A' );
    for ( var _i=0; _i<_ancs.length; _i++ ) {
        if ( _ancs[_i].className == 'exhpicts' ) {
            _exhibition.href[_ancs[_i].id] = _ancs[_i].href;
            _ancs[_i].href = document.location.href;
            _ancs[_i].onclick = _exhibition.open;
        }
    }
}

window.onload = _exhibition.init;
-->
