var mySpotlight = {
  
  runParent: function (el) {

    myLink = el.getProperty('href');

    window.parent.mySpotlight.gotoUserCreate(myLink);
  },

  gotoUserCreate: function (myLink) {

    Mediabox.close();
    window.location.href = 'http://' + window.location.host + '/' + myLink;
  },

  exitAndGotoLink: function (myLink) {

    Mediabox.close();
    window.location.href = 'http://' + window.location.host + '/' + myLink;
  }
};