﻿// JavaScript Document



var radio_link_config = {

	"id": "radio_link",

	"title": "Լսել օնլայն",

	"position": "260, 235",

	"sound": "radiohay-sounds/Radio.mp3",

	"fillcontent" : "fillRadioLinkContent"

}



function fillRadioLinkContent(containerId){

		var cont = document.getElementById(containerId);

		var str = '<div id="player" style="padding:5px; text-align:center;"></div>';

	

		

		str +=  	'<center>'+ 	

				'<a href="http://radio-tochka.com/radio/radiohay/128/listen.asx" title="Media Player" target="_blank"><img border="0" alt="Media Player" src="images/mplayer.png"/></a>'+

                '<a href="http://radio-tochka.com:6375/listen.pls" title="Winamp" target="_blank"><img border="0" alt="Winamp" src="images/winamp.png"/></a>'+

                '<a href="http://radio-tochka.com/radio/radiohay/128/listen.ram" title="Real Player" target="_blank"><img border="0" alt="Real Player" src="images/realplayer.png"/></a>'+

      			'<div style="font-size:12px;color:#DDD9CE;font-weight:bold;">Լսեք մեզ ձեր սիրելի<br/> նվագարկիչով</div>'+

  			'</center>';



		/*'<div >'+

				'<object id="mediaPlayer"  classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95"      codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=5,1,52,701"   standby="Սպասիր..."  type="application/x-oleobject"          width="300"   height="'+(Browser.isIE ? '50' :'45')+'">'+



				 '<param name="FileName" value="http://89.111.189.3:6375">'+

				 '<param name="ShowControls" value="1">'+

				 '<param name="ShowPositionControls" value="0">'+

				 '<param name="ShowTracker" value="0">'+

				 '<param name="ShowDisplay" value="0">'+

				 '<param name="ShowStatusBar" value="1">'+

				 '<param name="AutoSize" value="1">'+

				 '<param name="AutoStart" value="False">'+

				 '<param name="volume" value="50">'+



 			'<embed type="application/x-mplayer2"  pluginspage="http://www.microsoft.com/windows/mediaplayer/en/default.asp" '+

             ' filename="http://89.111.189.3:6375"  src="http://89.111.189.3:6375"  name="mediaPlayer"   showcontrols="1"  '+

             ' showpositioncontrols="0"  showtracker="0"  showdisplay="0"  showstatusbar="1"  autostart="0"  volume="50"  width="300"  height="'+(Browser.isIE ? '50' :'45')+'"/>'+

			'</object>'+





			'</div>'+*/

   		

		

		cont.innerHTML = str;

		

		 var so = new SWFObject('http://www.radio-tochka.com/jw/mediaplayer.swf', 'stream', '100', '20', '7');

		 so.addVariable('height','20');

		 so.addVariable('width','100');

		 so.addVariable('type', 'mp3');

		 so.addVariable('file','http://89.111.189.3:6375/;stream.nsv');

		 so.addVariable('searchbar','false');

		 so.addVariable('showicons','false');

		 so.addVariable('usefullscreen','false');

		 so.addVariable('autostart','false');

		 so.addVariable('volume','70');

		 so.write('player');

		 

		 

		

}







var smsbox_link_config = {

	"id": "smsbox_link",

	"title": "Պատվերով Երաժշտություն",

	"position": "290, 140",

	"sound": "radiohay-sounds/Axchik.mp3",

	"fillcontent" : "fillSmsBoxContent"

}



function fillSmsBoxContent(containerId){

		var cont = document.getElementById(containerId);

		cont.innerHTML = '<form name="patver" >'+

		'<table align="center" width="310px">'+

           	'<tr>'+

            	'<td width="200" class="form_text_style">'+

                'Անուն *'+

                '</td>'+

                '<td>'+

                '<input type="text" name="p_sender_name" class="form_style" id="p_sender_name">'+

                '</td>'+

            '</tr>'+

            '<tr>'+

            	'<td class="form_text_style">'+

                'Էլ. փոստ *'+

                '</td>'+

                '<td>'+

                '<input type="text" class="form_style" name="p_sender_mail" id="p_sender_mail">'+

                '</td>'+

            '</tr>'+

            

            '<tr>'+

            	'<td class="form_text_style" valign="top">'+

                'Նամակ *'+

                '</td>'+

                '<td>'+

                '<textarea name="p_sender_message" class="form_style" rows="6" id="p_sender_message">Բարև ձեզ, \nես կցանկանայի լսել ...</textarea>'+

                '</td>'+

            '</tr>'+

            '<tr>'+

            	'<td colspan="2" id="p_send_mail_status" class="form_text_style">&nbsp;'+    

                '</td>'+

            '</tr>'+

             '<tr>'+

            	'<td colspan="2" align="center">'+

                '<input type="button" class="button_style" value="Ուղարկել" onClick="sendPatverMail()">'+

                '</td>'+

            '</tr>'+

			

			

        '</table>'+

		'</form>';

		

}







var smsbox2_link_config = {

	"id": "smsbox2_link",

	"title": "Ձեր SMS-ները",

	"position": "470, 200",

	"sound": "radiohay-sounds/Caxikov_Txa.mp3",

	"fillcontent" : "fillSmsBox2Content"

}



function fillSmsBox2Content(containerId){

		var cont = document.getElementById(containerId);

		cont.innerHTML = '<center>'+

							'<form name=tickform><br/>'+

								'<textarea name=tickfield class="smsbox_textarea" wrap=virtual>Այստեղ կարող են լինել ձեր sms-ները :)</textarea>'+

							'</form>'+

						'</center>';

		

		getSMSList(containerId);

		

}

//scroller for sms box

var smsList = [];

var smsListLength = smsList.length;

var x = 0; pos = 0;

var l = 0;

function textticker() {

	

	document.tickform.tickfield.value = smsList[x].substring(0, pos) + "_";

	if(pos++ == l) {

		pos = 0; 

		setTimeout("textticker()", 3000); 

		if(++x == smsList.length) x = 0; 

		l = smsList[x].length;

	} else

		setTimeout("textticker()", 100);

}











function getSMSList(containerId){

	Request.sendGET("xmlparser.php",  resp_getSMSList, containerId);

}



function resp_getSMSList(response, containerId){

	if(!response.responseText) return;

	var resp =  eval("("+response.responseText+")");

	var cont = document.getElementById(containerId);



	if(resp && resp.status == "ok"){

		var arr = resp.data;

		for(var i = 0; i < arr.length; i++){

			var msg = arr[i].text + "\n \n  \t\t"+(Browser.isIE ? "" : "\t\t\t")+arr[i].date;

			smsList.push(msg);

		}

		

	}else{

		smsList = [resp.status];

		

	}



	//start scrolling

	l = smsList[0].length;

	textticker();

}























var news_link_config = {

	"id": "news_link",

	"title": "Նորություններ",

	"position": "250, 350",

	"sound": "radiohay-sounds/Usta_Xachik.mp3",

	"fillcontent" : "fillNewsContent"

}



function fillNewsContent(containerId){

		var cont = document.getElementById(containerId);

		cont.innerHTML = "<span style='color:#DDD9CE;padding-left:10px'>Շուտով...</span>";

}



var contactUs_link_config = {

	"id": "contactUs_link",

	"title": "Կապը մեզ հետ",

	"position": "400,80",

	"sound": "radiohay-sounds/Window_Open.mp3",

	"fillcontent" : "fillContactUsContent"

}



function fillContactUsContent(containerId){

		var cont = document.getElementById(containerId);

		cont.innerHTML = '<form name="contact" method="post" action="contact_us.php" onSubmit="return ValidateForm()">'+

		'<table align="center" width="370px">'+

        	'<tr>'+

            	'<td class="form_text_style" colspan="2">'+

                '<span style="font-weight:bold">Հասցե`</span> Հայաստան, 0010, ք. Երևան, \nՓավստոս Բյուզանդի 1/3, 6րդ հարկ<br/>'+

				'<span style="font-weight:bold">Հեռ` </span>  (374-10)560000, (374-10)529868<br/>'+

				'<span style="font-weight:bold">Ֆաքս`</span>  (374-10)529868<br/>'+

                '<br/>'+

                '</td>'+

            '</tr>'+

        	'<tr>'+

            	'<td width="200" class="form_text_style">'+

                'Անուն *'+

                '</td>'+

                '<td>'+

                '<input type="text" name="cu_sender_name" class="form_style" id="cu_sender_name">'+

                '</td>'+

            '</tr>'+

            '<tr>'+

            	'<td class="form_text_style">'+

                'Էլ. փոստ *'+

                '</td>'+

                '<td>'+

                '<input type="text" class="form_style" name="cu_sender_mail" id="cu_sender_mail">'+

                '</td>'+

            '</tr>'+

             '<tr>'+

            	'<td class="form_text_style">'+

                'Վերնագիր'+

                '</td>'+

                '<td>'+

                '<input type="text"  class="form_style" name="cu_sender_subject" id="cu_sender_subject">'+

                '</td>'+

            '</tr>'+

            '<tr>'+

            	'<td class="form_text_style" valign="top">'+

                'Նամակ *'+

                '</td>'+

                '<td>'+

                '<textarea name="cu_sender_message" class="form_style" rows="6" id="cu_sender_message"></textarea>'+

                '</td>'+

            '</tr>'+

            '<tr>'+

            	'<td colspan="2" id="cu_send_mail_status" class="form_text_style">&nbsp;'+    

                '</td>'+

            '</tr>'+

             '<tr>'+

            	'<td colspan="2" align="center">'+

                '<input type="button" class="button_style" value="Ուղարկել" onClick="sendContactUsMail()">'+

                '</td>'+

            '</tr>'+

			

			

        '</table>'+

		'</form>';

		

}







var europeanPerspective_link_config = {

	"id": "europeanPerspective_link",

	"title": "European Perspective",

	"position": "150,80",

	"sound": "radiohay-sounds/Usta_Xachik.mp3",

	"fillcontent" : "fillEuropeanPerspectiveContent"

}



function fillEuropeanPerspectiveContent(containerId){

		var cont = document.getElementById(containerId);

		cont.innerHTML = '<table align="center" width="370px">'+

			'<tr>'+

				'<td><img src="euro_images/euro.png"/></td>'+

				'<td align="right">'+

					'<img src="euro_images/logo1.png" style="margin-right:5px;"/>'+

					'<img src="euro_images/logo2.png"/>'+

				'</td>'+

			'</tr>'+

			

			'<tr>'+

				'<td colspan="2" style="padding-top:10px">'+

					'<div style="height:240px;overflow:auto;">'+

					

							

						'<div style="height:240px;overflow:auto;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/reporter.JPG" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">(European Perspectives) live programme, which broadcasts every Saturday on 11:00, aims to present European Union and its programmes to Armenian society. Each programme has a separate topic: the guest of the programme, an invited expert gives its explainations about the topic: A number of components are included in the programme, such as vox-pop, stories, news-casts, in-calls, which make more dynamic the talk-show of 70 minutes duration. Maximizing EU presence in Armenia, Georgia andn Azerbaijan. The project aims at raising awareness and understanding of the processes and the underlying cultural, political and social values guiding the life of EU and the interaction between its citizens and institutions of its member states. The project is funded by European Union.</td>'+
							'</tr></table>'+

						'</div>'+

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/September 12.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>September 12: </b>The guest of the <b>"Insurance"</b> programme was <b>Aram Piruzyan, Executive Director of “London-Yerevan” Insurance company</b>. The main topics of the programme were Insurance policy & culture in Armenia, Insurance tendencies in EU, Similarities and differences between Armenia and EU, Supplementary materials.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.09.12.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/September 5.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>September 5: </b>The guest of the <b>"School education"</b> programme was <b>Naira Nikoghosyan, Head of project the “New School” of educational complex Mkhitar Sebastaci</b>. The main topics of the programme were The new system of school education in Armenia, Educational system in Europe, The differences and similarities between Armenian and EU educational systems, Supplementary materials.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.09.05.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/August 8.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>August 8: </b>The guest of the <b>"Religious tolerance"</b> programme was <b>Avetiq Ishkhanyan, Head of Armenian Helsinki Committee</b>. The main topics of the programme were Religious directions, Society Attitude to the different religious, Supplementary materials.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.08.08.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/August 1.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>August 1: </b>The guest of the <b>"Tourism"</b> programme was <b>Mekhak Apresyan, Regional economic development and tourism department head</b>. The main topics of the programme were Tourism in Armenia, European Tourism, Differences between Armenian and Europe Tourism, Supplementary materials.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.08.01.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/July 25.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>July 25: </b>The guest of the <b>"Energy Sector Strategy"</b> programme was <b>Artur Lalayan, Solaren, Company Specializing in Alternative Energy Sources</b>. The main topics of the programme were EU-Armenia Joint Projects, Metsamor Nuclear Plant and Its Fortune, Renewable Energy, Alternative Sources of Energy, Supplementary materials.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.07.25.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/July 18.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>July 18: </b>The guest of the <b>"Judiciary System Reforms"</b> programme was <b>Pargev Ohanyan, Director, Presumption Legal Center</b>. The main topics of the programme were Judiciary System, European Court of Human Rights, European Court of Justice, Judiciary System in EU Member States, RA Judiciary System, Similarities with and Differences from ones in EU Member States, Supplementary materials.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.07.18.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/July 11.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>July 11: </b>The guest of the <b>"Urban Construction"</b> programme was <b>Mkrtich Minasyan, Chairman of RoA Union of Architects</b>. The main topics of the programme were Armenia-EU Joint Projects, Urban Construction Policy in EU Member States, RA Urban Construction Policy.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.07.11.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/July 4.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>July 4: </b>The guest of the <b>"Rule of Law/Constitution"</b> programme was <b>Hrayr Tovmasyan, specialist of the Constitutional Law</b>. The main topics of the programme were EU Constitution, RA Constitution: Overview, Similarities of the RA Constitution with those of EU Member States.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.07.04.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/June 27.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>June 27: </b>The guest of the <b>"Macro-economic sustainability as a precondition for European integration"</b> programme was <b>Suren Poghosyan, Programme Budgeting Expert</b>. The main topics of the programme were Europe-Armenia economic relations, Armenia’s achievements within the framework of ENP.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.06.27.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						

						

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/June 20.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>June 20: </b>The guest of the <b>"Freedom of Speech"</b> programme was <b>Armine Ohanyan, Chief Editor of "Hraparak" Daily</b>. The main topics of the programme were Europeam legislative framework related to freedom of speech, Freedom of speech standards in EU countries, Freedom of Speech in Armenia; differences from European standards.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.06.20.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/June 13.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>June 13: </b>The guest of the <b>"Educational System within the framework of European Standards; Bologna Treaty"</b> programme was <b>Ara Avetisyan, Deputy Minister of RA Science & Education</b>. The main topics of the programme Bologna process, European programme on vocational education, TEMPUS programme.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.06.13.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/June 6.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>June 6: </b>The guest of the <b>"Yerevan Municipality Elections"</b> programme was <b>Sos Guimishyan, Board member of Community and Financial Specialists Union</b>. The main topics of the programme were European Parliament Elections, Yerevan Municipality Elections, Local-self governance in EU member states.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.06.06.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/May 23.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>May 23: </b>The guest of the <b>"Environmental issues"</b> programme was <b>Karine Danielyan, Chairwoman of the Association for Sustainable Human Development</b>. The main topics of the programme were European legislative framework related to environment, results of monitoring of implementing of responsibilities by Armenia, Environmental situation in Armenia.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.05.23.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						

						

						

						

						

						

						

						

						

						

						

						

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/May 16.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>May 16: </b>The guest of the <b>"Europe Day"</b> programme was <b>Gerasim Barseghyan, Member of the expert group on European Movement of Armenia</b>. The main topics of the programme were European Community, its role in geopolitical developments, social initiative directed at awareness raising on EU.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.05.16.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/May 9.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>May 9: </b>The guest of the <b>"Nagorno-Karabakh Conflict from European perspectives"</b> programme was <b>Aghavni Karakhanyan, Director of Institute of Civil Society and Regional Development</b>. The main topics of the programme were Peaceful ways of solution of Nagorno-Karabakh conflict: involvement of European Community in this process, European experience of conflict resolution: comparisons.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.05.09.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/May 2.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>May 2: </b>The guest of the <b>"Democratic Institutions"</b> programme was <b>Andranik Tevanyan, Director of "Politeconomia" research institute</b>. The main topics of the programme were Democracy as an effective system of governance, Experience of EU member countries.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.05.02.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/April 25.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>April 25: </b>The guest of the <b>"Armenian-Turkey relations in the European Context"</b> programme was <b>Andrias Ghukasyan, expert of international law</b>. The main topics of the programme were Road map, importance of regulations of Armenia-Turkey relations as a guaranty for the integration, Inter-political issues.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.04.25.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/April 18.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>April 18: </b>The guest of the <b>"Armenia’s role in the European Culture & European tendencies in the Armenian Culture"</b> programme was <b>Arshak Banuchyan, Deputy Director of Matenadaran</b>. The main topics of the programme were Culture as an essential guaranty for people’s co-existence, Similarities between and influences of the Armenian and European culture.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.04.18.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/April 11.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>April 11: </b>The guest of the <b>"European Neighbourhoods Policy"</b> programme was <b>Vahe Hovhannisyan, Former member of RA National Assembly</b>. The main topics of the programme were What is ENP, Armenia & ENP.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.04.11.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/April 4.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>April 4: </b>The guest of the <b>"Formula of European Co-existance"</b> programme was <b>Sergey Minasyan, Deputy Head of Caucasus Institute</b>. The main topics of the programme were Preconditions for conflicts, Conflict resolution tools, Co-existance conditions in South Caucasus, European co-existance as a value.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.04.04.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

						

						

						

						

						'<div style="height:240px;overflow:hidden;">'+

							'<table style="width:100%"><tr>'+

								'<td valign="top"><img src="euro_images/March 28.jpg" style="width:115px;"/></td>'+

								

								'<td class="form_text_style" valign="top">'+

								'<b>March 28: </b>The guest of <b>"What is Europe"</b> programme was <b>political scientist Ervand Bozoyan</b>. The main topics of the programme were Historical Overview of Europe, European Value System, Similarities between the Armenian Reality and European Value System.'+

								'<div class="euro_sound"><a href="Evropakan_herankarner/2009.03.28.mp3" target="_blank">To listen this program click here</a></div>'+

								'</td>'+

							'</tr></table>'+

						'</div>'+

					

						

					'</div>'+

				'</td>'+

				

			'</tr>'+

		'</table>';

		

}