/**
 * Coments
 *
 * Coments,v 1.0 2010/04/03 14:52:00 ivi.vova Exp
 *
 * Copyright (C) 2010 ivi.vova, E-mail: ivi.vova@gmail.com
 *
 *
 */

function Coments()
{

    /**
     * local values
     */
    /**
     * local values
     */

    /**
     * show block
     */
    this.showBlock = function(id)
    {
        var obj=document.getElementById(id);
        obj.style.display='block';
    }

    /**
     * hidden block
     */
    this.hiddenBlock = function(id)
    {
        var obj=document.getElementById(id);
        obj.style.display='none';
    }

    /**
     * if select
     */
    this.ifSelect = function(status)
    {
        if(status==2)
        {
            this.showBlock('coment_site_div');
        }
        else
        {
            this.hiddenBlock('coment_site_div');
        }
    }

}

var coments = new Coments();
