
<!-- This code launches the whats new page -->

        var remote = null;
        function remoteStart() {
             remote = window.open("", "TheRemote", "width=550,height=250,resizable=1,scrollbars=yes"); 
             if (remote != null) {
             if (remote.opener == null) {
                 remote.opener = self;
           }
             remote.location.href = '/news/index.html';
             }
        }

<!-- end of whats new code -->



