diff --git a/index.html b/index.html
index b475780..7b71395 100644
--- a/index.html
+++ b/index.html
@@ -24,7 +24,7 @@
Skype.ui({
"name": "call",
"element": "SkypeButton_Call_justinkimchi77_1",
- "participants": ['live:emailtoosajal']
+ "participants": [] //Makes no call
});
diff --git a/skype.js b/skype.js
new file mode 100644
index 0000000..d8f031c
--- /dev/null
+++ b/skype.js
@@ -0,0 +1,8 @@
+function skypeCall(username)
+{
+ Skype.ui({
+ "name": "call",
+ "element": "SkypeButton_Call_" + username + "_1",
+ "participants": [username]
+ })
+}