var Navigation = $H({
  product: function() {
    document.location.href = actualSiteUrl + "/product";
  },
  myStory: function() {
    document.location.href = actualSiteUrl + "/mystory";
  },
  myCatalog: function(location) {
    document.location.href = location;
  },
  shopNow: function() {
    Navigation._newWindow("/esuite/control/ecommerceMain");
  },
  contactMe: function() {
    document.location.href = actualSiteUrl + "/leadcollector";
  },
  _newWindow: function(url) {
    var w=1000;
    var h=700;
    if(w > screen.availWidth) {
      w = (screen.availWidth - 100);
    }
    if(h > screen.availHeight) {
      h = (screen.availHeight - 100);
    }
    var top = (screen.availHeight - h) / 2;
    var left = (screen.availWidth - w) / 2;
    window.open(url,"popup","scrollbars=yes,resizable=yes,width=" + w + ",height=" + h + ",top=" + top + ",left=" + left);
  }
});