Skype: "Click to call" from GUI Button

Hii,

add this code in an html page and open that page in browser, see what happens -

<!--
Skype 'My status' button
http://www.skype.com/go/skypebuttons
-->
<script type="text/javascript" src="http://download.skype.com/share/skypebuttons/js/skypeCheck.js"></script>

<a href="skype:jessica_storm1986?call"><img src="http://mystatus.skype.com/bigclassic/jessica_storm1986" style="border: none;" width="182" height="44" alt="My status" /></a>

I want to do the same by clicking a cube, Please help me with a sample c# code to do this

Basically, this is a skype tell a friend button - http://www.skype.com/intl/en/tell-a-friend/get-a-skype-button/

I want to do the same on clicking a cube from unity

Step 1: test web javascript code to do what that link does:


Step 2: mimic the code in Unity:

void OnMouseDown(){ Application.ExternalEval(“window.location = ‘skype:jessica_storm1986?call’”); }

Step 3: rule the world!!!