diff --git a/README.md b/README.md
index adec581e..d4efe2bd 100755
--- a/README.md
+++ b/README.md
@@ -7,7 +7,6 @@ Works in modern versions of Firefox, Safari and Chrome. Untested in IE.
## Features
- Drag in local sound or skin files or load them via the "eject" button
-- Open a url using the upper left hand corner "options" icon
- "Shade" mini-mode
## Tested in modern versions of
diff --git a/anchor.js b/anchor.js
deleted file mode 100644
index e801b6d1..00000000
--- a/anchor.js
+++ /dev/null
@@ -1,14 +0,0 @@
-function anchorArgument(argument, defaultValue) {
- args = [];
- pairs = window.location.hash.slice(1).split("&");
- for (var i = 0, len = pairs.length; i < len; i++) {
- pair = pairs[i];
- eq = pair.indexOf("=");
- if(eq) {
- key = decodeURIComponent(pair.slice(0, eq));
- value = decodeURIComponent(pair.slice(eq + 1));
- args[key] = value;
- }
- }
- return args[argument] ? args[argument] : defaultValue;
-}
diff --git a/index.html b/index.html
index 3d1b4587..288de0f9 100755
--- a/index.html
+++ b/index.html
@@ -77,7 +77,6 @@
-