1<!DOCTYPE HTML>
2<html>
3<head><link rel="stylesheet" type="text/css" media="all" href="css/jScrollPane.css" />
4<link rel="stylesheet" href="css/help.css">
5<link rel="stylesheet" href="css/scrollbar.css">
6<script src="jquery.js"></script>
7<script src="script/jquery.mousewheel.js"></script>
8<script type="text/javascript" src="script/jScrollPane.js"></script>
9
10<script src="script/script.js"></script>
11
12<%11%>
13<title>NETGEAR Router <%12%></title>
14<script type="text/javascript" id="sourcecode">
15<!--
16    $(function()
17    {
18        $('#content').each(
19            function()
20            {
21                $(this).jScrollPane(
22                {
23                    showArrows: $(this).is('.arrow')
24                }
25            );
26            var api = $(this).data('jsp');
27            var throttleTimeout;
28            $(window).bind(
29                'resize',
30            function()
31            {
32                if ($.browser.msie) {
33                    // IE fires multiple resize events while you are dragging the browser window which
34                    // causes it to crash if you try to update the scrollpane on every one. So we need
35                    // to throttle it to fire a maximum of once every 50 milliseconds...
36                    if (!throttleTimeout) {
37                        throttleTimeout = setTimeout(
38                            function()
39                            {
40                                api.reinitialise();
41                                throttleTimeout = null;
42                            },
43                            50
44                        );
45                    }
46                } else {
47                    api.reinitialise();
48                }
49            }
50            );
51            }
52        )
53    });
54//-->
55</script>
56
57</head>
58<%1811%>
59 <%12%> 
60<%1812%>
61 <%12%> 
62<%1813%>
63<%1814%>
64</html>
65