var Admin = {
    SwitchPublicationType: function(type,clear)
    {
        if(type == 1 || type == 3)
        {
            $('#field-author,#field-description').show();
            $('#field-attached').show();
        }
        else
        {
            $('#field-author,#field-description').hide();
            $('#field-attached').hide();
        }

        if(clear)
        {
            $('#field-author,#field-description').find('input').val('');
        }

        /*if(type == 3 || type == 4)
            $('#field-date').show().find('input').val('');
        else
            $('#field-date').hide().find('input').val('');*/
    }
};
