<script type="text/javascript">
var d = new sml.ui.PlatformDialog({
title: 'Share on my profile?',
body: 'This is the body of the dialog',
buttons: [{
text: 'Ok',
handler: function() {
// do share
}
}, {
text: 'Cancel',
handler: function() {
// don't share
}}]
});
</script>
<a href="#_" onclick="d.show();">Show Me the $$$$</a>