function changeContact (list) {
	//find out country
	var country = list.options[list.selectedIndex].value;
	//change p tag based on what's select - countryContact
	document.getElementById("countryContact").innerHTML = "";
	if(country == "UK") {
		newContent = "<strong>UK</strong><br />Henrietta Aitken<br />+44 (0)20 7395 7150<br />E-mail: <a href=\"mailto:henrietta.aitken@fleishmaneurope.com\">Henrietta Aitken</a>";
		document.getElementById("countryContact").innerHTML = newContent;
	}else if(country == "Germany") {
		newContent = "<strong>Germany</strong><br />Robert Belle<br />+49-(0)89-230 316 27<br />E-mail: <a href=\"mailto:robert.belle@fleishmaneurope.com\">Robert Belle</a>";
		document.getElementById("countryContact").innerHTML = newContent;
	}else if(country == "France") {
		newContent = "<strong>France</strong><br />B&eacute;atrice Cassignol<br />+33 1 47 42 90 18<br />E-mail: <a href=\"mailto:beatrice.cassignol@fleishmaneurope.com\">B&eacute;atrice Cassignol</a>";
		document.getElementById("countryContact").innerHTML = newContent;
	}else if(country == "Netherlands") {
		newContent = "<strong>Netherlands</strong><br />Rosanne van Poelvoorde<br />+31 (0)20 406 59 30<br />E-mail: <a href=\"mailto:rosanne.vanpoelvoorde@fleishmaneurope.com\">Rosanne van Poelvoorde</a>";
		document.getElementById("countryContact").innerHTML = newContent;
	}else if(country == "Belgium")  {
		newContent = "<strong>Belgium</strong><br />Veronique Verlinden<br />+32 2 285 46 00<br />E-mail: <a href=\"mailto:verlindv@fleishmaneurope.com\">Veronique Verlinden</a>";
		document.getElementById("countryContact").innerHTML = newContent;
	}else{
		//do nothing
	}
}
function changeYear (list) {
	//find out country
	var year = list.options[list.selectedIndex].value;
	//change p tag based on what's select - countryContact
	if(year == "2009"){ 
		location.href = "/emea/insights/pr/index.html";
	}else if(year == "2008") {
		location.href = "/emea/insights/pr/release_2008.html";
	}else if(year == "2007") {
		location.href = "/emea/insights/pr/release_2007.html";
	}else if(year == "2006") {
		location.href = "/emea/insights/pr/release_2006.html";
	}else if(year == "2005") {
		location.href = "/emea/insights/pr/release_2005.html";
	}else if(year == "2004") {
		location.href = "/emea/insights/pr/release_2004.html";
	}else if(year == "2003") {
		location.href = "/emea/insights/pr/release_2003.html";
	}else{
		//do nothing
	}
}
function changeLang (list) {
	//find out lang
	var lang = list.options[list.selectedIndex].value;
	//change p tag based on what's selected
	if(lang == "English") {
		location.href = "/emea/";
	}else if(lang == "French") {
		location.href = "/emea_fr/";
	}else if(lang == "German") {
		location.href = "/emea_de/";
	}else if(lang == "Spanish") {
		location.href = "/emea_es/";
	}else if(lang == "Italian") {
		location.href = "/emea_it/";
	}else{
		//do nothing
	}
}