var LastChangeDate = "17 February 2010"
	
var NewsHeader = new Array();
var NewsDate = new Array();
var NewsText = new Array();
var NewsLinkURL = new Array();
var NewsLinkTxt = new Array();

NewsHeader[10] = "Fourth WIOD working paper now available online";
NewsDate[10] = "February 2010";
NewsText[10] = "The Third WIOD working paper has now been published online. The title is: 'Preferential Trade Agreements and the Structure of International Trade'. This paper is written by Neil Foster and Robert Stehrer.";
NewsLinkURL[10] = "/publications/memoabstract.htm?id=4";
NewsLinkTxt[10] = "WIOD Working Paper Nr. 4";

NewsHeader[9] = "Third WIOD working paper now available online";
NewsDate[9] = "February 2010";
NewsText[9] = "The Third WIOD working paper has now been published online. The title is: 'Joint Estimation of Supply and Use Tables'. This paper is written by Umed Temurshoev and Marcel P.Timmer.";
NewsLinkURL[9] = "/publications/memoabstract.htm?id=3";
NewsLinkTxt[9] = "WIOD Working Paper Nr. 3";

NewsHeader[8] = "WIOD-consortium meeting: Industry-Level Analyses of Globalization and its Consequences";
NewsDate[8] = "January 2010";
NewsText[8] = "The first full WIOD-consortium meeting after the project's kickoff will be held in Vienna, from May 26 till May 28, 2010. Deadline abstracts: March 15";
NewsLinkURL[8] = "/publications/wiod_call_for_papers_vienna_may_2010a.pdf";
NewsLinkTxt[8] = "Call for Papers";

NewsHeader[7] = "Deliverable January 2010";
NewsDate[7] = "January 2010";
NewsText[7] = "Deliverable D6.1 is now available on the website. Note that these files are accessible for consortium members only. Please contact us at wiod@rug.nl if you are a member of the consortium and have trouble logging in.";
NewsLinkURL[7] = "/members/reports.htm";
NewsLinkTxt[7] = "Reports page (restricted)";

NewsHeader[6] = "Second WIOD working paper now available online";
NewsDate[6] = "January 2010";
NewsText[6] = "The second WIOD working paper has now been published online. The title is: 'Projection of Supply and Use tables: methods and their empirical assessment'. This paper is written by Umed Temurshoev, Norihiko Yamano and Colin Webb.";
NewsLinkURL[6] = "/publications/memoabstract.htm?id=2";
NewsLinkTxt[6] = "WIOD Working Paper Nr. 2";

NewsHeader[5] = "Data Construction Meeting in Paris";
NewsDate[5] = "December 2009";
NewsText[5] = "On Thursday 3 and Friday 4 December, the OECD hosted the second WIOD data construction meeting in Paris. Together with a team of invited experts, the challanges that lie ahead in constructing the WIOD database were discussed. The presentation slides and the meeting report are now available online on the Reports page of this website.";
NewsLinkURL[5] = "/members/reports.htm";
NewsLinkTxt[5] = "Reports page (restricted)";

NewsHeader[4] = "Deliverables October 2009";
NewsDate[4] = "October 2009";
NewsText[4] = "Deliverables D1.1, D2.1 and D4.1 are now available on the website. Note that these files are accessible for consortium members only. Please contact us at wiod@rug.nl if you are a member of the consortium and have trouble logging in.";
NewsLinkURL[4] = "/members/reports.htm";
NewsLinkTxt[4] = "Reports page (restricted)";

NewsHeader[3] = "WIOD presentation and WIOD logo now available";
NewsDate[3] = "July 2009";
NewsText[3] = "A standard introductory presentation on the WIOD project is now available on the website. Furthermore the official high-resolution WIOD-logo is posted online. Both the presentation and the logo can be used by all consortium members. The files are available in the Members' Section under reports.";
NewsLinkURL[3] = "/members/reports.htm";
NewsLinkTxt[3] = "Reports Section";

NewsHeader[2] = "First WIOD working paper now available online";
NewsDate[2] = "June 2009";
NewsText[2] = "The first WIOD working paper has now been published online. The title is: 'The Choice of Model in the Construction of Industry Coefficients Matrices'. This paper is written by Jose Rueda-Cantuche and Thijs ten Raa.";
NewsLinkURL[2] = "/publications/memoabstract.htm?id=1";
NewsLinkTxt[2] = "WIOD Working Paper Nr. 1";

NewsHeader[1] = "Reports Kick-Off meeting 14 and 15 May 2009";
NewsDate[1] = "May 2009";
NewsText[1] = "Reports on the WIOD kick-off meeting are now available on the website. Note that these files are accessible for consortium members only. Please contact us at wiod@rug.nl if you are a member of the consortium and have trouble logging in.";
NewsLinkURL[1] = "/members/reports.htm";
NewsLinkTxt[1] = "Reports page (restricted)";

NewsHeader[0] = "Kick-Off meeting 14 and 15 May 2009";
NewsDate[0] = "April 2009";
NewsText[0] = "On the 14th and 15th of May the first consortium meeting for the WIOD project will be held. The meeting will take place in the Sheraton Hotel at Schiphol Airport, Amsterdam.";
NewsLinkURL[0] = "";
NewsLinkTxt[0] = "";

function insertNewsItem(List, newHeader, newDate, newText, newLinkURL, newLinkTxt) {
	var newNewsItemHeader = document.createElement("div");
	var newNewsItemHeaderURL = document.createElement("a");	
	var newNewsItemHeaderTxt = document.createTextNode(newHeader);
	newNewsItemHeader.className = "NewsItemHeader";
	newNewsItemHeaderURL.href = newLinkURL;
	newNewsItemHeaderURL.appendChild(newNewsItemHeaderTxt);
	newNewsItemHeader.appendChild(newNewsItemHeaderURL);

	var newNewsItemDate = document.createElement("div");
	var newNewsItemDateTxt = document.createTextNode(newDate);
	newNewsItemDate.className = "NewsItemDate";
	newNewsItemDate.appendChild(newNewsItemDateTxt);

	var newNewsItemText = document.createElement("div");
	var newNewsItemTextTxt = document.createTextNode(newText);
	newNewsItemText.className = "NewsItemText";
	newNewsItemText.appendChild(newNewsItemTextTxt);

	var newNewsItemLink = document.createElement("div");
	var newNewsItemLinkTxt = document.createTextNode("Go directly to: ");
	var newNewsItemLinkURL = document.createElement("a");
	var newNewsItemLinkURLTxt = document.createTextNode(newLinkTxt);
	newNewsItemLink.className = "NewsItemLink";
	newNewsItemLinkURL.href = newLinkURL;
	newNewsItemLinkURL.appendChild(newNewsItemLinkURLTxt);
	newNewsItemLink.appendChild(newNewsItemLinkTxt);
	newNewsItemLink.appendChild(newNewsItemLinkURL);

	List.appendChild(newNewsItemHeader);
	List.appendChild(newNewsItemDate);
	List.appendChild(newNewsItemText);
	List.appendChild(document.createElement("br"));
	List.appendChild(newNewsItemLink);
	List.appendChild(document.createElement("br"));
	List.appendChild(document.createElement("br"));
}