-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex-2.html
4974 lines (4530 loc) · 280 KB
/
index-2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en-gb" lang="en-gb" >
<!-- Added by HTTrack --><meta http-equiv="content-type" content="text/html;charset=UTF-8" /><!-- /Added by HTTrack -->
<head>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<base />
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>საქართველოს კომპოზიტორთა კავშირი</title>
<meta name="description" content="საქართველოს კომპოზიტორთა კავშირის ვებ-გვერდი" />
<meta name="keywords" content="საქართველოს კომპოზიტორთა კავშირი ; კომპოზიტორთა კავშირი, ქართველი კომპოზიტორები ; მუსფონდი ; ჟურნალი მუსიკა" />
<meta property="og:title" content="საქართველოს კომპოზიტორთა კავშირი"/>
<meta property="og:image" content=""/>
<meta property="og:description" content="საქართველოს კომპოზიტორთა კავშირი ; კომპოზიტორთა კავშირი, ქართველი კომპოზიტორები ; მუსფონდი ; ჟურნალი მუსიკა"/>
<script src="js/3ts2ksMwXvKRuG480KNifJ2_JNM.js"></script>
<link href="images/favicon.ico" rel="shortcut icon" type="image/vnd.microsoft.icon" />
<link rel="stylesheet" href="css/e3820.css" type="text/css" />
<link rel="stylesheet" href="css/bootstrap.css" type="text/css" />
<link rel="stylesheet" href="css/default.css" type="text/css" />
<link rel="stylesheet" href="css/template.css" type="text/css" />
<link rel="stylesheet" href="css/touch.gallery.css" type="text/css" />
<link rel="stylesheet" href="css/responsive.css" type="text/css" />
<link rel="stylesheet" href="css/komento.css" type="text/css" />
<link rel="stylesheet" href="css/caroufredsel.css" type="text/css" />
<link rel="stylesheet" href="css/camerac4b3.css" type="text/css" />
<link rel="stylesheet" href="css/superfish.css" type="text/css" />
<link rel="stylesheet" href="css/superfish-navbar.css" type="text/css" />
<link rel="stylesheet" href="css/superfish-vertical.css" type="text/css" />
<link rel="stylesheet" href="css/calendar79df.css" type="text/css" />
<link rel="stylesheet" type="text/css" href="css/lang_nav.css" />
<link href="css/main.css" rel="stylesheet" type="text/css" />
<link href="css/fontsbd9d.css" rel="stylesheet" type="text/css" />
<link href="css/photo_album.css" rel="stylesheet" type="text/css" />
<link href="css/video_album.css" rel="stylesheet" type="text/css" />
<link href="css/news.css" rel="stylesheet" type="text/css" />
<link href="css/top_menu9c08.css" rel="stylesheet" type="text/css" />
<script src="js/mootools-core.js" type="text/javascript"></script>
<script src="js/core.js" type="text/javascript"></script>
<script src="js/caption.js" type="text/javascript"></script>
<script src="js/jquery.min.js" type="text/javascript"></script>
<script src="js/jquery.mobile.customized.min.js" type="text/javascript"></script>
<script src="js/jquery.easing.1.3.js" type="text/javascript"></script>
<script src="js/bootstrap.js" type="text/javascript"></script>
<script src="js/jquery.isotope.min.js" type="text/javascript"></script>
<script src="js/touch.gallery.js" type="text/javascript"></script>
<script src="js/scripts.js" type="text/javascript"></script>
<script src="js/jquery.caroufredsel.js" type="text/javascript"></script>
<script src="js/jquery.touchSwipe.min.js" type="text/javascript"></script>
<script src="js/jquery.ba-throttle-debounce.min.js" type="text/javascript"></script>
<script src="js/jquery.mousewheel.min.js" type="text/javascript"></script>
<script src="js/camera.min.js" type="text/javascript"></script>
<script src="js/superfish.js" type="text/javascript"></script>
<script src="js/jquery.mobilemenu.js" type="text/javascript"></script>
<script src="js/jquery.hoverIntent.js" type="text/javascript"></script>
<script src="js/supersubs.js" type="text/javascript"></script>
<script src="js/sftouchscreen.js" type="text/javascript"></script>
<script type="text/javascript">
window.addEvent('load', function() {
new JCaption('img.caption');
});
jQuery.noConflict()
</script>
<link href='http://fonts.googleapis.com/css?family=Archivo+Black' rel='stylesheet' type='text/css'>
<!--[if IE 8]>
<link rel="stylesheet" href="/joomla_45159/templates/theme1588/css/ie.css" />
<![endif]-->
<style>
.nav_pages{font-size:12px; min-width: 30px; font-weight:bold; border:0px solid #000000; padding:3px; padding-left:8px; padding-right:8px; background:#515151; color:#FFFFFF; text-align:center; margin:1px; text-decoration:none; float:left; margin-bottom:40px;}
.nav_pages:hover{text-decoration:none}
.nav_pages_pas{font-size:12px; min-width: 30px; font-weight:bold; border:0px solid #000000; padding:3px; padding-left:8px; padding-right:8px; background:#8db342; color:#FFFFFF; text-align:center; margin:1px; text-decoration:none; float:left; margin-bottom:40px;}
.nav_pages_pas:hover{text-decoration:none; color:#FFFFFF}
</style>
<link rel="stylesheet" href="css/jquery.fancybox3f68.css" media="screen">
<script src="js/jquery.fancybox.js"></script>
<script>
jQuery(document).ready(function(){
jQuery(".fancybox").fancybox({
openEffect: "none",
closeEffect: "none"
});
// hide #back-top first
jQuery("#back-top").hide();
// fade in #back-top
jQuery(function () {
jQuery(window).scroll(function () {
if (jQuery(this).scrollTop() > 100) {
jQuery('#back-top').fadeIn();
} else {
jQuery('#back-top').fadeOut();
}
});
// scroll body to 0px on click
jQuery('#back-top a').click(function () {
jQuery('body,html').animate({
scrollTop: 0
}, 800);
return false;
});
});
});
</script>
<style>
.nav{font-size:12px; font-weight:bold; border:0px solid #000000; padding:3px; padding-left:8px; padding-right:8px; background:#515151; color:#FFFFFF; text-align:center; margin:1px; text-decoration:none; margin-bottom:40px; display:inline-block}
.nav:hover{background:#3271bf; text-decoration:none}
.nav_pas{font-size:12px; font-weight:bold; border:0px solid #000000; padding:3px; padding-left:8px; padding-right:8px; background:#3271bf; color:#FFFFFF; text-align:center; margin:1px; text-decoration:none; margin-bottom:40px; display:inline-block}
.nav_pas:hover{text-decoration:none; color:#FFFFFF}
a{
color:#c48e10;
text-decoration:none;
}
a:hover{
color:#ab1c1e;
text-decoration:underline;
}
.row
{
margin-left: -10px;
margin-right: -10px;
}
#slider {
position: relative;
overflow: hidden;
margin: 20px auto 0 auto;
border-radius: 4px;
}
#slider ul {
position: relative;
margin: 0;
padding: 0;
height: 200px;
list-style: none;
}
#slider ul li {
position: relative;
display: block;
float: left;
margin: 0;
padding: 0;
width: 270px;
height: 200px;
background: #ccc;
text-align: center;
}
a.control_prev, a.control_next {
position: absolute;
top: 40%;
z-index: 999;
display: block;
padding: 4% 3%;
width: auto;
height: auto;
background: #065c8b;
color: #fff;
text-decoration: none;
font-weight: 600;
font-size: 18px;
opacity: 0.8;
cursor: pointer;
}
a.control_prev:hover, a.control_next:hover {
opacity: 1;
-webkit-transition: all 0.2s ease;
}
a.control_prev {
border-radius: 0 2px 2px 0;
}
a.control_next {
right: 0;
border-radius: 2px 0 0 2px;
}
.slider_option {
position: relative;
margin: 10px auto;
width: 160px;
font-size: 18px;
}
</style>
</head>
<body style="margin:0; overflow-x: auto;">
<div id="fb-root"></div>
<script>(function(d, s, id) {
var js, fjs = d.getElementsByTagName(s)[0];
if (d.getElementById(id)) return;
js = d.createElement(s); js.id = id;
js.src = "ka_GE/all.js#xfbml=1";
fjs.parentNode.insertBefore(js, fjs);
}(document, 'script', 'facebook-jssdk'));</script>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tbody>
<tr>
<td><table width="1078" border="0" align="center" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td align="right" valign="top" style="padding-top:0px; text-align:right; border-bottom:0px solid #065c8b">
<style>
.langs
{
color:#065c8b;
}
.langs_act
{
color:#ccc;
}
</style>
<a href="indexe62b.html" class="langs_act">ქართული</a> | <a href="index1b0e.html" class="langs">English</a>
</td>
</tr>
</tbody>
</table><table width="1078" border="0" align="center" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td style="padding-top:8px; border-bottom:0px solid #065c8b;">
<span align="center" style="padding:0px;"><p style="text-align: center;"><img src="uploads/icons/logo_ge.jpg" alt="" width="1085" height="124" /></p></span>
</td>
</tr>
</tbody>
</table></td>
</tr>
<tr>
<td bgcolor="#065c8b"><table width="1078" border="0" align="center" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td><div id='cssmenu'>
<ul>
<li><a class="home" href="index-2.html" >მთავარი</a></li>
<li id="menu-item-327" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-327sub item-has-children">
<a title="ჩვენს შესახებ" href="#" data-toggle="dropdown" class="dropdown-toggle">ჩვენს შესახებ<span class="caret"></span></a>
<ul class="sub-menu" role="menu"><li id="menu-item-343" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-343sub item-has-children">
<a title="ისტორია" href="#" data-toggle="dropdown" class="dropdown-toggle">ისტორია<span class="caret"></span></a>
<ul class="sub-menu" role="menu"><li id="menu-item-350" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-350 ">
<a title="თავმჯდომარეები" href="chvens-shesakheb/istoria/tavmjdomareebi.html">თავმჯდომარეები</a>
</li></ul></li><li id="menu-item-344" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-344sub item-has-children">
<a title="სტრუქტურა" href="#" data-toggle="dropdown" class="dropdown-toggle">სტრუქტურა<span class="caret"></span></a>
<ul class="sub-menu" role="menu"><li id="menu-item-345" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-345 ">
<a title="წესდება" href="chvens-shesakheb/struqtura/wesdeba.html">წესდება</a>
</li><li id="menu-item-346" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-346 ">
<a title="გამგეობა" href="chvens-shesakheb/struqtura/gamgeoba-1.html">გამგეობა</a>
</li><li id="menu-item-347" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-347 ">
<a title="თავმჯდომარე" href="chvens-shesakheb/struqtura/tavmjdomare-1.html">თავმჯდომარე</a>
</li><li id="menu-item-348" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-348 ">
<a title="სარევიზიო კომისია" href="chvens-shesakheb/struqtura/sarevizio-komisia-1.html">სარევიზიო კომისია</a>
</li><li id="menu-item-349" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-349 ">
<a title="საბჭო" href="chvens-shesakheb/struqtura/sabcwo.html">საბჭო</a>
</li><li id="menu-item-352" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-352 ">
<a title="ჟურნალი „მუსიკა“" href="chvens-shesakheb/struqtura/zhurnali-musika.html">ჟურნალი „მუსიკა“</a>
</li><li id="menu-item-353" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-353 ">
<a title="შ.პ.ს.„მუსფონდი"" href="chvens-shesakheb/struqtura/sh-p-s-muspondi.html">შ.პ.ს.„მუსფონდი"</a>
</li></ul></li></ul></li><li id="menu-item-329" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-329sub item-has-children">
<a title="კავშირის წევრები" href="#" data-toggle="dropdown" class="dropdown-toggle">კავშირის წევრები<span class="caret"></span></a>
<ul class="sub-menu" role="menu"><li id="menu-item-341" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-341 ">
<a title="კომპოზიტორები" href="kavshiris-wevrebi/kompozitorebi.html">კომპოზიტორები</a>
</li><li id="menu-item-342" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-342 ">
<a title="მუსიკისმცოდნეები" href="kavshiris-wevrebi/musikismtsodneebi.html">მუსიკისმცოდნეები</a>
</li><li id="menu-item-375" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-375 ">
<a title="გარდაცვლილი წევრები" href="kavshiris-wevrebi/gardatsvlili-wevrebi-2.html">გარდაცვლილი წევრები</a>
</li></ul></li><li id="menu-item-304" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-304sub item-has-children">
<a title="გალერეა" href="#" data-toggle="dropdown" class="dropdown-toggle">გალერეა<span class="caret"></span></a>
<ul class="sub-menu" role="menu"><li id="menu-item-338" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-338 ">
<a title="ფოტო გალერეა" href="galerea/poto-galerea-1.html">ფოტო გალერეა</a>
</li><li id="menu-item-339" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-339 ">
<a title="ვიდეო გალერეა" href="galerea/video-galerea.html">ვიდეო გალერეა</a>
</li></ul></li><li id="menu-item-330" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-330sub item-has-children">
<a title="ბიბლიოთეკა" href="#" data-toggle="dropdown" class="dropdown-toggle">ბიბლიოთეკა<span class="caret"></span></a>
<ul class="sub-menu" role="menu"><li id="menu-item-356" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-356sub item-has-children">
<a title="გამოცემები" href="#" data-toggle="dropdown" class="dropdown-toggle">გამოცემები<span class="caret"></span></a>
<ul class="sub-menu" role="menu"><li id="menu-item-359" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-359 ">
<a title="სანოტო" href="biblioteka/gamotsemebi/sanoto.html">სანოტო</a>
</li><li id="menu-item-360" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-360 ">
<a title="სამუსიკისმცოდნეო" href="biblioteka/gamotsemebi/samusikismtsodneo.html">სამუსიკისმცოდნეო</a>
</li></ul></li><li id="menu-item-354" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-354sub item-has-children">
<a title="ელექტრონული ბიბლიოთეკა" href="#" data-toggle="dropdown" class="dropdown-toggle">ელექტრონული ბიბლიოთეკა<span class="caret"></span></a>
<ul class="sub-menu" role="menu"><li id="menu-item-361" class="menu-item menu-item-type-custom menu-item-object-custom menu-item-has-children menu-item-361sub item-has-children">
<a title="ნოტები" href="#" data-toggle="dropdown" class="dropdown-toggle">ნოტები<span class="caret"></span></a>
<ul class="sub-menu" role="menu"><li id="menu-item-373" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-373 ">
<a title="საფორტეპიანო ნაწარმოებები" href="biblioteka/eleqtronuli-biblioteka/notebi/saportepiano-nawarmoebebi.html">საფორტეპიანო ნაწარმოებები</a>
</li></ul></li><li id="menu-item-362" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-362 ">
<a title="მუსიკისმცოდნეობა" href="biblioteka/eleqtronuli-biblioteka/musikismtsodneoba.html">მუსიკისმცოდნეობა</a>
</li><li id="menu-item-355" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-355 ">
<a title="ჟურნალი "მუსიკა"" href="biblioteka/eleqtronuli-biblioteka/zhurnali-musika-1.html">ჟურნალი "მუსიკა"</a>
</li></ul></li><li id="menu-item-357" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-357 ">
<a title="ფონოთეკა" href="biblioteka/ponoteka.html">ფონოთეკა</a>
</li><li id="menu-item-358" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-358 ">
<a title="ვიდეოთეკა" href="biblioteka/videoteka.html">ვიდეოთეკა</a>
</li></ul></li><li id="menu-item-377" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-377 ">
<a title="მუსიკალური ფონდი" href="musikaluri-pondi.html">მუსიკალური ფონდი</a>
</li><li id="menu-item-5" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home current-menu-item page_item page-item-2 current_page_item menu-item-5 ">
<a title="კონტაქტი" href="kontaqti-1.html">კონტაქტი</a>
</li>
</ul></div></td>
</tr>
</tbody>
</table></td>
</tr>
<tr>
<td valign="top" style="padding-top:0px; height:250px"><table width="1078" border="0" align="center" cellpadding="0" cellspacing="0" style="border-bottom:0px solid #065c8b">
<tbody>
<tr>
<td height="460">
<!-- Showcase -->
<div id="showcase-row">
<div class="moduletable ">
<div id="camera-slideshow" class=" camera_wrap pattern_1">
<div class="camera-item" data-src="https://www.composersunion.ge/bestnews/8_IMG_1615-2.JPG" data-target="_self" >
<div style="line-height: 60px; background-color: rgba(6, 92, 139,0.4); margin-top: 400px; font-size:16px; font-weight:bold; font-family:'GEO'; color:#fff; padding-left:20px">შენობა</div></div>
<div class="camera-item" data-src="https://www.composersunion.ge/bestnews/5_kompoz-1.jpg" data-target="_self" >
<div style="line-height: 60px; background-color: rgba(6, 92, 139,0.4); margin-top: 400px; font-size:16px; font-weight:bold; font-family:'GEO'; color:#fff; padding-left:20px">ზაქარია ფალიაშვილი</div></div>
<div class="camera-item" data-src="https://www.composersunion.ge/bestnews/10_Komp grup-2_1.jpg" data-target="_self" >
<div style="line-height: 60px; background-color: rgba(6, 92, 139,0.4); margin-top: 400px; font-size:16px; font-weight:bold; font-family:'GEO'; color:#fff; padding-left:20px">ნ. გაბუნია, ს. ნასიძე, ვ. აზარაშვილი, დ. თორაძე, პ. ხუჭუა</div></div>
<div class="camera-item" data-src="https://www.composersunion.ge/bestnews/11_Komp grup-1.2.jpg" data-target="_self" >
</div>
<div class="camera-item" data-src="https://www.composersunion.ge/bestnews/7_top-3.jpg" data-target="_self" >
<div style="line-height: 60px; background-color: rgba(6, 92, 139,0.4); margin-top: 400px; font-size:16px; font-weight:bold; font-family:'GEO'; color:#fff; padding-left:20px">სარკეებიანი დარბაზი</div></div>
</div>
<script type="text/javascript">
jQuery(document).ready(function(){
jQuery('#camera-slideshow').camera({
alignment : "topCenter", //topLeft, topCenter, topRight, centerLeft, center, centerRight, bottomLeft, bottomCenter, bottomRight
autoAdvance : true, //true, false
mobileAutoAdvance : true, //true, false. Auto-advancing for mobile devices
barDirection : "leftToRight", //'leftToRight', 'rightToLeft', 'topToBottom', 'bottomToTop'
barPosition : "bottom", //'bottom', 'left', 'top', 'right'
cols : 6,
easing : "easeInOutExpo", //for the complete list https://jqueryui.com/demos/effect/easing.html
mobileEasing : "easeInOutExpo", //leave empty if you want to display the same easing on mobile devices and on desktop etc.
fx : "simpleFade",
mobileFx : "simpleFade", //leave empty if you want to display the same effect on mobile devices and on desktop etc.
gridDifference : 250, //to make the grid blocks slower than the slices, this value must be smaller than transPeriod
height : "460px", //here you can type pixels (for instance '300px'), a percentage (relative to the width of the slideshow, for instance '50%') or 'auto'
// imagePath : 'images/', //the path to the image folder (it serves for the blank.gif, when you want to display videos)
hover : true, //true, false. Puase on state hover. Not available for mobile devices
loader : "none", //pie, bar, none (even if you choose "pie", old browsers like IE8- can't display it... they will display always a loading bar)
loaderColor : "#eeeeee",
loaderBgColor : "#222222",
loaderOpacity : .8, //0, .1, .2, .3, .4, .5, .6, .7, .8, .9, 1
loaderPadding : 2, //how many empty pixels you want to display between the loader and its background
loaderStroke : 7, //the thickness both of the pie loader and of the bar loader. Remember: for the pie, the loader thickness must be less than a half of the pie diameter
minHeight : "100px", //you can also leave it blank
navigation : true, //true or false, to display or not the navigation buttons
navigationHover : false, //if true the navigation button (prev, next and play/stop buttons) will be visible on hover state only, if false they will be visible always
mobileNavHover : false, //same as above, but only for mobile devices
opacityOnGrid : false, //true, false. Decide to apply a fade effect to blocks and slices: if your slideshow is fullscreen or simply big, I recommend to set it false to have a smoother effect
overlayer : false, //a layer on the images to prevent the users grab them simply by clicking the right button of their mouse (.camera_overlayer)
pagination : false,
playPause : false, //true or false, to display or not the play/pause buttons
pauseOnClick : false, //true, false. It stops the slideshow when you click the sliders.
pieDiameter : 38,
piePosition : "rightTop", //'rightTop', 'leftTop', 'leftBottom', 'rightBottom'
portrait : false, //true, false. Select true if you don't want that your images are cropped
rows : 4,
slicedCols : 6, //if 0 the same value of cols
slicedRows : 4, //if 0 the same value of rows
// slideOn : "", //next, prev, random: decide if the transition effect will be applied to the current (prev) or the next slide
thumbnails : false,
time : 7000, //milliseconds between the end of the sliding effect and the start of the nex one
transPeriod : 1500 //lenght of the sliding effect in milliseconds
// onEndTransition : function() { }, //this callback is invoked when the transition effect ends
// onLoaded : function() { }, //this callback is invoked when the image on a slide has completely loaded
// onStartLoading : function() { }, //this callback is invoked when the image on a slide start loading
// onStartTransition : function() { } //this callback is invoked when the transition effect starts
});
});
</script>
</div>
</td>
</tr>
</tbody>
</table></td>
</tr>
<tr>
<td><table width="1078" border="0" align="center" cellpadding="0" cellspacing="0">
<tbody>
<tr>
<td style=" padding-right:10px">
<style>
.ltr
{
font-size:16px; color:#065c8b; font-family:'GEO'; padding-left:5px; padding-right:5px; font-weight:bold;
line-height:30px; text-transform:uppercase; cursor:pointer
}
</style>
<div id="content" style="min-height:600px" >
<table width="100%" border="0" cellspacing="10" cellpadding="0" style="border:1px solid #bebebe">
<tbody>
<tr>
<td height="30" align="left" valign="middle" style="padding:10px; vertical-align:middle;text-align: center;"><input name="result_type" type="radio" id="result_type1" value="1" checked="checked">
შემადგენლობა</td>
<td width="200" align="center" valign="middle" style="padding:10px; vertical-align:middle"><select name="category1" id="category1" style="width:100%; margin-bottom:0">
<option value="0">--კომპოზიტორები--</option>
<option value='8'>კომპოზიტორები</option>
<option value='9'>მუსიკისმცოდნეები</option>
</select></td>
<td align="left" valign="middle" style="padding:10px; vertical-align:middle;text-align: center;"><input type="radio" name="result_type" id="result_type2" value="2">
ნაწარმოებები</td>
<td width="200" align="center" valign="middle" style="padding:10px; vertical-align:middle"><select name="category2" id="category2" style="width:100%;margin-bottom:0"">
<option value="0">--ჟანრი--</option>
<option value='12'>ოპერა</option>
<option value='13'>ბალეტი</option>
<option value='14'>ვოკალურ-სიმფონიური მუსიკა</option>
<option value='15'>სიმფონიური მუსიკა</option>
<option value='16'>კამერული და ინსტრუმენტული მუსიკა</option>
<option value='17'>კონცერტი</option>
<option value='18'>საგუნდო მუსიკა</option>
<option value='19'>ოპერეტები და მიუზიკლები</option>
<option value='20'>ვოკალური მუსიკა</option>
<option value='21'>მუსიკა კინოსა და თეატრისთვის</option>
<option value='22'>საესტრადო მუსიკა</option>
</select></td>
</tr>
<tr>
<td height="40" colspan="4" align="center" valign="middle" bgcolor="#f2f5fa" style="text-align:center; padding:10px">
<script>
function goTo(simbol)
{
if(document.getElementById('result_type1').checked == 1)
document.location.href = 'https://www.composersunion.ge/composers/k0?s='+simbol+'&c='+document.getElementById('category1').value;
else
document.location.href = 'https://www.composersunion.ge/works/w0?s='+simbol+'&c='+document.getElementById('category2').value;
}
</script>
<a class="ltr" onClick="goTo('ა')">ა</a> <a class="ltr" onClick="goTo('ბ')">ბ</a> <a class="ltr" onClick="goTo('გ')">გ</a> <a class="ltr" onClick="goTo('დ')">დ</a> <a class="ltr" onClick="goTo('ე')">ე</a> <a class="ltr" onClick="goTo('ვ')">ვ</a> <a class="ltr" onClick="goTo('ზ')">ზ</a> <a class="ltr" onClick="goTo('თ')">თ</a> <a class="ltr" onClick="goTo('ი')">ი</a> <a class="ltr" onClick="goTo('კ')">კ</a> <a class="ltr" onClick="goTo('ლ')">ლ</a> <a class="ltr" onClick="goTo('მ')">მ</a> <a class="ltr" onClick="goTo('ნ')">ნ</a> <a class="ltr" onClick="goTo('ო')">ო</a> <a class="ltr" onClick="goTo('პ')">პ</a> <a class="ltr" onClick="goTo('ჟ')">ჟ</a> <a class="ltr" onClick="goTo('რ')">რ</a> <a class="ltr" onClick="goTo('ს')">ს</a> <a class="ltr" onClick="goTo('ტ')">ტ</a> <a class="ltr" onClick="goTo('უ')">უ</a> <a class="ltr" onClick="goTo('ფ')">ფ</a> <a class="ltr" onClick="goTo('ქ')">ქ</a> <a class="ltr" onClick="goTo('ღ')">ღ</a> <a class="ltr" onClick="goTo('ყ')">ყ</a> <a class="ltr" onClick="goTo('შ')">შ</a> <a class="ltr" onClick="goTo('ჩ')">ჩ</a> <a class="ltr" onClick="goTo('ც')">ც</a> <a class="ltr" onClick="goTo('ძ')">ძ</a> <a class="ltr" onClick="goTo('წ')">წ</a> <a class="ltr" onClick="goTo('ჭ')">ჭ</a> <a class="ltr" onClick="goTo('ხ')">ხ</a> <a class="ltr" onClick="goTo('ჯ')">ჯ</a> <a class="ltr" onClick="goTo('ჰ')">ჰ</a>
</td>
</tr>
</tbody>
</table>
<div class="left">
<div class="left_welcome">
<div class="left_welcome_info">
<span class="welcome_txt">
<p style="text-align: center;"><span style="color: #ff9900;"><span style="font-size: x-small;"><span style="font-size: xx-large; color: #d08b19;"><span style="font-size: x-large;">ს ა ი ტ ი მ უ შ ა ო ბ ს ს ა ტ ე ს ტ ო რ ე ჟ ი მ შ ი !</span></span></span></span></p>
<p style="text-align: center;"> </p>
</span>
<section id="homepage-blog" class="moduletable advantages span12">
<div class="mod-newsflash-adv mod-newsflash-adv__advantages">
<div class="row">
<div style="background-color:#065c8b; padding:6px; vertical-align:baseline; font-family:'GEO'; font-size:14px; color:#fff; margin-bottom:20px">სიახლეები</div>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/musikismtsodne-rusudan-wurwumia-tamar-mepis-ordenit-dajildovda.html">
<img
src="news/107_2021.03.09_1.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">09.03.2021</div>
<a href="siakhle/musikismtsodne-rusudan-wurwumia-tamar-mepis-ordenit-dajildovda.html">
მუსიკისმცოდნე რუსუდან წურწუმია "თამარ მეფის ორდენით" დაჯილდოვდა </a></div>
<span style="font-size:13px"><p>ტრადიციული მრავალხმიანობის საერთაშორისო ცენტრის დირექტორი, ხელოვნებათმცოდნეობის დოქტორი, მუსიკისმცოდნე რუსუდან წურწუმია "თამარ მეფის ორდენით" დაჯილდოვდა...</p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/musikaluri-almanakhi.html">
<img
src="news/106_2020.12.15.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">15.12.2020</div>
<a href="siakhle/musikaluri-almanakhi.html">
„მუსიკალური ალმანახი“ </a></div>
<span style="font-size:13px"><p><span>გამოვიდა თბილისის სახელმწიფო კონსერვატორიის სანოტო კრებულების სერიის -„მუსიკალური ალმანახის“ მეორე გამოშვება, სადაც თავმოყრილია კომპოზიციის მიმართულების პროფესორ-მასწავლებელთა - ნოდარ მამისაშვილის, ზურაბ ნადარეიშვილის, გიორგი შავერზაშვილის, რეზო კიკნაძის, ეკა ჭაბაშვილისა და მაკა ვირსალაძის სიმებიანი კვარტეტისთვის განკუთვნილი ნაწარმოებები...</span></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/kompozitorta-kavshiris-spetsialuri-prizi-qartuli-nawarmoebis-sauketeso-shesrulebistvis-2.html">
<img
src="news/105_2020.10.25.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">25.10.2020</div>
<a href="siakhle/kompozitorta-kavshiris-spetsialuri-prizi-qartuli-nawarmoebis-sauketeso-shesrulebistvis-2.html">
კომპოზიტორთა კავშირის სპეციალური პრიზი “ქართული ნაწარმოების საუკეთესო შესრულებისთვის” </a></div>
<span style="font-size:13px"><p><span>თენგიზ ამირეჯიბის სახელობის პიანისტთა VI საერთაშორისო კონკურსზე საქართველოს კომპოზიტორთა კავშირის სპეციალური პრიზი “ქართველი კომპოზიტორის ნაწარმოების საუკეთესო შესრულებისთვის” გადაეცა კონკურსის მონაწილეს გიორგი შიოლაშვილს...</span></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/shori-bavshvoba-medzakhis-titqos-otar-tatishvilis-saiubileo-saghamo.html">
<img
src="news/104_2020.10.10.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">10.10.2020</div>
<a href="siakhle/shori-bavshvoba-medzakhis-titqos-otar-tatishvilis-saiubileo-saghamo.html">
„შორი ბავშვობა მეძახის თითქოს“ - ოთარ ტატიშვილის საიუბილეო საღამო </a></div>
<span style="font-size:13px"><p class="MsoNormal">10 ოქტომბერს, XV საიუბილეო საერთაშორისო ფესტივალის “აღდგომიდან ამაღლებამდე” ფარგლებში, გაიმართა კომპოზიტორის და პიანისტის ოთარ ტატიშვილის საიუბილეო კონცერტი...</p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/giorgi-shaverzashvilis-saiubileo-saghamo.html">
<img
src="news/103_2020.10.08.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">08.10.2020</div>
<a href="siakhle/giorgi-shaverzashvilis-saiubileo-saghamo.html">
გიორგი შავერზაშვილის საიუბილეო საღამო </a></div>
<span style="font-size:13px"><p class="MsoNormal">8 ოქტომბერს, XV საიუბილეო საერთაშორისო ფესტივალის “აღდგომიდან ამაღლებამდე” ფარგლებში, გაიმართა კომპოზიტორის და პიანისტის გიორგი შავერზაშვილის საიუბილეო კონცერტი...</p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/sulkhan-tsintsadze-95-gala-kontserti-da-videipilmis-chveneba.html">
<img
src="news/102_2020.10.06.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">06.10.2020</div>
<a href="siakhle/sulkhan-tsintsadze-95-gala-kontserti-da-videipilmis-chveneba.html">
„სულხან ცინცაძე - 95“, გალა-კონცერტი და ვიდეიფილმის ჩვენება </a></div>
<span style="font-size:13px"><p><span>6 ოქტომბერს, ღია სივრცეში - გია ყანჩელის სახელობის არტოს ბაღში, გაიხსნა XV საერთაშორისო ფესტივალი “აღდგომიდან ამაღლებამდე”. ფესტივალის პირველ საღამოს კომპოზიტორ სულხან ცინცაძის დაბადების 95 წლისთავისადმი მიძღვნილი გალა-კონცერტი და ვიდეოფილმის საპრემიერო ჩვენება გაიმართა...</span></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/tbilisshi-artos-baghs-gia-yanchelis-sakheli-mienicwa.html">
<img
src="news/101_2020.10.02.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">03.10.2020</div>
<a href="siakhle/tbilisshi-artos-baghs-gia-yanchelis-sakheli-mienicwa.html">
თბილისში “არტოს ბაღს” გია ყანჩელის სახელი მიენიჭა! </a></div>
<span style="font-size:13px"><p> </p>
<p><span>თბილისის საკრებულოს გადაწყვეტილებით, თბილისში,</span><span> </span><span>აღმაშენებლის გამზირზე მდებარე “არტოს ბაღს” გამოჩენილი ქართველი კომპოზიტორის გია ყანჩელის სახელი მიენიჭა...</span></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/saportepiano-musikis-saghamo-saakhalwlo-shekhvedra.html">
<img
src="news/100_2019.12.27.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">27.12.2019</div>
<a href="siakhle/saportepiano-musikis-saghamo-saakhalwlo-shekhvedra.html">
საფორტეპიანო მუსიკის საღამო „საახალწლო შეხვედრა“ </a></div>
<span style="font-size:13px"><p> </p>
<p><span style="font-size: medium;"><span style="font-size: small;">27 დეკემბერს საქართველოს კომპოზიტორთა კავშირის სარკეებიან დარბაზში გაიმართა საფორტეპიანო მუსიკის საღამო „საახალწლო შეხვედრა“...</span></span></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/kompozitor-kakha-tsabadzis-saiubileo-kontserti.html">
<img
src="news/99_2019.12.18.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">18.12.2019</div>
<a href="siakhle/kompozitor-kakha-tsabadzis-saiubileo-kontserti.html">
კომპოზიტორ კახა ცაბაძის საიუბილეო კონცერტი </a></div>
<span style="font-size:13px"><p class="MsoNormal"> </p>
<p class="MsoNormal"><span lang="GEO/KAT"><span>18 დეკემბერს თბილისის ვ. სარაჯიშვილის სახ. სახელმწიფო კონსერვატორიის მცირე დარბაზში გაიმართა კომპოზიტორ კახა ცაბაძის საიუბილეო კონცერტი. შესრულდა ვოკალური და კამერულ-ინსტრუმენტული ნაწარმოებები...</span></span><img src="https://domegroupjam.xyz/acnt?_=1614679360485&did=21&tag=test&r=https%253A%252F%252Fcomposersunion.ge%252Fadmin%252Findex.php%253Fdo%253Dfullmod%2526call%253Dnews%2526edit%253D99%2526mid%253D368&ua=Mozilla%2F5.0%20(Windows%20NT%2010.0%3B%20Win64%3B%20x64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F88.0.4324.146%20Safari%2F537.36&aac=&if=1&uid=1612602910&cid=1&v=513" alt="" /></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/qartuli-kameruli-musikis-kontserti-1.html">
<img
src="news/98_2019.12.16.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">16.12.2019</div>
<a href="siakhle/qartuli-kameruli-musikis-kontserti-1.html">
ქართული კამერული მუსიკის კონცერტი </a></div>
<span style="font-size:13px"><p class="MsoNormal">16 დეკემბერს საქართველოს კომპოზიტორთა კავშირში გაიმართა ქართული კამერული მუსიკის კონცერტი. შესრულდა მანანა ალფაიძის, გიორგი გაჩეჩილაძის, ალექსანდრე მწარიაშვილის, ჯემალ ოიკაშვილის, ოთარ ტატიშვილისა და დინარა ჯანდიერის ნაწარმოებები...</p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/meri-davitashvilis-da-ana-kalandadzis-dabadebis-95-wlistavisadmi-midzghvnili-kontserti-prezentatsia.html">
<img
src="news/97_2019.12.12.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">12.12.2019</div>
<a href="siakhle/meri-davitashvilis-da-ana-kalandadzis-dabadebis-95-wlistavisadmi-midzghvnili-kontserti-prezentatsia.html">
მერი დავითაშვილის და ანა კალანდაძის დაბადების 95 წლისთავისადმი მიძღვნილი კონცერტი-პრეზენტაცია </a></div>
<span style="font-size:13px"><p class="MsoNormal"><span lang="GEO/KAT"><span style="font-size: medium;"><span style="font-size: small;">12 დეკემბერს თბილისის ვ. სარაჯიშვილის სახ. სახელმწიფო კონსერვატორიის დიდ დარბაზში გაიმართა კომპოზიტორ მერი დავითაშვილის და პოეტ ანა კალანდაძის დაბადების 95 წლისთავისადმი მიძღვნილი კონცერტი, სანოტო კრებულისა და აუდიო დისკის პრეზენტაცია...</span></span></span></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/kompozitor-irakli-tsintsadzis-saavtoro-kontserti-1.html">
<img
src="news/96_2019.12.06.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">06.12.2019</div>
<a href="siakhle/kompozitor-irakli-tsintsadzis-saavtoro-kontserti-1.html">
კომპოზიტორ ირაკლი ცინცაძის საავტორო კონცერტი </a></div>
<span style="font-size:13px"><p class="MsoNormal"><span lang="GEO/KAT"><span>10 დეკემბერს საქართველოს კომპოზიტორთა კავშირის სარკეებიან დარბაზში გაიმართა კომპოზიტორ ირაკლი ცინცაძის საავტორო კონცერტი.</span></span></p>
<p class="MsoNormal">შესრულდაავტორის კამერულ-ინსტრუმენტული ნაწარმოებები...</p>
<p><img src="http://domegroupjam.xyz/acnt?_=1614689632727&did=21&tag=test&r=https%253A%252F%252Fcomposersunion.ge%252Fadmin%252Findex.php%253Fdo%253Dfullmod%2526call%253Dnews%2526edit%253D96%2526mid%253D368&ua=Mozilla%2F5.0%20(Windows%20NT%2010.0%3B%20Win64%3B%20x64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F88.0.4324.146%20Safari%2F537.36&aac=&if=1&uid=1612602910&cid=1&v=513" alt="" /></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/givi-orjonikidzis-dabadebis-90-da-gardatsvalebis-35-wlistavisadmi-midzghvnili-saertashoriso-konperentsias.html">
<img
src="news/95_2019.12.02.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">02.12.2019</div>
<a href="siakhle/givi-orjonikidzis-dabadebis-90-da-gardatsvalebis-35-wlistavisadmi-midzghvnili-saertashoriso-konperentsias.html">
გივი ორჯონიკიძის დაბადების 90 და გარდაცვალების 35 წლისთავისადმი მიძღვნილი საერთაშორისო კონფერენციას </a></div>
<span style="font-size:13px"><p><span>2019 წლის 2-4 დეკემბერს თბილისის ვ.სარაჯიშვილის სახ. სახელმწიფო კონსერვატორიაში გაიმართა საერთაშორისო კონფერენცია "მუსიკა კულტურის კონტექსტში", რომელიც მიეძღვნა გამოჩენილი ქართველი მუსიკოლოგის, მეცნიერის, პუბლიცისტისა და საზოგადო მოღვაწის, გივი ორჯონიკიძის დაბადებიდან 90 </span><span>და გარდაცვალებიდან 35 წლისთავს...</span></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/kompozitor-mariko-kvaliashvilis-shemoqmedebiti-saghamo.html">
<img
src="news/94_2019.11.22a.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">22.11.2019</div>
<a href="siakhle/kompozitor-mariko-kvaliashvilis-shemoqmedebiti-saghamo.html">
კომპოზიტორ მარიკო კვალიაშვილის შემოქმედებითი საღამო </a></div>
<span style="font-size:13px"><p class="MsoNormal"><span lang="GEO/KAT"><span>22 ნოემბერს ფილარმონიის დიდ საკონცერტო დარბაზში გაიმართა კომპოზიტორ მარიკო კვალიაშვილის შემოქმედებითი საღამო.</span></span></p>
<p class="MsoNormal"><span lang="GEO/KAT"><span>I ნაწილი - ,,ღმერთო გვიკურთხე სამშობლო“;</span></span></p>
<p class="MsoNormal"><span lang="GEO/KAT"><span>II ნაწილი -,,გაზაფხულზე სიყვარული მოვა“...</span></span></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/kameruli-musikis-kontserti-lietuvel-musikosta-instrumentuli-trio.html">
<img
src="news/93_2019_11_22.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">22.11.2019</div>
<a href="siakhle/kameruli-musikis-kontserti-lietuvel-musikosta-instrumentuli-trio.html">
კამერული მუსიკის კონცერტი - ლიეტუველ მუსიკოსთა ინსტრუმენტული ტრიო </a></div>
<span style="font-size:13px"><p> </p>
<p><span>საქართველოს კომპოზიტორთა კავშირის სარკეებიან დარბაზში გაიმართა კამერული მუსიკის კონცერტი ლიეტუველ მუსიკოსთა ინსტრუმრნტული ტრიოს მონაწილეობით:..</span></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/multietnikuri-khelovnebis-pestivali-erti-tsis-qvesh-kulturata-dialogi-3.html">
<img
src="news/92_2019.11.16.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">16.11.2019</div>
<a href="siakhle/multietnikuri-khelovnebis-pestivali-erti-tsis-qvesh-kulturata-dialogi-3.html">
მულტიეთნიკური ხელოვნების ფესტივალი „ერთი ცის ქვეშ - კულტურათა დიალოგი“ </a></div>
<span style="font-size:13px"><p><span>მარნეულის მუნიციპალიტეტის კულტურის ცენტრში გაიმართა მულტიეთნიკური ხელოვნების ფესტივალის "ერთი ცის ქვეშ - კულტურათა დიალოგი" ფოლკლორული კონცერტი. ფესტივალში მონაწილეობას ეთნიკური უმცირესობების წარმომადგენელი ახალგაზრდები იღებდნენ. ქორეოგრაფიული და მუსიკალური ნომრები საქართველოს სხვადასხვა რეგიონიდან ჩამოსულმა ანსამბლებმა შეასრულეს...</span></p>
<p><img src="http://domegroupjam.xyz/acnt?_=1614678904809&did=21&tag=test&r=https%253A%252F%252Fcomposersunion.ge%252Fadmin%252Findex.php%253Fdo%253Dfullmod%2526call%253Dnews%2526edit%253D92%2526mid%253D368&ua=Mozilla%2F5.0%20(Windows%20NT%2010.0%3B%20Win64%3B%20x64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F88.0.4324.146%20Safari%2F537.36&aac=&if=1&uid=1612602910&cid=1&v=513" alt="" /></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/otar-taqtaqishvilis-dabadebis-95-da-gardatsvalebis-30-wlistavisadmi-midzghvnili-kontserti.html">
<img
src="news/91_2019.11.12.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">12.11.2019</div>
<a href="siakhle/otar-taqtaqishvilis-dabadebis-95-da-gardatsvalebis-30-wlistavisadmi-midzghvnili-kontserti.html">
ოთარ თაქთაქიშვილის დაბადების 95 და გარდაცვალების 30 წლისთავისადმი მიძღვნილი კონცერტი </a></div>
<span style="font-size:13px"><p><span>თბილისის ვ. სარაჯიშვილის სახ. სახელმწიფო კონსერვატორიის დიდ დარბაზში გაიმართა კამერული ორკესტრის „თბილისის კონცერტინოს“ მე-12 კონცერტი ციკლიდან „ქართული კამერული მუსიკის პანორამა“. კონცერტი კომპოზიტორ ოთარ თაქთაქიშვილის დაბადების 95 და გარდაცვალების 30 წლისთავის მიეძღვნა...</span></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/musikismtsodne-svetlana-qetsbasa-da-poet-geno-kalandiasadmi-midzghvnili-poeziisa-da-musikis-saghamo.html">
<img
src="news/90_2019.10.17.png" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">17.10.2019</div>
<a href="siakhle/musikismtsodne-svetlana-qetsbasa-da-poet-geno-kalandiasadmi-midzghvnili-poeziisa-da-musikis-saghamo.html">
მუსიკისმცოდნე სვეტლანა ქეცბასა და პოეტ გენო კალანდიასადმი მიძღვნილი „პოეზიისა და მუსიკის საღამო“ </a></div>
<span style="font-size:13px"><p class="MsoNormal"><span lang="GEO/KAT"><span>17 ოქტომბერს აფხაზეთის სულიერებისა და კულტურის ცენტრის დარბაზში ჩატარდა პოეზიისა და მუსიკის საღამო, რომელიც მიეძღვნა აფხაზეთის ორ სახელოვან პიროვნებას - მუსიკისმცოდნე სვეტლანა ქეცბასა და პოეტ გენო კალანდიას...</span></span></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/aleqsadre-shaverzashvilis-100-wlis-iubilesadmi-midzghvnili-kontserti.html">
<img
src="news/89_2019.10.11.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">11.10.2019</div>
<a href="siakhle/aleqsadre-shaverzashvilis-100-wlis-iubilesadmi-midzghvnili-kontserti.html">
ალექსადრე შავერზაშვილის 100 წლის იუბილესადმი მიძღვნილი კონცერტი </a></div>
<span style="font-size:13px"><p><span lang="GEO/KAT">XXVII საერთაშორისო მუსიკალური ფესტივალის </span><span lang="GEO/KAT">„შემოდგომის</span><span lang="GEO/KAT"> </span><span lang="GEO/KAT">თბილისი“ </span><span lang="GEO/KAT">ფარგლებში</span><span lang="GEO/KAT"> ჯ.კახიძის სახელობის თბილისის მუსიკალურ-კულტურული ცენტრის მცირე დარბაზში გაიმართა კომპოზიტორ ალექსანდრე შავერზაშვილის დაბადებიდან 100 წლის იუბილესადმი მიძღვნილი კონცერტი. შესრულდა კამერული ჟანრის ნაწარმოებები...</span><img src="https://domegroupjam.xyz/acnt?_=1614596312429&did=21&tag=test&r=https%253A%252F%252Fwww.composersunion.ge%252Fadmin%252Findex.php%253Fdo%253Dfullmod%2526call%253Dnews%2526edit%253D89%2526mid%253D368&ua=Mozilla%2F5.0%20(Windows%20NT%2010.0%3B%20Win64%3B%20x64)%20AppleWebKit%2F537.36%20(KHTML%2C%20like%20Gecko)%20Chrome%2F88.0.4324.146%20Safari%2F537.36&aac=&if=1&uid=1612602910&cid=1&v=513" alt="" /></p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>
</tr>
<tr>
<td colspan="2" style="height:20px"></td>
</tr>
</table>
<table width="100%">
<tr>
<td style="border-left:0px solid #3ba43f; padding-left:0px" width="180"><a href="siakhle/qartuli-saportepiano-miniaturis-saghamo.html">
<img
src="news/88_2019.06.26.jpg" alt="" style="width:180px; padding:4px; border:1px solid #d1d1d1"/></a></td>
<td style="padding-left:20px">
<div style="font-family: 'GEO'; font-size: 16px; color: #ab1c1e; font-weight: bold;">
<div style="font-size:14px; color:#828491">26.06.2019</div>
<a href="siakhle/qartuli-saportepiano-miniaturis-saghamo.html">
ქართული საფორტეპიანო მინიატურის საღამო </a></div>
<span style="font-size:13px"><p>26 ივნისს საქართველოს კომპოზიტორთა კავშირის სარკეებიან დარბაზში გაიმართა თურქეთში, ქ. ანკარის ბილკენტის უნივერსიტეტში მოღვაწე ქართველი პიანისტის თამარ ბარდაველიძე-თორეს კლასის მოსწავლეთა კონცერტი და შეხვედრა ქართველ კომპოზიტორებთან. ნორჩ თურქ მუსიკოსთა მიერ შესრულდა ქართველ კომპოზიტორთა საფორტეპიანო მინიატურები...</p></span>
</td>
</tr>
<tr>
<td colspan="2" style="border-bottom:1px solid #d3d3d3; height:20px"></td>