That would be awesome.
However, not knowing the entire system - how everything interacts - I'm kind of lost looking at the code for monitor.tpl. I would assume it would be one of the framesets below the </head> that would have to be replaced with a javascript call for a new window?
Something similar to this onclick call: onclick="MyWin=window.open('faq.html', 'newWnd', 'width=240,height=300,menubar=yes,toolbar=yes,location=no,resizable=1,scrollbars=yes,status=yes');MyWin.focus();"
This is the current monitor.tpl:
<?xml version="1.0" encoding="iso-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Frameset//EN" "
http://www.w3.org/TR/xhtml1/DTD/xhtml1-frameset.dtd">
<html xmlns="
http://www.w3.org/1999/xhtml">
<head>
<title>{$conf.company} - Live Support Solution (Powered By Help Center Live)</title>
<meta http-equiv="Content-Type" content="text/html; charset={$lang.charset}" />
<link href="{$conf.url}/templates/{$conf.template}/css/admin.css" rel="stylesheet" type="text/css" />
{if $javascript != ""}
<script type="text/javascript" language="javascript" src="{$conf.url}/class/js/include.php?{$javascript}">
</script>
{/if}
</head>
<frameset rows="60,*,0" cols="*" framespacing="0" border="0">
<frame src="{$conf.url}/admin/monitor/status.php?time={$epoch}" name="winstatus" frameborder="no" scrolling="no" noresize>
<frame src="{$conf.url}/admin/monitor/response.php" name="monitor" frameborder="no" scrolling="yes">
</frameset>
</html>