// JavaScript Document
function oneArticle(title, photo, eventDate, eventPlace, text, more, postDate, top)
{
	document.write("<p class=subhead2>");
	if (photo!="")
	{
		document.write("<img src=\"");
		document.write(photo);
		document.write("\" alt=\"");
		document.write(title);
		document.write("\" width=200 height=138 align=right />");
	}
	
	document.write("<strong><span class=subhead2>");
	document.write(title);
	document.write("</span></strong></p>\n");

	document.write("<p class=copy_12>");
	document.write(text);
	
	if (more!="")
	{
		document.write("&nbsp;");
		document.write("<a ");
		if (top)
			document.write(" target=_blank ");
		document.write("href=\"");
		document.write(more);
		document.write("\"><strong>Read more...</strong></a>");
	}

	document.write("<br>");
	if (eventPlace != "")
		document.write("<br><b>Event place:</b> " + eventPlace);
	if (eventDate != "")
		document.write("<br><b>Event date:</b> " + eventDate);
//	if (postDate != "")
//		document.write("<br><b>Date posted:</b> " + postDate);

	document.write("</p>");
}

