function stub() {
    alert('Временно недоступно');
    return false;
}

function showOne(id) {
    var obj = $(id);
    if ( obj.tagName ) {
       if ( !obj.style || !obj.style.display || obj.style.display == 'none' ) {
            obj.style.display = 'block';
        } else {
            obj.style.display = 'none';
        }
    }
    return false;
}
