Image.getPopupUrl ()
return the call to the client-side popup-script for image-object

  • Returns
    String call of popup-script
Sourcecode in Image/objectFunctions.js:
1:   function getPopupUrl() {
2:      res.push();
3:      res.write("javascript:openPopup('");
4:      res.write(this.getUrl());
5:      res.write("',");
6:      res.write(this.width);
7:      res.write(",");
8:      res.write(this.height);
9:      res.write(");return false;");
10:     return res.pop();
11:  }