Changeset 12249


Ignore:
Timestamp:
06/02/09 10:07:27 (4 years ago)
Author:
eko
Message:

sortable table + geotool

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/router/kromo/dd-wrt/Status_Conntrack.asp

    r7905 r12249  
    11<% do_pagehead("status_conn.titl"); %> 
    22 
     3<style type="text/css"> 
     4A:link {text-decoration: none; color: black;} 
     5A:hover {text-decoration: underline; color: black;} 
     6</style> 
     7 
     8<script type="text/javascript"> 
     9//<![CDATA[ 
     10function openGeotool(IP) { 
     11        var top = 30; 
     12        var left = Math.floor(screen.availWidth * .66) - 10; 
     13        var width = 920 
     14        var height = 700 
     15        var win = window.open("http://geotool.flagfox.net/?ip=" + IP, 'Geotool', 'top=' + top + ',left=' + left + ',width=' + width + ',height=' + height + ",resizable=yes,scrollbars=yes,statusbar=no"); 
     16        addEvent(window, "unload", function() { if(!win.closed) win.close(); }); 
     17        win.focus(); 
     18} 
     19//]]> 
     20</script> 
    321        </head> 
    422        <body> 
     
    2240                                        </tr> 
    2341                                        <% ip_conntrack_table(); %> 
    24                                 </table><br /> 
     42                                </table> 
     43                                <script type="text/javascript"> 
     44                                //<![CDATA[ 
     45                                var t = new SortableTable(document.getElementById('conntrack_table'), 4000); 
     46                                //]]> 
     47                                </script>                                
     48                                <br /> 
    2549                                <div class="submitFooter"> 
    2650                                        <script type="text/javascript"> 
Note: See TracChangeset for help on using the changeset viewer.