var LastChangeDate = "February 17, 2010"

// WIOD Working Papers
var Memo = new Array();

Memo[3] = {
	memoNr: "4",
	memoTitle: "Preferential Trade Agreements and the Structure of International Trade",
	authorLastName: "Foster",
	authorFirstName: "Neil",
	authorPreposition: "",
	coAuthor: "and Robert Stehrer",
	memoDate: "February 17, 2010",
	memoAbstract: "In this paper we examine the impact of membership in Preferential Trade Agreements (PTAs)on trade between PTA members. Rather than considering the impact of PTA membership on the volume of trade we consider the impact of membership on the structure of trade. For a large sample of countries over the period 1962-2000 we find that membership in a PTA is associated with an increase in the extent of intra-industry trade. In addition, we find that the effect of PTA membership on IIT is larger when a PTA is formed between two developed countries.",
	app1URL: "",
	app1Txt: "",
	app2URL: "",
	app2Txt: "",
	app3URL: "",
	app3Txt: ""
};


Memo[2] = {
	memoNr: "3",
	memoTitle: "Joint Estimation of Supply and Use Tables",
	authorLastName: "Temurshoev",
	authorFirstName: "Umed",
	authorPreposition: "",
	coAuthor: "and Marcel P. Timmer",
	memoDate: "February 16, 2010",
	memoAbstract: "We propose a new biproportional method specifically designed for joint projection of Supply and Use tables (SUTs). In contrast to standard input-output techniques, this method does not require the availability of total outputs by product for the projection year(s), a condition which is not often met in practice. The algorithm, called the SUT-RAS method, jointly estimates SUTs that are immediately consistent. It is applicable to different settings of SUTs, such as the frameworks with basic prices and purchasers’ prices, and a setting in which Use tables are separated into domestic and imported uses. Our empirical evaluations show that the SUT-RAS method performs quite well compared to widely used short-cut methods.",
	app1URL: "",
	app1Txt: "",
	app2URL: "",
	app2Txt: "",
	app3URL: "",
	app3Txt: ""
};


Memo[1] = {
	memoNr: "2",
	memoTitle: "Projection of Supply and Use tables: methods and their empirical assessment",
	authorLastName: "Temurshoev",
	authorFirstName: "Umed",
	authorPreposition: "",
	coAuthor: "and Norihiko Yamano and Colin Webb",
	memoDate: "January 18, 2010",
	memoAbstract: "In this paper we present and perform the relative performance test of eight existing updating methods for the projection of Supply and Use tables (SUTs) in the example of the Netherlands and Spain. Some of the presented methods are less (or not) known in the literature, and have been slightly revised in projecting negative elements and preserving the signs of the entries of original matrices in the estimated ones. It has been found that (G)RAS and two other methods proposed, respectively, by Harthoorn and van Dalen (1987) and Kuroda (1988) produce the best estimates for the data at hand. Their relative success also suggests the stability of transactions’ ratios for larger deliveries.",
	app1URL: "",
	app1Txt: "",
	app2URL: "",
	app2Txt: "",
	app3URL: "",
	app3Txt: ""
};

Memo[0] = {
	memoNr: "1",
	memoTitle: "The Choice of Model in the Construction of Industry Coefficients Matrices",
	authorLastName: "Rueda-Cantuche",
	authorFirstName: "Jose M.",
	authorPreposition: "",
	coAuthor: "and Thijs ten Raa",
	memoDate: "June 01, 2009",
	memoAbstract: "Kop Jansen and ten Raa's (1990) characterization of input-output product tables were adopted by the United Nations (1993) but recent frequent OECD publications and several EU funded projects in input-output analysis pitch product against industry tables and raise the issue of construction for the latter. We show how the main models are instances of the transfer principle, with alternative assumptions on the variation of input-output coefficients across product markets. We augment the theory by formulating desirable properties for industry tables and investigate the so-called fixed product and fixed industry sales structure models, which are used by statistical institutes. The fixed industry sales structure model is shown to be superior.",
	app1URL: "",
	app1Txt: "",
	app2URL: "",
	app2Txt: "",
	app3URL: "",
	app3Txt: ""
};

var Month = new Array();
Month[0] = "January";
Month[1] = "February";
Month[2] = "March";
Month[3] = "April";
Month[4] = "May";
Month[5] = "June";
Month[6] = "July";
Month[7] = "August";
Month[8] = "September";
Month[9] = "October";
Month[10] = "November";
Month[11] = "December";

function insertMemorandum(List, newNr, newTitle, newAuthorLastName, newAuthorFirstName, newAuthorPreposition, newCoAuthor, newDate, newApp1URL, newApp1Txt, newApp2URL, newApp2Txt, newApp3URL, newApp3Txt) {
	var newMemorandumHeader = document.createElement("div");
	var newMemorandumHeaderURL = document.createElement("a");
	var newMemorandumHeaderTxt = document.createTextNode("WIOD Working Paper Nr. " + newNr);
	newMemorandumHeader.className = "PublicationsHeader";
	newMemorandumHeaderURL.href = "/publications/memoabstract.htm?id=" + newNr;
	newMemorandumHeaderURL.appendChild(newMemorandumHeaderTxt);
	newMemorandumHeader.appendChild(newMemorandumHeaderURL);
	
	var newMemorandumTitle = document.createElement("div");
	var newMemorandumTitleDesc = document.createElement("span");
	var newMemorandumTitleDescTxt = document.createTextNode("Title: ");
	var newMemorandumTitleTxt= document.createTextNode (newTitle);
	newMemorandumTitleDesc.className = "Desc";
	newMemorandumTitleDesc.appendChild(newMemorandumTitleDescTxt);
	newMemorandumTitle.appendChild(newMemorandumTitleDesc);
	newMemorandumTitle.appendChild(newMemorandumTitleTxt);
	
	var newMemorandumAuthor = document.createElement("div");
	var newMemorandumAuthorDesc = document.createElement("span");
	var newMemorandumAuthorDescTxt = document.createTextNode("Author(s): ");
	var newMemorandumAuthorTxt = document.createTextNode(newAuthorPreposition + " " + newAuthorLastName.toUpperCase() + ", " + newAuthorFirstName + " " + newCoAuthor);
	newMemorandumAuthorDesc.className = "Desc";
	newMemorandumAuthorDesc.appendChild(newMemorandumAuthorDescTxt);
	newMemorandumAuthor.appendChild(newMemorandumAuthorDesc);
	newMemorandumAuthor.appendChild(newMemorandumAuthorTxt);
	
	var newGMTDate = new Date(newDate);
	// Date.parse(newGMTDate);		
	var newMemorandumDate = document.createElement("div");
	var newMemorandumDateDesc = document.createElement("span");
	var newMemorandumDateDescTxt = document.createTextNode("Date: ");
	var newMemorandumDateTxt = document.createTextNode(Month[newGMTDate.getMonth()] + " " + newGMTDate.getFullYear());
	newMemorandumDateDesc.className = "Desc";
	newMemorandumDateDesc.appendChild(newMemorandumDateDescTxt);
	newMemorandumDate.appendChild(newMemorandumDateDesc);
	newMemorandumDate.appendChild(newMemorandumDateTxt);
		
	var newMemorandumAbstract = document.createElement("span");
	var newMemorandumAbstractDiv = document.createTextNode(" | ");
	var newMemorandumAbstractURL = document.createElement("a");
	var newMemorandumAbstractURLTxt = document.createTextNode("Abstract");
	newMemorandumAbstractURL.href = "/publications/memoabstract.htm?id=" + newNr;
	newMemorandumAbstractURL.appendChild(newMemorandumAbstractURLTxt);
	newMemorandumAbstract.appendChild(newMemorandumAbstractDiv);
	newMemorandumAbstract.appendChild(newMemorandumAbstractURL);
	newMemorandumDate.appendChild(newMemorandumAbstract);
		
	var newMemorandumFullText = document.createElement("span");
	var newMemorandumFullTextDiv = document.createTextNode(" | ");
	var newMemorandumFullTextURL = document.createElement("a");
	var newMemorandumFullTextURLTxt = document.createTextNode("Full Text");
	newMemorandumFullTextURL.onclick = function() {pageTracker._trackPageview('/publications/papers/wiod' + newNr + '.pdf');};
	newMemorandumFullTextURL.href = "/publications/papers/wiod" + newNr + ".pdf";
	newMemorandumFullTextURL.target = "_blank";
	newMemorandumFullTextURL.appendChild(newMemorandumFullTextURLTxt);
	newMemorandumFullText.appendChild(newMemorandumFullTextDiv);
	newMemorandumFullText.appendChild(newMemorandumFullTextURL);
	newMemorandumDate.appendChild(newMemorandumFullText);
	
	if (newApp1URL != "") {
		var newMemorandumApp1 = document.createElement("span");
		var newMemorandumApp1Div = document.createTextNode(" | ");
		var newMemorandumApp1URL = document.createElement("a");
		var newMemorandumApp1Txt = document.createTextNode(newApp1Txt);
		newMemorandumApp1URL.onclick = function() {pageTracker._trackPageview(newApp1URL);};
		newMemorandumApp1URL.href = newApp1URL;
		newMemorandumApp1URL.target = "_blank";
		newMemorandumApp1URL.appendChild(newMemorandumApp1Txt);
		newMemorandumApp1.appendChild(newMemorandumApp1Div);
		newMemorandumApp1.appendChild(newMemorandumApp1URL);
		newMemorandumDate.appendChild(newMemorandumApp1);
	}
	if (newApp2URL != "") {
		var newMemorandumApp2 = document.createElement("span");
		var newMemorandumApp2Div = document.createTextNode(" | ");
		var newMemorandumApp2URL = document.createElement("a");
		var newMemorandumApp2Txt = document.createTextNode(newApp2Txt);
		newMemorandumApp2URL.onclick = function() {pageTracker._trackPageview(newApp2URL);};
		newMemorandumApp2URL.href = newApp2URL;
		newMemorandumApp2URL.target = "_blank";
		newMemorandumApp2URL.appendChild(newMemorandumApp2Txt);
		newMemorandumApp2.appendChild(newMemorandumApp2Div);
		newMemorandumApp2.appendChild(newMemorandumApp2URL);
		newMemorandumDate.appendChild(newMemorandumApp2);
	}
	if (newApp3URL != "") {
		var newMemorandumApp3 = document.createElement("span");
		var newMemorandumApp3Div = document.createTextNode(" | ");
		var newMemorandumApp3URL = document.createElement("a");
		var newMemorandumApp3Txt = document.createTextNode(newApp3Txt);
		var newMemorandumApp2Txt = document.createTextNode(newApp2Txt);
		newMemorandumApp3URL.onclick = function() {pageTracker._trackPageview(newApp3URL);};
		newMemorandumApp3URL.href = newApp3URL;
		newMemorandumApp3URL.target = "_blank";
		newMemorandumApp3URL.appendChild(newMemorandumApp3Txt);
		newMemorandumApp3.appendChild(newMemorandumApp3Div);
		newMemorandumApp3.appendChild(newMemorandumApp3URL);
		newMemorandumDate.appendChild(newMemorandumApp3);
	}	
		
	List.appendChild(newMemorandumHeader);
	List.appendChild(newMemorandumTitle);
	List.appendChild(newMemorandumAuthor);
	List.appendChild(newMemorandumDate);
	List.appendChild(document.createElement("br"));
}

function insertMemoAbstract(List, Header, newNr, newTitle, newAuthorLastName, newAuthorFirstName, newAuthorPreposition, newCoAuthor, newDate, newAbstract, newApp1URL, newApp1Txt, newApp2URL, newApp2Txt, newApp3URL, newApp3Txt) {
	var newMemorandumHeader = document.createElement("div");
	var newMemorandumHeaderH1 = document.createElement("h1");
	var newMemorandumHeaderH1Txt = document.createTextNode("WIOD Working Paper Nr. " + newNr);
	newMemorandumHeaderH1.appendChild(newMemorandumHeaderH1Txt);
	newMemorandumHeader.appendChild(newMemorandumHeaderH1);
	while (Header.hasChildNodes()) Header.removeChild(Header.firstChild);
	Header.appendChild(newMemorandumHeader);
	
	var newMemorandumTitle = document.createElement("div");
	var newMemorandumTitleDesc = document.createElement("span");
	var newMemorandumTitleDescTxt = document.createTextNode("Title: ");
	var newMemorandumTitleURL = document.createElement("a");
	var newMemorandumTitleTxt= document.createTextNode (newTitle);
	newMemorandumTitleDesc.className = "Desc";
	newMemorandumTitleURL.onclick = function() {pageTracker._trackPageview('/publications/papers/wiod' + newNr + '.pdf');};
	newMemorandumTitleURL.href = "/publications/papers/wiod" + newNr + ".pdf";
	newMemorandumTitleURL.target = "_blank";
	newMemorandumTitleDesc.appendChild(newMemorandumTitleDescTxt);
	newMemorandumTitle.appendChild(newMemorandumTitleDesc);
	newMemorandumTitleURL.appendChild(newMemorandumTitleTxt);
	newMemorandumTitle.appendChild(newMemorandumTitleURL);
	
	var newMemorandumAuthor = document.createElement("div");
	var newMemorandumAuthorDesc = document.createElement("span");
	var newMemorandumAuthorDescTxt = document.createTextNode("Author(s): ");
	var newMemorandumAuthorTxt = document.createTextNode(newAuthorFirstName + " " + newAuthorPreposition + " " + newAuthorLastName + " " + newCoAuthor);
	newMemorandumAuthorDesc.className = "Desc";
	newMemorandumAuthorDesc.appendChild(newMemorandumAuthorDescTxt);
	newMemorandumAuthor.appendChild(newMemorandumAuthorDesc);
	newMemorandumAuthor.appendChild(newMemorandumAuthorTxt);
	
	var newMemorandumAbstract = document.createElement("div");
	var newMemorandumAbstractDesc = document.createElement("span");
	var newMemorandumAbstractDescTxt = document.createTextNode("Abstract: ");
	var newMemorandumAbstractTxt = document.createTextNode(newAbstract);
	newMemorandumAbstractDesc.className = "Desc";
	newMemorandumAbstractDesc.appendChild(newMemorandumAbstractDescTxt);
	newMemorandumAbstract.appendChild(newMemorandumAbstractDesc);
	newMemorandumAbstract.appendChild(newMemorandumAbstractTxt);
	
	var newGMTDate = new Date(newDate);
	var newMemorandumDate = document.createElement("div");
	var newMemorandumDateDesc = document.createElement("span");
	var newMemorandumDateDescTxt = document.createTextNode("Date: ");
	var newMemorandumDateTxt = document.createTextNode(Month[newGMTDate.getMonth()] + " " + newGMTDate.getFullYear());
	newMemorandumDateDesc.className = "Desc";
	newMemorandumDateDesc.appendChild(newMemorandumDateDescTxt);
	newMemorandumDate.appendChild(newMemorandumDateDesc);
	newMemorandumDate.appendChild(newMemorandumDateTxt);
				
	var newMemorandumFullText = document.createElement("span");
	var newMemorandumFullTextDiv = document.createTextNode(" | ");
	var newMemorandumFullTextURL = document.createElement("a");
	var newMemorandumFullTextURLTxt = document.createTextNode("Full Text");
	newMemorandumFullTextURL.onclick = function() {pageTracker._trackPageview('/publications/papers/wiod' + newNr + '.pdf');};
	newMemorandumFullTextURL.href = "/publications/papers/wiod" + newNr + ".pdf";
	newMemorandumFullTextURL.target = "_blank";
	newMemorandumFullTextURL.appendChild(newMemorandumFullTextURLTxt);
	newMemorandumFullText.appendChild(newMemorandumFullTextDiv);
	newMemorandumFullText.appendChild(newMemorandumFullTextURL);
	newMemorandumDate.appendChild(newMemorandumFullText);
	
	if (newApp1URL != "") {
		var newMemorandumApp1 = document.createElement("span");
		var newMemorandumApp1Div = document.createTextNode(" | ");
		var newMemorandumApp1URL = document.createElement("a");
		var newMemorandumApp1Txt = document.createTextNode(newApp1Txt);
		newMemorandumApp1URL.onclick = function() {pageTracker._trackPageview(newApp1URL);};
		newMemorandumApp1URL.href = newApp1URL;
		newMemorandumApp1URL.target = "_blank";
		newMemorandumApp1URL.appendChild(newMemorandumApp1Txt);
		newMemorandumApp1.appendChild(newMemorandumApp1Div);
		newMemorandumApp1.appendChild(newMemorandumApp1URL);
		newMemorandumDate.appendChild(newMemorandumApp1);
	}
	if (newApp2URL != "") {
		var newMemorandumApp2 = document.createElement("span");
		var newMemorandumApp2Div = document.createTextNode(" | ");
		var newMemorandumApp2URL = document.createElement("a");
		var newMemorandumApp2Txt = document.createTextNode(newApp2Txt);
		newMemorandumApp2URL.onclick = function() {pageTracker._trackPageview(newApp2URL);};
		newMemorandumApp2URL.href = newApp2URL;
		newMemorandumApp2URL.target = "_blank";
		newMemorandumApp2URL.appendChild(newMemorandumApp2Txt);
		newMemorandumApp2.appendChild(newMemorandumApp2Div);
		newMemorandumApp2.appendChild(newMemorandumApp2URL);
		newMemorandumDate.appendChild(newMemorandumApp2);
	}
	if (newApp3URL != "") {
		var newMemorandumApp3 = document.createElement("span");
		var newMemorandumApp3Div = document.createTextNode(" | ");
		var newMemorandumApp3URL = document.createElement("a");
		var newMemorandumApp3Txt = document.createTextNode(newApp3Txt);
		newMemorandumApp3URL.onclick = function() {pageTracker._trackPageview(newApp3URL);};
		newMemorandumApp3URL.href = newApp3URL;
		newMemorandumApp3URL.target = "_blank";
		newMemorandumApp3URL.appendChild(newMemorandumApp3Txt);
		newMemorandumApp3.appendChild(newMemorandumApp3Div);
		newMemorandumApp3.appendChild(newMemorandumApp3URL);
		newMemorandumDate.appendChild(newMemorandumApp3);
	}	
		
	List.appendChild(newMemorandumTitle);
	List.appendChild(newMemorandumAuthor);
	List.appendChild(newMemorandumAbstract);
	List.appendChild(newMemorandumDate);
	List.appendChild(document.createElement("br"));	
}

// Monographs
var Mono = new Array();

Mono[5] = {
	monoNr: "6",
	monoTitle: "Falling Behind: The East German Economy in Comparison with West Germany from 1936 to 2002",
	authorLastName: "Sleifer",
	authorFirstName: "Jaap",
	authorPreposition: "",
	coAuthor: "",
	monoDate: "February 01, 2003",
	monoAbstract: "During the period from 1936 to 2002 the shape of Germany showed major changes, marked by (a) the expansion of the Third Reich; (b) the division of Germany into occupation zones in 1945; (c) the founding of the German Democratic Replublic (GDR) and the Federal Republic of Germany (FRG) in 1949; (d) the unification of the GDR and the FRG in 1990. [...] Before the expansion of the Third Reich the East German economy had the signs of a blossoming landscape. At that time per capita national income amounted to 103 per cent of West Germany, compared to a mere 31 per cent in 1991. In the industrial sector labour productivity droppped from 91 per cent of the West German level in 1936 to merely 31 per cent in 1991...",
	app1URL: "",
	app1Txt: "",
	app2URL: "",
	app2Txt: "",
	app3URL: "",
	app3Txt: "",
	noLink: true
};

Mono[4] = {
	monoNr: "5",
	monoTitle: "Dutch GNP and Its Components, 1800-1913",
	authorLastName: "Smits",
	authorFirstName: "Jan-Pieter",
	authorPreposition: "",
	coAuthor: ", Edwin Horlings and Jan Luiten van Zanden",
	monoDate: "January 01, 2000",
	monoAbstract: "In 1983 Richard Griffiths and Jan de Meere published an influential article entitled The growth of the Dutch economy in the nineteenth century: back to basics? in which they denounced the available national income estimates for the Netherlands in the period before 1920. They revealed the dubious nature of the assumptions and data that were used in the calculations. The authors concluded that 'the current national income estimates can tell us absolutely nothing about the timing of Dutch economic growth in the nineteenth century' and 'that we have to go right back to basics'. Griffiths and De Meere's judgement of the state of quantitative economic history in the Netherlands is especially devastating because the nineteenth-century development of the Dutch economy and its slow industrialization had been the main focus of research since 1945. Yet, it cleared the ground for a gradual reorientation of economic historiography. In a number of earlier publications Griffiths and De Meere had already demonstrated that there was a host of quantitative sources to make a detailed study of the nineteenth century. Their books on economic growth and industrialization - published in 1979 and 1982 - provided new information about the development of the Dutch economy during the first half of the nineteenth century. Despite their initial aim to apply the concepts of national accounting and to construct time series relating to the entire economy, the data which they presented remained fairly selective. They overemphasized the development of the (well-documented) growth industries, without paying due attention to stagnation and decline in other parts of the economy...",
	app1URL: "",
	app1Txt: "",
	app2URL: "",
	app2Txt: "",
	app3URL: "",
	app3Txt: "",
	noLink: false
};

Mono[3] = {
	monoNr: "4",
	monoTitle: "The Economic Performance of the Service Sector in Brazil, Mexico and the USA, A Comparative Historical Perspective",
	authorLastName: "Mulder",
	authorFirstName: "Nanno",
	authorPreposition: "",
	coAuthor: "",
	monoDate: "May 01, 1999",
	monoAbstract: "This study compares the labour productivity performance (value added per person) of the service sectors between Brazil, Mexico and the United States in the period from 1950 to 1996. A comparison of growth rates shows that in all three countries labour productivity grew more slowly in services than in the other sectors of the economy. Comparisons of growth rates are complemented with comparisons of productivity levels, as the former fail to indicate the relative efficiency at which resources are used. To convert value added to a common currency, purchasing power parities were estimated based on ratios of prices per unit of output. When compared to the USA, achievements in services in Brazil and Mexico from 1950 to 1996 were better than their relative performance in their primary and secondary sectors. Within the service sector, public utilities, transport and communications, and finance performed relatively better than wholesale and retail trade, health care and education. For each service industry, the study analyses their more or less successful development and productivity performance.",
	app1URL: "",
	app1Txt: "",
	app2URL: "",
	app2Txt: "",
	app3URL: "",
	app3Txt: "",
	noLink: true
};

Mono[2] = {
	monoNr: "3",
	monoTitle: "Latin American Economic Development. A Causal Analysis in Historical Perspective",
	authorLastName: "Hofman",
	authorFirstName: "Andre",
	authorPreposition: "",
	coAuthor: "",
	monoDate: "January 01, 1998",
	monoAbstract: "This book provides an assessment of Latin American 20th century economic performance from a comparative and historical perspective. The author uses growth accounting methods and previously unavailable long-term series data to present a comprehensive analysis of Latin American development over the course of the century. The performance of Latin American economies over this period is compared to that of three groups of countries: the advanced capitalist economies of France, Germany, Japan, The Netherlands, UK and USA; the newly industrialised economies of Korea and Taiwan; and Spain and Portugal with which Latin America has historical ties. This presents a long-run comparative perspective of growth acceleration and slow-down in Latin America, using similar accounting methods to those pioneered by Angus Maddison. This book has been published by Edward Elgar Ltd in 1998.",
	app1URL: "",
	app1Txt: "",
	app2URL: "",
	app2Txt: "",
	app3URL: "",
	app3Txt: "",
	noLink: true
};

Mono[1] = {
	monoNr: "2",
	monoTitle: "The Economics of Catch-Up: The Experience of Japan and Korea",
	authorLastName: "Pilat",
	authorFirstName: "Dirk",
	authorPreposition: "",
	coAuthor: "",
	monoDate: "November 01, 1993",
	monoAbstract: "The purpose of this study is to analyse economic growth in Japan and Korea and assess the role of catch up in their respective processes of economic development. The study first outlines the historical background of both countries, then proceeds with an analysis and quantification of the main sources of economic growth in the postwar period, and concludes by analysing the development of both countries in an international perspective.",
	app1URL: "",
	app1Txt: "",
	app2URL: "",
	app2Txt: "",
	app3URL: "",
	app3Txt: "",
	noLink: true
};

Mono[0] = {
	monoNr: "1",
	monoTitle: "International Comparisons of Output and Productivity: Manufacturing Productivity Performance of Ten Countries from 1950 to 1990",
	authorLastName: "Ark",
	authorFirstName: "Bart",
	authorPreposition: "van",
	coAuthor: "",
	monoDate: "April 01, 1993",
	monoAbstract: "This study measures and explains comparative levels of performance in manufacturing. Its main aim is to establish the relative output and productivity position in manufacturing for ten countries during the postwar period on the basis of the industry of origin approach. In recent decades, important changes in comparative economic performance among nations have occurred. For the economy as a whole, the unprecedented rise in output and productivity from 1950 to 1973 has been well documented, but the slowdown of the world economy since the 1970s and the slow recovery of the 1980s has raised new questions. A comparative study of productivity levels from a sectoral perspective may be appropriate in the search for explanations.",
	app1URL: "",
	app1Txt: "",
	app2URL: "",
	app2Txt: "",
	app3URL: "",
	app3Txt: "",
	noLink: false
};

function insertMonograph(List, newNr, newTitle, newAuthorLastName, newAuthorFirstName, newAuthorPreposition, newCoAuthor, newDate, newApp1URL, newApp1Txt, newApp2URL, newApp2Txt, newApp3URL, newApp3Txt, newNoLink) {
	var newMonographHeader = document.createElement("div");
	var newMonographHeaderURL = document.createElement("a");
	var newMonographHeaderTxt = document.createTextNode("WIOD Monograph Nr. " + newNr);
	newMonographHeader.className = "PublicationsHeader";
	newMonographHeaderURL.href = "/publications/monoabstract.htm?id=" + newNr;
	newMonographHeaderURL.appendChild(newMonographHeaderTxt);
	newMonographHeader.appendChild(newMonographHeaderURL);
	
	var newMonographTitle = document.createElement("div");
	var newMonographTitleDesc = document.createElement("span");
	var newMonographTitleDescTxt = document.createTextNode("Title: ");
	var newMonographTitleTxt= document.createTextNode (newTitle);
	newMonographTitleDesc.className = "Desc";
	newMonographTitleDesc.appendChild(newMonographTitleDescTxt);
	newMonographTitle.appendChild(newMonographTitleDesc);
	newMonographTitle.appendChild(newMonographTitleTxt);
	
	var newMonographAuthor = document.createElement("div");
	var newMonographAuthorDesc = document.createElement("span");
	var newMonographAuthorDescTxt = document.createTextNode("Author(s): ");
	var newMonographAuthorTxt = document.createTextNode(newAuthorFirstName + " " + newAuthorLastName + " " + newCoAuthor);
	newMonographAuthorDesc.className = "Desc";
	newMonographAuthorDesc.appendChild(newMonographAuthorDescTxt);
	newMonographAuthor.appendChild(newMonographAuthorDesc);
	newMonographAuthor.appendChild(newMonographAuthorTxt);
	
	var newGMTDate = new Date(newDate);
	var newMonographDate = document.createElement("div");
	
	var newMonographDateDesc = document.createElement("span");
	var newMonographDateDescTxt = document.createTextNode("Date: ");
	var newMonographDateTxt = document.createTextNode(Month[newGMTDate.getMonth()] + " " + newGMTDate.getFullYear());
	newMonographDateDesc.className = "Desc";
	newMonographDateDesc.appendChild(newMonographDateDescTxt);
	newMonographDate.appendChild(newMonographDateDesc);
	newMonographDate.appendChild(newMonographDateTxt);
	
	var newMonographAbstract = document.createElement("span");
	var newMonographAbstractDiv = document.createTextNode(" | ");
	var newMonographAbstractURL = document.createElement("a");
	var newMonographAbstractURLTxt = document.createTextNode("Abstract");
	newMonographAbstractURL.href = "/publications/monoabstract.htm?id=" + newNr;
	newMonographAbstractURL.appendChild(newMonographAbstractURLTxt);
	newMonographAbstract.appendChild(newMonographAbstractDiv);
	newMonographAbstract.appendChild(newMonographAbstractURL);
	newMonographDate.appendChild(newMonographAbstract);
		
	if (newNoLink == false) {
		var newMonographFullText = document.createElement("span");
		var newMonographFullTextDiv = document.createTextNode(" | ");
		var newMonographFullTextURL = document.createElement("a");
		var newMonographFullTextURLTxt = document.createTextNode("Full Text");
		newMonographFullTextURL.onclick = function() {pageTracker._trackPageview('/publications/monograph/mono' + newNr + '.pdf');};
		newMonographFullTextURL.href = "/publications/monograph/mono" + newNr + ".pdf";
		newMonographFullTextURL.target = "_blank";	
		newMonographFullTextURL.appendChild(newMonographFullTextURLTxt);
		newMonographFullText.appendChild(newMonographFullTextDiv);
		newMonographFullText.appendChild(newMonographFullTextURL);
		newMonographDate.appendChild(newMonographFullText);
	}	
	if (newApp1URL != "") {
		var newMonographApp1 = document.createElement("span");
		var newMonographApp1Div = document.createTextNode(" | ");
		var newMonographApp1URL = document.createElement("a");
		var newMonographApp1Txt = document.createTextNode(newApp1Txt);
		newMonographApp1URL.onclick = function() {pageTracker._trackPageview(newApp1URL);};
		newMonographApp1URL.href = newApp1URL;
		newMonographApp1URL.target = "_blank";
		newMonographApp1URL.appendChild(newMonographApp1Txt);
		newMonographApp1.appendChild(newMonographApp1Div);
		newMonographApp1.appendChild(newMonographApp1URL);
		newMonographDate.appendChild(newMonographApp1);
	}
	if (newApp2URL != "") {
		var newMonographApp2 = document.createElement("span");
		var newMonographApp2Div = document.createTextNode(" | ");
		var newMonographApp2URL = document.createElement("a");
		var newMonographApp2Txt = document.createTextNode(newApp2Txt);
		newMonographApp2URL.onclick = function() {pageTracker._trackPageview(newApp2URL);};
		newMonographApp2URL.href = newApp2URL;
		newMonographApp2URL.target = "_blank";
		newMonographApp2URL.appendChild(newMonographApp2Txt);
		newMonographApp2.appendChild(newMonographApp2Div);
		newMonographApp2.appendChild(newMonographApp2URL);
		newMonographDate.appendChild(newMonographApp2);
	}
	if (newApp3URL != "") {
		var newMonographApp3 = document.createElement("span");
		var newMonographApp3Div = document.createTextNode(" | ");
		var newMonographApp3URL = document.createElement("a");
		var newMonographApp3Txt = document.createTextNode(newApp3Txt);
		newMonographApp3URL.onclick = function() {pageTracker._trackPageview(newApp3URL);};
		newMonographApp3URL.href = newApp3URL;
		newMonographApp3URL.target = "_blank";
		newMonographApp3URL.appendChild(newMonographApp3Txt);
		newMonographApp3.appendChild(newMonographApp3Div);
		newMonographApp3.appendChild(newMonographApp3URL);
		newMonographDate.appendChild(newMonographApp3);
	}	
		
	List.appendChild(newMonographHeader);
	List.appendChild(newMonographTitle);
	List.appendChild(newMonographAuthor);
	List.appendChild(newMonographDate);
	List.appendChild(document.createElement("br"));
}

function insertMonoAbstract(List, Header, newNr, newTitle, newAuthorLastName, newAuthorFirstName, newAuthorPreposition, newCoAuthor, newDate, newAbstract, newApp1URL, newApp1Txt, newApp2URL, newApp2Txt, newApp3URL, newApp3Txt, newNoLink) {
	var newMonographHeader = document.createElement("div");
	var newMonographHeaderH1 = document.createElement("h1");
	var newMonographHeaderH1Txt = document.createTextNode("WIOD Monograph Nr. " + newNr);
	newMonographHeaderH1.appendChild(newMonographHeaderH1Txt);
	newMonographHeader.appendChild(newMonographHeaderH1);
	while (Header.hasChildNodes()) Header.removeChild(Header.firstChild);
	Header.appendChild(newMonographHeader);
	
	var newMonographTitle = document.createElement("div");
	var newMonographTitleDesc = document.createElement("span");
	var newMonographTitleDescTxt = document.createTextNode("Title: ");	
	newMonographTitleDesc.className = "Desc";	
	newMonographTitleDesc.appendChild(newMonographTitleDescTxt);
	newMonographTitle.appendChild(newMonographTitleDesc);	
		
	var newMonographTitleURL = document.createElement("a");
	var newMonographTitleTxt= document.createTextNode (newTitle);
	if (newNoLink == false) {
		newMonographTitleURL.onclick = function() {pageTracker._trackPageview('/publications/monograph/mono' + newNr + '.pdf');};
		newMonographTitleURL.href = "/publications/monograph/mono" + newNr + ".pdf";
		newMonographTitleURL.target = "_blank";
		newMonographTitleURL.appendChild(newMonographTitleTxt);
		newMonographTitle.appendChild(newMonographTitleURL);
	} else {
		newMonographTitle.appendChild(newMonographTitleTxt);
	}
	
	var newMonographAuthor = document.createElement("div");
	var newMonographAuthorDesc = document.createElement("span");
	var newMonographAuthorDescTxt = document.createTextNode("Author(s): ");
	var newMonographAuthorTxt = document.createTextNode(newAuthorFirstName + " " + newAuthorPreposition + " " + newAuthorLastName + " " + newCoAuthor);
	newMonographAuthorDesc.className = "Desc";
	newMonographAuthorDesc.appendChild(newMonographAuthorDescTxt);
	newMonographAuthor.appendChild(newMonographAuthorDesc);
	newMonographAuthor.appendChild(newMonographAuthorTxt);
	
	var newMonographAbstract = document.createElement("div");
	var newMonographAbstractDesc = document.createElement("span");
	var newMonographAbstractDescTxt = document.createTextNode("Abstract: ");
	var newMonographAbstractTxt = document.createTextNode(newAbstract);
	newMonographAbstractDesc.className = "Desc";
	newMonographAbstractDesc.appendChild(newMonographAbstractDescTxt);
	newMonographAbstract.appendChild(newMonographAbstractDesc);
	newMonographAbstract.appendChild(newMonographAbstractTxt);
	
	var newGMTDate = new Date(newDate);
	var newMonographDate = document.createElement("div");
	var newMonographDateDesc = document.createElement("span");
	var newMonographDateDescTxt = document.createTextNode("Date: ");
	var newMonographDateTxt = document.createTextNode(Month[newGMTDate.getMonth()] + " " + newGMTDate.getFullYear());
	newMonographDateDesc.className = "Desc";	
	newMonographDateDesc.appendChild(newMonographDateDescTxt);	
	newMonographDate.appendChild(newMonographDateDesc);
	newMonographDate.appendChild(newMonographDateTxt);
	
	if (newNoLink == false) {
		var newMonographFullText = document.createElement("span");
		var newMonographFullTextDiv = document.createTextNode(" | ");
		var newMonographFullTextURL = document.createElement("a");
		var newMonographFullTextURLTxt = document.createTextNode("Full Text");
		newMonographFullTextURL.onclick = function() {pageTracker._trackPageview('/publications/monograph/mono' + newNr + '.pdf');};
		newMonographFullTextURL.href = "/publications/monograph/mono" + newNr + ".pdf";
		newMonographFullTextURL.target = "_blank";
		newMonographFullTextURL.appendChild(newMonographFullTextURLTxt);
		newMonographFullText.appendChild(newMonographFullTextDiv);
		newMonographFullText.appendChild(newMonographFullTextURL);	
		newMonographDate.appendChild(newMonographFullText);
	}	
	if (newApp1URL != "") {
		var newMonographApp1 = document.createElement("span");
		var newMonographApp1Div = document.createTextNode(" | ");
		var newMonographApp1URL = document.createElement("a");
		var newMonographApp1Txt = document.createTextNode(newApp1Txt);
		newMonographApp1URL.onclick = function() {pageTracker._trackPageview(newApp1URL);};
		newMonographApp1URL.href = newApp1URL;
		newMonographApp1URL.target = "_blank";
		newMonographApp1URL.appendChild(newMonographApp1Txt);
		newMonographApp1.appendChild(newMonographApp1Div);
		newMonographApp1.appendChild(newMonographApp1URL);
		newMonographDate.appendChild(newMonographApp1);
	}
	if (newApp2URL != "") {
		var newMonographApp2 = document.createElement("span");
		var newMonographApp2Div = document.createTextNode(" | ");
		var newMonographApp2URL = document.createElement("a");
		var newMonographApp2Txt = document.createTextNode(newApp2Txt);
		newMonographApp2URL.onclick = function() {pageTracker._trackPageview(newApp2URL);};
		newMonographApp2URL.href = newApp2URL;
		newMonographApp2URL.target = "_blank";
		newMonographApp2URL.appendChild(newMonographApp2Txt);
		newMonographApp2.appendChild(newMonographApp2Div);
		newMonographApp2.appendChild(newMonographApp2URL);
		newMonographDate.appendChild(newMonographApp2);
	}
	if (newApp3URL != "") {
		var newMonographApp3 = document.createElement("span");
		var newMonographApp3Div = document.createTextNode(" | ");
		var newMonographApp3URL = document.createElement("a");
		var newMonographApp3Txt = document.createTextNode(newApp3Txt);
		newMonographApp3URL.onclick = function() {pageTracker._trackPageview(newApp3URL);};
		newMonographApp3URL.href = newApp3URL;
		newMonographApp3URL.target = "_blank";
		newMonographApp3URL.appendChild(newMonographApp3Txt);
		newMonographApp3.appendChild(newMonographApp3Div);
		newMonographApp3.appendChild(newMonographApp3URL);
		newMonographDate.appendChild(newMonographApp3);
	}	
		
	List.appendChild(newMonographTitle);
	List.appendChild(newMonographAuthor);
	List.appendChild(newMonographAbstract);
	List.appendChild(newMonographDate);
	List.appendChild(document.createElement("br"));	
}