function writeLink()
	{
		document.write("<a href='"+this.url+"' title='"+this.summary+". "+this.region+"-"+this.topic+"-"+this.type+"'>"+this.title+"</a> <small><i>"+this.time+"</i></small>");
	}
	function Story(title,summary,region,topic,type,time,url,imageTags)
	{
		this.title=title;
		this.summary=summary;
		this.region=region;
		this.topic=topic;
		this.type=type;
		this.time=time;
		this.url=url;
		this.writeLink=writeLink;
	}
	stories = new Array(10);
			stories[0] = new Story(	"Haití: Empobrecimiento criminal encuentra a Terremoto; Deuda-Pirata y Ocupación estadounidense.",
						"El haber perdido esclavos y haber perdido las tier ...",
						"",
						"",
						"",
						"J25 9:44pm",
						"http://www.anarkismo.net/article/15648");
				stories[1] = new Story(	"Haiti - a history of intervention, occupation and resistance",
						"As predictions for the death toll from the Haitian ...",
						"",
						"",
						"",
						"J20 5:17pm",
						"http://www.anarkismo.net/article/15586");
				stories[2] = new Story(	"Un éditeur pour le socialisme libertaire (1)",
						"Un texte dela revue internationale libertaire Dive ...",
						"",
						"",
						"",
						"D6 4:45pm",
						"http://www.anarkismo.net/article/15192");
				stories[3] = new Story(	"Novembre 1989 : Les révolutionnaires sous les décombres du mur de Berlin",
						"Un texte du num&eacute;ro de novembre du mensuel Alternat ...",
						"",
						"",
						"",
						"D2 4:12pm",
						"http://www.anarkismo.net/article/15141");
				stories[4] = new Story(	"Sur les traces de l\'anarchisme au Québec... en tournée en France!",
						"Ce petit message pour vous informer de la venue en ...",
						"",
						"",
						"",
						"O1 5:26pm",
						"http://www.anarkismo.net/article/14609");
				stories[5] = new Story(	"(1/2) Il y a 40 ans en Italie, l’automne chaud de 1969.",
						"Cette semaine nous vous proposons le premier de 2  ...",
						"",
						"",
						"",
						"S13 8:16pm",
						"http://www.anarkismo.net/article/14416");
				stories[6] = new Story(	"PW & Pinochet",
						"The Dictatorial Roots of Neo-liberal Democracy in  ...",
						"",
						"",
						"",
						"S11 4:53pm",
						"http://www.anarkismo.net/article/13598");
				stories[7] = new Story(	"Roma: Il nome della Rosa",
						"Convegno sul 90&deg; anniversario di Rosa Luxemburg&lt;br /&gt;Tu ...",
						"",
						"",
						"",
						"S9 9:28am",
						"http://www.anarkismo.net/article/14371");
				stories[8] = new Story(	"Review - The IRA and Armed Struggle",
						"Unlike most literature on the ‘conflict’ in the No ...",
						"",
						"",
						"",
						"A24 1:18pm",
						"http://www.anarkismo.net/article/14194");
				stories[9] = new Story(	"&#919; &#949;&#958;&#941;&#947;&#949;&#961;&#963;&#951; &#964;&#969;&#957; &#964;&#963;&#953;&#959;&#956;&#960;&#953;&#957;&#974;&#957;",
						"&amp;#931;&amp;#964;&amp;#951; &amp;#934;&amp;#955;&amp;#969;&amp;#961;&amp;#949;&amp; ...",
						"",
						"",
						"",
						"A24 3:39am",
						"http://www.anarkismo.net/article/14188");
			function writeStoryMarquee(width, height, direction, style)
	{
		document.write("<marquee onMouseOver='stop()' onMouseOut='start()'");
		if(style!=null) document.write(" style='"+style+"'");
		if(width!=null) document.write(" width='"+width+"'");
		if(height!=null) document.write(" height='"+height+"'");
		if(direction!=null) document.write(" direction='"+direction+"'");
		document.write(">");
		for(i=0;i<stories.length;i++)
		{
			stories[i].writeLink();
			if(direction=="up" || direction=="down") document.write("<br><br>");
			else document.write("&nbsp;&nbsp;&nbsp;");
		}
		document.write("</marquee>");
	}
	function writeStoryTable(width, height, align, style)
	{
        	document.write("<table ");		
        	if(style!=null) document.write(" style='"+style+"'");		
        	if(width!=null) document.write(" width='"+width+"'");		
        	if(height!=null) document.write(" height='"+height+"'");		
        	if(align!=null) document.write(" align='"+align+"'");		
        	document.write(">");		
            	document.write("<tr><th>");			
            	document.write(" /  / ");
	    	document.write("</th></tr>");
        	for(i=0;i<stories.length;i++)		
        	{			
            		document.write("<tr><td>");			
            		stories[i].writeLink();
	    		document.write("</td></tr>");
        	}
		document.write("</table>");
        }