// JavaScript Document

function SwitchText(thisPlaceholder, newText)
      {
			genevainfo = 
			"<p>QUNO<br>" +
			"13 Avenue du Mervelet<br>" +
			"1209 Geneva<br>" +
			"Switzerland</p>" +
			"<p>" +
			"<p><a href=" +
			"/aboutUs/directions-quaker-house-geneva.pdf" +
			"><strong>Directions</strong></a></p>" +
			"<p>" +
			"p:&nbsp; +41 22 748 4800<br>" +
			"f:&nbsp; +41 22 748 4819<br>" +
			"<a href=" +
			"mailto:quno@quno.ch" +
			">quno@quno.ch</a></p>" +
			"<p><a href=" +
			"/publications/pubSign-up.htm" +
			"><strong>Join the QUNO mailing list</strong></a></p>" +
			"<p>" +
			"<a href=" +
			"/geneva/pdf/appeal-web.pdf" +
			"><strong>Annual Appeal</strong></a></p>";
			
			newyorkinfo = 
			"<p>QUNO<br>" +
			"777 UN Plaza<br>" +
			"New York, NY 10017</p>" +
			"<p>" +
			"Please call for <br>" +
			"directions to our<br>" +
			"Office or Quaker House</p>" +
			"<p>" +
			"p:&nbsp; +1-212-682-2745<br>" +
			"f:&nbsp; +1-212-983-0034<br>" +
			"<a href=" +
			"mailto:qunony@afsc.org" +
			">qunony@afsc.org</a></p>" +
			"<p>" +
			"<a href=" +
			"/publications/pubSign-up.htm" +
			"><strong>Join the QUNO mailing list</strong></a></p>";
			
			
      
			memberinfo = 
			"<p><em><strong><a href=" +
			"http://www.conflict-prevention.net" +
			">Global" +
          "Partnership for the Prevention of Armed Conflict, GPPAC</a></strong></font></em>:" +
          "spearheaded by the European Centre for Conflict Prevention, is a global network" +
          "of local and international organizations with an interest in conflict" +
          "prevention. This initiative includes regional meetings globally to" +
          "gather information and form partnerships. </p>"+
          "<p>  <strong><em>NGO/UN Conflict Prevention Working Group</em></strong>:" + 
		"This working group formed " +
          "as a part of GPPAC, to collaborate with the UN and governments in New " +
          "York toward prevention efforts. QUNO is a founding member. The objective " +
          "of this working group is to integrate the Global Partnership initiative " +
          "into UN departments and programs, UN Missions of Member States, and " +
          "the New York civil society policy environment in order to dialogue " +
          "on issues of conflict prevention and to strengthen networking and collaboration " +
          "between conflict prevention actors. The majority of QUNO&#8217;s work " +
         "on prevention is through this working group. </p>" +
          "<p><em><strong>Quaker Conflict Prevention Network</strong></em>: Since the fall of 2000, an active " +
          "network of Quaker agencies and individual Friends working in the field " +
          "of conflict prevention has begun to emerge. This Quaker Prevention " +
          "Network has met annually in a different location to discuss their individual " +
          "work, explore connections, and collaborate on a common strategy to " +
          "enhance Quaker work to help peacefully prevent violent conflict and " +
          "promote nonviolent alternatives to military intervention in crises.</p>";
		  eventinfo = 
		  "<p><em><strong><a href=" +
		  "http://www.un.org/News/Press/docs/2003/ga10146.doc.htm" +
		  ">General " +
          "Assembly Meeting, 2003</a></strong></em></font>: At the invitation of Jan Kavan, president " +
          "of the 57th General Assembly of the UN, QUNO and the NGO/UN Conflict " +
          "Prevention Working group organized a meeting in which 88 member states " +
          "gathered at the UN to discuss the opportunities and challenges of civil " +
          "society&#8217;s contribution to conflict prevention. </p>" +
        "<p>  <strong><em><a href=" +
		"/newyork/Resources/PreventionOfArmedConflictSeminarReport200402.pdf" +
		">Discussion" +
                  "Seminars</a></em></strong>:" +
          "Several sessions bring different civil society actors, the UN, and " +
          "governments " +
          "together to discuss collaboration for the prevention of armed conflict. " +
          "The information gathered from meetings will provide input for a report " +
          "on prevention to be delivered to the UN&#8217;s General Assembly in " +
          "2004, and assist in planning for the 2005 conference on civil societies&#8217; role " +
          "in the prevention of armed conflict. </p>" +
         "<p> <strong><em><a href=" +
		 "http://www.conflict-prevention.net" +
		 ">GPPAC Conference:</a></em></strong>:" +
       
		

"QUNO-NY played a pivotal role in the initiation of a global conference " +
"held at UN Headquarters from July 19 to 21, 2005 " +
"entitled 'From Reaction to Prevention: Civil Society Forging Partnerships to Prevent Violent Conflict and Build Peace.' " +  
"The conference was the culminating event of a process of planning, regionally and globally, that began here in New York " +
"with conversations in Quaker House in 2002 in response to a recommendation (Rec. 27) of the Secretary General's 2001 Report " +
"on the Prevention of Armed Conflict calling for such a civil society initiative. " +
"The conference was attended by 732 official participants including representatives " +
"of 15 regions worldwide, the UN secretariat and country missions.  Each region contributed a Regional Action Agenda which was " +
"incorporated into a Global Action Agenda presented to the Secretary General’s representative in the opening plenary as well "
"as a Global Implementation Plan offered on the last day to guide next steps regionally and globally. " +
"Copies of the latter, along with other information about the GPPAC process can be found at: www.conflict-prevention.net.";

		
			
			
    
			
			if (newText=="geneva")
				{
				document.getElementById(thisPlaceholder).innerHTML=genevainfo;
				}
			if (newText=="new york")
				{
				document.getElementById(thisPlaceholder).innerHTML=newyorkinfo;
				}
			if (newText=="member")
				{
				document.getElementById(thisPlaceholder).innerHTML=memberinfo;
				}
			if (newText=="event")
				{
				document.getElementById(thisPlaceholder).innerHTML=eventinfo;
				}
			
      }