borg RT menus, RT#1169
[freeside.git] / httemplate / elements / popup_link.html
index 0915bfa..49b624c 100644 (file)
@@ -2,8 +2,7 @@
 
 Example:
 
-  <SCRIPT TYPE="text/javascript" SRC="overlibmws.js"></SCRIPT>
-  <SCRIPT TYPE="text/javascript" SRC="iframecontentmws.js"></SCRIPT>
+  include('/elements/init_overlib.html')
 
   include( '/elements/popup_link.html', { #hashref or a list, either way is fine
 
@@ -15,14 +14,25 @@ Example:
     'actionlabel     => 'You clicked',  # popup title
    
     #opt
-    'width'          => '540',
+    'width'          => 540,
+    'height'         => 336,
     'color'          => '#ff0000',
     'closetext'      => 'Go Away',      # the value '' removes the link
+
+    #uncommon opt
+    'aname'          => "target", # link NAME= value, useful for #targets
+    'target'         => '_parent',
+    'style'          => 'css-attribute:value',
   } )
 
 </%doc>
 % if ($params->{'action'} && $label) {
-<A HREF="javascript:void(0);" onClick="<% $onclick %>"><% $label %></A>\
+<A HREF="javascript:void(0);"
+   onClick="<% $onclick |n %>"
+   <% $params->{'aname'}  ? 'NAME="'.   $params->{'aname'}.  '"' : '' |n %>
+   <% $params->{'target'} ? 'TARGET="'. $params->{'target'}. '"' : '' |n %>
+   <% $params->{'style'}  ? 'STYLE="'.  $params->{'style'}.  '"' : '' |n %>
+><% $label %></A>\
 % }
 <%init>