<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body text="#000000" bgcolor="#FFFFFF">
    Looking into writing a little Chrome Extension or Firefox add-on to
    automatically click OK on a specific dialog to keep a user logged in
    and retain her sanity.<br>
    <br>
    The dialog looks like this in Firefox. Not sure if that's a native
    dialog or something created by javascript, or even if the two would
    even look dissimilar?<br>
    <br>
    <img src="cid:part1.08090906.04040201@artengine.ca" alt=""><br>
    <br>
    Code on the page:<br>
    <br>
        function callserver()<br>
        {<br>
            <br>
            var extend_session = confirm("Your session is about to
    expire. Press OK to keep your session active.");<br>
            if (extend_session == true) <br>
            {<br>
                var remoteURL = '//includes/session.cfm';<br>
                $.get(remoteURL,  function(data){<br>
                    //do nothing<br>
                });<br>
            }<br>
                <br>
        }<br>
    <br>
    Any thoughts? Perhaps just override the callserver() function
    somehow and return TRUE?<br>
    <br>
    <br>
    <br>
  </body>
</html>