// JavaScript Document


 var strEmail="";
 var strContact="";
function getCopyrightText() {
	var str="";
	if (strLanguage=="FARSI") {
		str="©Nations Unies. All rights reserved\n"
		str = str + "Service de l'Information, Palais des Nations, CH - 1211 Genève 10, Suisse"
		if (strEmail.length > 0)
			str= str + "\nEmail: " + strEmail;
	}
	else {
		str="©United Nations. All rights reserved\n"
		str = str + "Information Service, Palais des Nations, CH - 1211 Geneva 10, Switzerland"
		if (strEmail.length > 0)
			str= str + "\nEmail: " + strEmail;
	}
	return str;
}
