function exhib_more_(id)
    {    
        new Ajax(self, {data: 'param=ajax_m&do=exhib&id='+id+'',method: 'get', update: 'ex_content'}).request();         
        $('ex_content').style.display = "";
        /*var Tips2 = new Tips($$('.Tips2'), {
        initialize:function(){
        this.fx = new Fx.Style(this.toolTip, 'opacity', {duration: 500, wait: false}).set(0);
        },
        onShow: function(toolTip) {
        this.fx.start(1);
        },
        onHide: function(toolTip) {
        this.fx.start(0);
        }*/
        
        
        
       //var list = $('#ex_content');
       //list.each(function(element) {
 
        //var fx = new Fx.Styles(element, {duration:200, wait:false});
        //var fx = new Fx.Style('ex_content', 'opacity', {duration: 500, wait: false}).set(1);         
        //fx.start(1);               
    }
function exhib_more(id)
    {      
        
        $.ajax({type: "GET",url:self+'?param=ajax_m&do=exhib&id='+id+'',secureuri:false,dataType: 'json',success: 
         /*function (data)
        {
        alert();                
        $('ex_content').innerHTML = data; */               
       function (result_, status)
        {
        alert(''+result_.id_error+'') 
        if(result_.id_error==1)
            {                                                                      
                $('ex_content').innerHTML = "Ошибка сервера";
            }        
        $('ex_content').innerHTML = result_.content;                 
        }})        
    }    
