function writeheader(title) { 

	if (title == null || title.length < 1 ) {
		title = "Library of the International Institute <br/> for the Unification of Private Law"
	}
var content = 	"<div class=\"header\">"+
					"<div class=\"logo\">" +
						"<a id=\"logo-link\" href=\"../English/main.htm	\"></a>" +
					"</div>"+
					"<br/><div class=\"pagetitle\">"+title+"</div>"+
					"<hr>"+
				"</div>";

document.write(content);
//return content;

}

function putflags(link) {
	var content = "";
	
	if (link=="main"){
		content = "<a class=\"flag\" id=\"spa\" href=\"../Spanish/main.htm\" target=\"_self\"> </a>"+
		"<a class=\"flag\" id=\"ita\" href=\"../Italian/main.htm\" target=\"_self\"> </a>"+
		"<a class=\"flag\" id=\"ger\" href=\"../German/main.htm\" target=\"_self\"> </a>"+
		"<a class=\"flag\" id=\"fra\" href=\"../French/main.htm\" target=\"_self\"> </a>"+
		"<a class=\"flag\" id=\"eng\" href=\"../English/main.htm\" target=\"_self\"> </a>";	
	} else {
		var content = 	"<a class=\"flag\" id=\"spa\" href=\"../Spanish/"+link+"_spa.htm\" target=\"_self\"> </a>"+
		"<a class=\"flag\" id=\"ita\" href=\"../Italian/"+link+"_ita.htm\" target=\"_self\"> </a>"+
		"<a class=\"flag\" id=\"ger\" href=\"../German/"+link+"_ger.htm\" target=\"_self\"> </a>"+
		"<a class=\"flag\" id=\"fra\" href=\"../French/"+link+"_fra.htm\" target=\"_self\"> </a>"+
		"<a class=\"flag\" id=\"eng\" href=\"../English/"+link+"_eng.htm\" target=\"_self\"> </a>";	

	}

	
	
	document.write(content);
}