Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-cordova-bada
diff --git a/Res/index.html b/Res/index.html
index d3a8eb0..bc22033 100644
--- a/Res/index.html
+++ b/Res/index.html
@@ -66,7 +66,7 @@
      <!-- Network -->
      <div>
         <h3>Network</h3>
-        <input onclick="hostIsReachable('http://phonegap.com')" type="submit" value="Network.isReachable">
+        <input onclick="hostIsReachable('http://cordova.io')" type="submit" value="Network.isReachable">
         <div id="network" style="display:none;">
           Network Information
         </div>
diff --git a/Res/main.js b/Res/main.js
index e41a986..83b5644 100644
--- a/Res/main.js
+++ b/Res/main.js
@@ -136,7 +136,7 @@
 
 // Stock Browser Test (Any URL request launches Stock browser) 
 function launchExternalBrowser() {
-  window.location = "http://www.phonegap.com";
+  window.location = "http://cordova.io";
 }
 
 
@@ -155,7 +155,7 @@
       network.style.display = 'block';
       network.innerHTML = 'Code: '+reachability.code+' Connection type: '+states[networkState];
     }
-    navigator.network.isReachable("http://phonegap.com", callback, {});
+    navigator.network.isReachable("http://cordova.io", callback, {});
   } catch(e) {
     debugPrint("hostIsReachable(): "+e.message);
   }