  function openInstantMessenger(path) {
    width = 400;
    height = 400;
    l = (screen.width - width) / 2;
    t = (screen.height - height) / 2;
    features = "width=" + width + ", height=" + height + ", left=" + l + ", top=" + t;
    window.open(path,"_blank",features);
  }
