ÿþ<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <!-- saved from url=(0019)http://viluthu.org/ --> <HTML><HEAD><META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <TITLE>Viluthu</TITLE> <LINK href="cssverticalmenu.css" type="text/css" rel="stylesheet"> <LINK rel="stylesheet" type="text/css" href="cssverticalmenu.css"> <STYLE type="text/css"> BODY { BACKGROUND-COLOR: #000000 } .style1 { FONT-WEIGHT: bold; FONT-SIZE: 12px; COLOR: #FFFFFF; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; text-transform: capitalize; } </STYLE> <STYLE type="text/css"> .style6 { FONT-SIZE: 12px } A:link { COLOR: #0000ff; text-decoration: none; } A:visited { COLOR: #0000ff; text-decoration: none; } A:hover { COLOR: #0000ff; text-decoration: none; } A:active { COLOR: #0000ff; text-decoration: none; } .style8 { FONT-SIZE: 20px; COLOR: #111908 } .style11 { FONT-WEIGHT: bold; COLOR: #182400 } </STYLE> <SCRIPT src="mmenu.js" type="text/javascript"></SCRIPT> <SCRIPT src="menuItems.js" type="text/javascript"> /*********************************************** * Omni Slide Menu script - © John Davenport Scheuer: http://home.comcast.net/~jscheuer1/ * very freely adapted from Dynamic-FX Slide-In Menu (v 6.5) script- by maXimus * This notice MUST stay intact for legal use * Visit Dynamic Drive at http://www.dynamicdrive.com/ for full original source code ***********************************************/ </SCRIPT> <LINK rel="stylesheet" type="text/css" href="csshorizontalmenu.css"> <SCRIPT type="text/javascript" src="csshorizontalmenu.js"> /*********************************************** * CSS Horizontal List Menu- by JavaScript Kit (www.javascriptkit.com) * Menu interface credits: http://www.dynamicdrive.com/style/csslibrary/item/glossy-vertical-menu/ * This notice must stay intact for usage * Visit JavaScript Kit at http://www.javascriptkit.com/ for this script and 100s more ***********************************************/ </SCRIPT> <SCRIPT type="text/javascript" src="cssverticalmenu.js"> /*********************************************** * CSS Vertical List Menu- by JavaScript Kit (www.javascriptkit.com) * Menu interface credits: http://www.dynamicdrive.com/style/csslibrary/item/glossy-vertical-menu/ * This notice must stay intact for usage * Visit JavaScript Kit at http://www.javascriptkit.com/ for this script and 100s more ***********************************************/ </SCRIPT> <SCRIPT type="text/javascript"> /* /*********************************************** * Ultimate Fade-In Slideshow (v1.51): ? Dynamic Drive (http://www.dynamicdrive.com) * This notice MUST stay intact for legal use * Visit http://www.dynamicdrive.com/ for this script and 100s more. ***********************************************/ var fadeimages=new Array() //SET IMAGE PATHS. Extend or contract array as needed fadeimages[0]=["images/x.jpg", "", ""] //plain image syntax fadeimages[1]=["images/y.jpg", "", ""] //image with link syntax fadeimages[2]=["images/z.jpg", "", ""] //image with link syntax fadeimages[3]=["images/xy.jpg", "", ""] //image with link syntax var fadeimages2=new Array() //2nd array set example. Remove or add more sets as needed. //SET IMAGE PATHS. Extend or contract array as needed fadeimages2[0]=["images/pic/01.jpg", "", ""] //plain image syntax fadeimages2[1]=["images/pic/02.jpg", "http://www.cssdrive.com", ""] //image with link syntax fadeimages2[2]=["images/pic/03.jpg", "http://www.javascriptkit.com", "_new"] //image with link and target syntax var fadebgcolor="white" */ ////NO need to edit beyond here///////////// var fadearray=new Array() //array to cache fadeshow instances var fadeclear=new Array() //array to cache corresponding clearinterval pointers var dom=(document.getElementById) //modern dom browsers var iebrowser=document.all function fadeshow(theimages, fadewidth, fadeheight, borderwidth, delay, pause, displayorder){ this.pausecheck=pause this.mouseovercheck=0 this.delay=delay this.degree=10 //initial opacity degree (10%) this.curimageindex=0 this.nextimageindex=1 fadearray[fadearray.length]=this this.slideshowid=fadearray.length-1 this.canvasbase="canvas"+this.slideshowid this.curcanvas=this.canvasbase+"_0" if (typeof displayorder!="undefined") theimages.sort(function() {return 0.5 - Math.random();}) //thanks to Mike (aka Mwinter) :) this.theimages=theimages this.imageborder=parseInt(borderwidth) this.postimages=new Array() //preload images for (p=0;p<theimages.length;p++){ this.postimages[p]=new Image() this.postimages[p].src=theimages[p][0] } var fadewidth=fadewidth+this.imageborder*2 var fadeheight=fadeheight+this.imageborder*2 if (iebrowser&&dom||dom) //if IE5+ or modern browsers (ie: Firefox) document.write('<div id="master'+this.slideshowid+'" style="position:relative;width:'+fadewidth+'px;height:'+fadeheight+'px;overflow:hidden;"><div id="'+this.canvasbase+'_0" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div><div id="'+this.canvasbase+'_1" style="position:absolute;width:'+fadewidth+'px;height:'+fadeheight+'px;top:0;left:0;filter:progid:DXImageTransform.Microsoft.alpha(opacity=10);opacity:0.1;-moz-opacity:0.1;-khtml-opacity:0.1;background-color:'+fadebgcolor+'"></div></div>') else document.write('<div><img name="defaultslide'+this.slideshowid+'" src="'+this.postimages[0].src+'"></div>') if (iebrowser&&dom||dom) //if IE5+ or modern browsers such as Firefox this.startit() else{ this.curimageindex++ setInterval("fadearray["+this.slideshowid+"].rotateimage()", this.delay) } } function fadepic(obj){ if (obj.degree<100){ obj.degree+=10 if (obj.tempobj.filters&&obj.tempobj.filters[0]){ if (typeof obj.tempobj.filters[0].opacity=="number") //if IE6+ obj.tempobj.filters[0].opacity=obj.degree else //else if IE5.5- obj.tempobj.style.filter="alpha(opacity="+obj.degree+")" } else if (obj.tempobj.style.MozOpacity) obj.tempobj.style.MozOpacity=obj.degree/101 else if (obj.tempobj.style.KhtmlOpacity) obj.tempobj.style.KhtmlOpacity=obj.degree/100 else if (obj.tempobj.style.opacity&&!obj.tempobj.filters) obj.tempobj.style.opacity=obj.degree/101 } else{ clearInterval(fadeclear[obj.slideshowid]) obj.nextcanvas=(obj.curcanvas==obj.canvasbase+"_0")? obj.canvasbase+"_0" : obj.canvasbase+"_1" obj.tempobj=iebrowser? iebrowser[obj.nextcanvas] : document.getElementById(obj.nextcanvas) obj.populateslide(obj.tempobj, obj.nextimageindex) obj.nextimageindex=(obj.nextimageindex<obj.postimages.length-1)? obj.nextimageindex+1 : 0 setTimeout("fadearray["+obj.slideshowid+"].rotateimage()", obj.delay) } } fadeshow.prototype.populateslide=function(picobj, picindex){ var slideHTML="" if (this.theimages[picindex][1]!="") //if associated link exists for image slideHTML='<a href="'+this.theimages[picindex][1]+'" target="'+this.theimages[picindex][2]+'">' slideHTML+='<img src="'+this.postimages[picindex].src+'" border="'+this.imageborder+'px">' if (this.theimages[picindex][1]!="") //if associated link exists for image slideHTML+='</a>' picobj.innerHTML=slideHTML } fadeshow.prototype.rotateimage=function(){ if (this.pausecheck==1) //if pause onMouseover enabled, cache object var cacheobj=this if (this.mouseovercheck==1) setTimeout(function(){cacheobj.rotateimage()}, 100) else if (iebrowser&&dom||dom){ this.resetit() var crossobj=this.tempobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas) crossobj.style.zIndex++ fadeclear[this.slideshowid]=setInterval("fadepic(fadearray["+this.slideshowid+"])",50) this.curcanvas=(this.curcanvas==this.canvasbase+"_0")? this.canvasbase+"_1" : this.canvasbase+"_0" } else{ var ns4imgobj=document.images['defaultslide'+this.slideshowid] ns4imgobj.src=this.postimages[this.curimageindex].src } this.curimageindex=(this.curimageindex<this.postimages.length-1)? this.curimageindex+1 : 0 } fadeshow.prototype.resetit=function(){ this.degree=10 var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas) if (crossobj.filters&&crossobj.filters[0]){ if (typeof crossobj.filters[0].opacity=="number") //if IE6+ crossobj.filters(0).opacity=this.degree else //else if IE5.5- crossobj.style.filter="alpha(opacity="+this.degree+")" } else if (crossobj.style.MozOpacity) crossobj.style.MozOpacity=this.degree/101 else if (crossobj.style.KhtmlOpacity) crossobj.style.KhtmlOpacity=this.degree/100 else if (crossobj.style.opacity&&!crossobj.filters) crossobj.style.opacity=this.degree/101 } fadeshow.prototype.startit=function(){ var crossobj=iebrowser? iebrowser[this.curcanvas] : document.getElementById(this.curcanvas) this.populateslide(crossobj, this.curimageindex) if (this.pausecheck==1){ //IF SLIDESHOW SHOULD PAUSE ONMOUSEOVER var cacheobj=this var crossobjcontainer=iebrowser? iebrowser["master"+this.slideshowid] : document.getElementById("master"+this.slideshowid) crossobjcontainer.onmouseover=function(){cacheobj.mouseovercheck=1} crossobjcontainer.onmouseout=function(){cacheobj.mouseovercheck=0} } this.rotateimage() } </SCRIPT> <META content="MSHTML 6.00.2900.2180" name="GENERATOR"> <SCRIPT src="AC_RunActiveContent.js" type="text/javascript"></SCRIPT> <STYLE type="text/css"> <!-- .style16 { font-size: 9px; text-transform: uppercase; } .style17 {color: #FF0000} .style25 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; } .style27 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 9px; } .style31 {COLOR: #fc3500; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; font-size: 10px;} .style59 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold; color: #FF0000; } .style62 { COLOR: #FC3500; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; } .style63 {color: #0000FF} .style64 {font-size: 10px; font-weight: bold; font-family: Verdana, Arial, Helvetica, sans-serif;} .style3 { FONT-WEIGHT: bold; FONT-SIZE: 10px; COLOR: #fc3500; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif } .style23 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; color: #fc3500; } .style19 { font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 11px; } .style70 {COLOR: #000000; FONT-FAMILY: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; } .style71 {color: #000000} .style72 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 10px; font-weight: bold; color: #0000FF; } .style73 {font-family: Verdana, Arial, Helvetica, sans-serif; font-size: 12px; font-weight: bold; color: #0000FF; } .style74 {font-size: 11px} .style75 {font-size: 11px; color: #FF0000; } --> </STYLE> </HEAD><BODY leftmargin="0" topmargin="0" marginheight="0" marginwidth="0"> <TABLE id="Table_01" width="751" align="center" bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" height="960"> <!--DWLayoutTable--> <TBODY> <TR> <TD colspan="4" valign="top" bgcolor="#dbeda3" height="115"><SCRIPT type="text/javascript"> AC_FL_RunContent( 'codebase','http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,28,0','width','210','height','113','src','logoanimation','quality','high','pluginspage','http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash','bgcolor','#DBEDA3','movie','logoanimation' ); //end AC code </SCRIPT><EMBED width="210" height="113" src="logoanimation.swf" quality="high" pluginspage="http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFlash" bgcolor="#DBEDA3" type="application/x-shockwave-flash"> <NOSCRIPT></NOSCRIPT></TD> <TD colspan="3" background="images/Aboutusmain.jpg"><!--DWLayoutEmptyCell-->&nbsp;</TD> <TD colspan="4" valign="top" bgcolor="#d8eda2"><DIV align="center"><SPAN class="style8">&nbsp;</SPAN><BR> <SPAN class="style11">&nbsp;&nbsp;&nbsp;</SPAN><SPAN class="style8">Center For Human Resource Development</SPAN><SPAN class="style11">&nbsp;</SPAN><BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<BR> &nbsp; <STRONG> Promoting a culture of participatory democracy </STRONG></DIV></TD> </TR> <TR> <TD colspan="11" valign="middle" align="center" bgcolor="#669933" height="31"><DIV class="style1" style15="" align="center"> <DIV class="style16" align="center">"A search for truly democratic alternatives to the present is possible and a commitment<BR> to social experimentation with them is a worthy and fulfilling human enterprise </DIV> </DIV></TD> </TR> <TR> <TD width="10" height="317">&nbsp;</TD> <TD colspan="2" rowspan="3" valign="top"><TABLE id="Table_" width="132" bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0"> <!--DWLayoutTable--> <TBODY><TR> <TD width="1" height="17"> <TD width="38"> <TD width="84"> <TD width="6"> <TD width="4"> </TR> <TR> <TD height="156"> <TD colspan="3" valign="top" align="left"><UL id="verticalmenu" class="glossymenu"> <LI><A href="http://viluthu.org/index.htm" class="style6">Home</A></LI> <LI><A href="http://viluthu.org/Aboutus.html" class="style6">About US</A> <UL> <LI><A href="http://viluthu.org/Aboutus.html" title="About Viluthu">About Viluthu</A></LI> <LI><A href="http://viluthu.org/Aboutus.html" title="Objective">Objectives</A></LI> <LI><A href="http://viluthu.org/Aboutus.html" title="Relevance Of Strategy">Relevance of Strategy </A></LI> <LI><A href="http://viluthu.org/Aboutus.html" title="Action Strategies">Action Strategies</A></LI> <LI><A href="http://viluthu.org/Aboutus.html" title="Areas Of Focus">Areas of focus</A></LI> <LI><A href="http://viluthu.org/Aboutus.html" title="The Structure Of Viluthu">Structure of Viluthu</A></LI> <LI><A href="http://viluthu.org/Aboutus.html" title="Management Committee" target="_parent">Management Committee</A></LI> </UL> </LI> <LI><A href="http://viluthu.org/Viluthuworks.html">Viluthu s Work</A> <UL> <LI><A href="http://viluthu.org/Viluthuworks.html">Current Activities</A></LI> <LI><A href="http://viluthu.org/Viluthuworks.html">Partnerships</A></LI> <LI><A href="http://viluthu.org/images/w.jpg">Where we work</A></LI> <LI><A href="http://viluthu.org/Viluthupublication.html">List of Publications </A></LI> <LI><A href="http://viluthu.org/annual2003-2006.html">Annual Report</A></LI> </UL> </LI> <LI><A href="http://viluthu.org/Articles.html">articles &amp; Campaigns</A></LI> <LI><A href="http://viluthu.org/contactus.html">Contact Us </A></LI> <LI><A href="http://viluthu.org/get.html">Get Involved </A></LI> <LI><A href="http://viluthu.org/#">Other Links </A></LI> </UL></TD> </TD> </TR> <TR> <TD height="8"> <TD> <TD> <TD> <TD> </TR> <TR> <TD colspan="3" valign="top" background="images/blog.jpg" height="88"><DIV class="style1 style17" align="center">Blog</DIV></TD> <TD> <TD> </TR> <TR> <TD height="10"> <TD> <TD> <TD> <TD> </TR> <TR> <TD height="159"> <TD valign="top" align="left" background="images/lindex_14.jpg"><IMG src="images/resources.gif" width="36" height="36"><BR> <IMG src="images/5.gif" width="36" height="34"><BR> <IMG src="images/4.gif" width="37" height="43"><BR> <IMG src="images/1.gif" width="35" height="43"></TD> <TD valign="top" align="left" background="images/lindex_15.jpg" bgcolor="#436f18"><SPAN class="style27">&nbsp;<A href="http://viluthu.org/Viluthupublication.html"><BR> Viluthu Publications</A></SPAN><SPAN class="style6"><A href="http://viluthu.org/Viluthupublication.html"><BR> <BR> </A></SPAN><SPAN class="style31 style25"><A href="http://viluthu.org/Articles.html" class="style27">Articles</A></SPAN> <BR> <BR> <SPAN class="style27"><A href="">Media Productions</A></SPAN><BR> <SPAN class="style27"><BR> <BR> <A href="http://viluthu.org/#">Photo Gallery</A></SPAN> </TD> <TD>&nbsp;</TD> <TD>&nbsp;</TD> </TR> <TR> <TD height="5"> <TD> <TD> <TD> <TD> </TR> <TR> <TD height="106"> <TD colspan="2" valign="top" bgcolor="#ffffff"><IMG src="images/add.jpg" width="122" height="106"></TD> <TD> <TD> </TR> </TBODY></TABLE></TD> <TD colspan="6" valign="top"><TABLE id="Table_" width="398" bgcolor="#ffffff" border="0" cellpadding="0" cellspacing="0" height="311"> <!--DWLayoutTable--> <TBODY> <TR> <TD valign="top" width="404" align="left" bgcolor="#ffffff" height="311"><BR> <SCRIPT type="text/javascript"> //new fadeshow(IMAGES_ARRAY_NAME, slideshow_width, slideshow_height, borderwidth, delay, pause (0=no, 1=yes), optionalRandomOrder) new fadeshow(fadeimages, 397, 300, 1, 6000, 1, "R") </SCRIPT><DIV id="master0" style="position: relative; width: 399px; height: 302px; overflow: hidden;"><DIV id="canvas0_0" style="position: absolute; width: 399px; height: 302px; top: 0pt; left: 0pt; opacity: 0.990099; background-color: white; z-index: 3;"><IMG src="images/z.jpg" border="1px"></DIV><DIV id="canvas0_1" style="position: absolute; width: 399px; height: 302px; top: 0pt; left: 0pt; opacity: 0.990099; background-color: white; z-index: 3;"><IMG src="images/x.jpg" border="1px"></DIV></DIV> </TD> </TR> </TBODY> </TABLE></TD> <TD rowspan="7" valign="top" width="199"><TABLE width="100%" border="0" cellpadding="0" cellspacing="0" height="749"> <!--DWLayoutTable--> <TBODY><TR> <TD width="10" height="15"> <TD width="188"> <TD width="8"> </TR> <TR> <TD height="231"> <TD valign="top"><TABLE width="100%" bgcolor="#b9d1a1" border="1" bordercolor="#476f26" cellpadding="0" cellspacing="0"> <!--DWLayoutTable--> <TBODY><TR> <TD valign="top" width="189" height="364"><TABLE width="100%" border="0" cellpadding="0" cellspacing="0" height="362"> <!--DWLayoutTable--> <TBODY><TR> <TD width="114" height="2"> <TD width="3"> </TR> <TR> <TD height="1"> <TD> </TR> <TR> <TD valign="top" height="79"><TABLE width="200" border="1" height="79"> <TBODY><TR> <TH scope="col" width="110" height="73"><P class="style74" align="left"><SPAN class="style72">Street Theatre</SPAN></P> <TH scope="col" width="74"><DIV align="right"><IMG src="images/kamala.JPG" width="73" height="64"></DIV></TH> </TR> </TBODY></TABLE> </TD> <TD> </TR> <TR> <TD valign="top" height="146"><P class="style70">Street theatre performances have been held in the Jaffna and Puttalam districts to create awareness among the voters. Street dramas were held to educate the residents of Puttalam on Local Government issues. These were held in Hijrath Nagar, Umarabath, Soltan, Palavi, Thayum Nagar and Rakmalyaya for the benefit of those who were uprooted from Jaffna. The event held, From July 28th to July 30th 2009, subsequent to the Jaffna Municipal council election was a great success. The street theatre performances that were conducted in the districts of Jaffna and Batticaloa during the months of January and February 2010, with the funding of ARD, had a greater impact on educating the general public as to structure and functions of the local government and its role in the development of the divisions with particular emphasis on the participation of women. </P> </TD> <TD> </TR> </TBODY></TABLE></TD> </TR> </TBODY></TABLE></TD> <TD> </TR> <TR> <TD height="18"> <TD> <TD> </TR> <TR> <TD height="161"> <TD valign="top"><TABLE width="100%" bgcolor="#b2cc9c" border="1" bordercolor="#2e5909" cellpadding="0" cellspacing="0"> <!--DWLayoutTable--> <TBODY><TR> <TD valign="top" width="189" height="160"><TABLE width="100%" border="0" cellpadding="0" cellspacing="0"> <!--DWLayoutTable--> <TBODY><TR> <TD width="1" height="71"> <TD rowspan="2" valign="top" width="110"><A href="http://viluthu.org/Viluthupublication.html" class="style59"><BR> New Publication</A><BR> <BR> <SPAN class="style59">Kutti Arasasngam</SPAN></TD> <TD colspan="2" valign="top"><DIV align="right"><IMG src="images/Kootu.jpg" width="77" height="61"></DIV></TD> </TR> <TR> <TD height="3"> <TD width="72"> <TD width="6"> </TR> <!--DWLayoutTable--> <TR> <TD height="69"> <TD colspan="2" valign="top"><SPAN class="style70">Kutti Arasangam ,&nbsp;in&nbsp;Tamil, attempts to explain democracy and governance at local government level to potential women politicians. &nbsp;<A href="http://viluthu.org/Viluthupublication.html">more..</A></SPAN></TD> <TD> </TR> </TBODY></TABLE></TD> </TR> </TBODY></TABLE></TD> <TD> </TR> <TR> <TD height="21"> <TD>&nbsp;</TD> <TD> </TR> <TR> <TD height="179"> <TD valign="top"><TABLE width="100%" bgcolor="#b2cc9c" border="1" bordercolor="#2e5909" cellpadding="0" cellspacing="0" height="200"> <!--DWLayoutTable--> <TBODY><TR> <TD valign="top" width="189" height="198"><TABLE width="100%" border="0" cellpadding="0" cellspacing="0"> <!--DWLayoutTable--> <TBODY><TR> <TD valign="top" width="137" height="31"><A href="http://viluthu.org/Articles.html" class="style59"><BR> &nbsp;Interesting Articles</A></TD> <TD rowspan="2" valign="top" width="52"><IMG src="images/Interestingartical.gif" width="52" height="50"></TD> <TD width="1"> </TR> <TR> <TD height="19">&nbsp;</TD> <TD> </TR> <TR> <TD colspan="2" valign="top" height="48"><SPAN class="style3"><SPAN class="style17">&nbsp;Kollywood and&nbsp; the Eelam &nbsp;&nbsp;Connection</SPAN><BR> <SPAN class="style27"><SPAN class="style63">&nbsp;(&nbsp;by &nbsp;Shanthi Sachithanandam.<BR> &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;April 2008)</SPAN>&nbsp;<BR> </SPAN></SPAN></TD> <TD> </TR> <TR> <TD colspan="3" valign="top" height="98"><SPAN class="style62"><BR> <SPAN class="style71">This was back in&nbsp; 2003. As&nbsp; I entered&nbsp; the LTTE office at Puliyankulam in the Vanni to obtain my&nbsp;  visa &nbsp; to enter the North, I noticed a familiar figure in the waiting room.</SPAN></SPAN><SPAN class="style70"><A href="http://viluthu.org/Articles.html">&nbsp;&nbsp;more....</A></SPAN></TD> </TR> </TBODY></TABLE></TD> </TR> </TBODY></TABLE></TD> <TD> </TR> </TBODY></TABLE></TD> <TD width="7">&nbsp;</TD> <!-- Second inner table start here-Left --> <!-- THIRD inner table start here-Left --> </TR> <TR> <TD height="16"> <TD width="68"> <TD width="122"> <TD width="19"> <TD width="22"> <TD width="167"> <TD width="4"> <TD> </TR> <TR> <TD height="231"> <TD colspan="2" rowspan="4" valign="top"><TABLE width="100%" border="1" bordercolor="#6699cc" cellpadding="0" cellspacing="0"> <!--DWLayoutTable--> <TBODY><TR> <TD valign="top" width="186" height="350"><TABLE width="100%" bgcolor="#b5d0ee" border="1" cellpadding="0" cellspacing="0" height="453"> <!--DWLayoutTable--> <TBODY><TR> <TD width="1" height="445"> <TD valign="top"><DIV class="style59" align="left"> &nbsp; <TABLE width="100%" bgcolor="#b5d0ee" border="0" cellpadding="0" cellspacing="0" height="370"> <!--DWLayoutTable--> <TBODY><TR> <TD colspan="2" rowspan="2" valign="top"><SPAN class="style73">&nbsp;</SPAN><SPAN class="style72">Latest News</SPAN> <P class="style59">Journalism</P></TD> <TD width="71" height="5"> <TD width="10"> <TD width="2"> </TR> <TR> <TD colspan="2" valign="top" height="65"><DIV align="right"><A href="http://viluthu.org/vilu.JPG"></A></DIV></TD> <TD> </TR> <TR> <TD width="9" height="255">&nbsp;</TD> <TD colspan="2" valign="top"><P class="style19" align="left">A six months course on Democratic Journalism which was conducted to train a total number of 25 participants consisting of Media workers and University undergraduates, was concluded in December 2009 and a certificates awarding ceremony was held at the BMICH on the 12th of December 2009. Professor W. I. de Silva, the dean of the Faculty of Arts and Professor L. A. Sasanka Perera, the Head of the Faculty of Arts of the ...... <BR><BR><BR> <A href="http://viluthu.org/journalism.html">read more </A></P><A href="http://viluthu.org/journalism.html"></A></TD> <TD>&nbsp;</TD> <TD> </TR> <TR> <TD height="1"> <TD width="86"> <TD> <TD> <TD> </TR> </TBODY></TABLE> </DIV></TD> <TD width="6">&nbsp;</TD></TR> <TR> <TD height="2"> <TD> <TD> </TR> <TR> <TD height="2"> <TD> <TD> </TR> <TR> <TD height="2"> <TD> <TD> </TR> </TBODY></TABLE></TD> </TR> </TBODY></TABLE></TD> <TD>&nbsp;</TD> <TD colspan="2" rowspan="4" valign="top"><TABLE width="100%" border="1" bordercolor="#6699cc" cellpadding="0" cellspacing="0" height="407"> <!--DWLayoutTable--> <TBODY><TR> <TD valign="top" width="185" height="339"><TABLE width="100%" bgcolor="#b5d0ee" border="0" cellpadding="0" cellspacing="0" height="450"> <!--DWLayoutTable--> <TBODY><TR> <TD colspan="2" rowspan="2" valign="top"><P><SPAN class="style23">&nbsp;<BR> </SPAN><SPAN class="style59">&nbsp;<A href="">&nbsp;New Initiative <BR> </A>&nbsp;</SPAN></P> <P class="style59"><STRONG><EM>Self motivated young journalists </EM></STRONG></P></TD> <TD width="49" height="5"> <TD width="19"> <TD width="2"> </TR> <TR> <TD colspan="2" valign="top" height="77"><DIV align="right"><IMG src="images/r12.jpg" width="67" height="72"></DIV></TD> <TD> </TR> <TR> <TD width="16" height="280">&nbsp;</TD> <TD colspan="2" valign="top"><P class="style19"> A group of self motivated young journalists among those trained by Viluthu have volunteered themselves to initiate a web-based radio service. Viluthu offered a place and necessary basic equipments for them to operate the web-based radio within the premises of Viluthu. The inauguration of the web-based radio service by the name  sareeram took place on the 19.02.2010, where Ms. Shanthi Sachithanandam, the Executive Chairperson of Viluthu officially launched the web-based radio service. </P> </TD> <TD>&nbsp;</TD> <TD> </TR> <TR> <TD height="39"> <TD width="99"> <TD> <TD> <TD> </TR> </TBODY></TABLE></TD> </TR> </TBODY></TABLE></TD> <TD>&nbsp;</TD> <TD> </TR> <TR> <TD height="4"> <TD width="124"> <TD width="9"> <TD> <TD> <TD> </TR> <TR> <TD height="106"> <TD valign="top"><TABLE width="100%" border="0" cellpadding="0" cellspacing="0"> <!--DWLayoutTable--> <TBODY><TR> <TD width="124" height="1"> </TR> <TR> <TD valign="top" height="105"><IMG src="images/Koodam.jpg" width="122" height="105"></TD> </TR> </TBODY></TABLE></TD> <TD> <TD>&nbsp;</TD> <TD>&nbsp;</TD> <TD> </TR> <TR> <TD height="2"> <TD> <TD> <TD> <TD> <TD> </TR> <TR> <TD height="13"> <TD> <TD> <TD> <TD> <TD> <TD> <TD> <TD> <TD> </TR> <TR> <TD height="2"> <TD> <TD> <TD> <TD> <TD> <TD> <TD> <TD> <TD> <TD> </TR> <TR> <TD colspan="11" valign="top" background="images/public.jpg" bgcolor="#ffffff" height="92"><!--DWLayoutEmptyCell-->&nbsp;</TD> </TR> <TR> <TD colspan="11" valign="top" background="images/index_04.jpg" height="31"><!--DWLayoutEmptyCell-->&nbsp;</TD> </TR> </TBODY> <TBODY> </TBODY> </TABLE> <!-- End ImageReady Slices --> <!-- text below generated by server. PLEASE REMOVE --><!-- Counter/Statistics data collection code --><SCRIPT language="JavaScript" src="whv2_001.js"></SCRIPT><SCRIPT language="javascript">geovisit();</SCRIPT><IMG border="0" style="display:none" src="images/visit.gif"> <NOSCRIPT></NOSCRIPT></BODY></HTML>