<!--

var inf;
var ninf = 0;

function popup_infinity()
{
	var w='600', h='400';
	var title='Comtrol Infinity';

	if (ninf != 0) { inf.close();ninf = 0; }
	
	var data =
	'<font face="arial">' +
	'<p>Comtrol Corporation has just released their new generation of PC Serial I/O products. Under ' +
	'development since early 2006, the Infinity range of products take full advantage of dual port RAM ' +
	'that dramatically increases data throughput between the card and host CPU. PCI-X (uPCI) and PCI-Express ' +
	'versions are available.<br><br>' +
	
	'Like the earlier RocketPort range, Infinity cards come in various configurations that include the ' +
	'popular Quad and Octa cable models (DB9M, DB25M &amp; RJ45 connectors) along with 4-port, 8-port, and 16-port ' +
	' flat panels (DB9M only).<br><br>' +
	
	'However, unlike the RocketPort, every Infinity card allows concurrent use of software selectable RS232, RS422, ' +
	'and RS485 on individual ports. The operating mode of each port is specified in the driver configuration. Also, ' +
	'all Infinity cards are low profile and able to be fitted to 2U high rack mounted systems.<br><br>' +
	
	'Rack Mountable RJ45 panels for the Infinity cards are currently under development and expected within the next 6 months.<br><br>' +
	
	'RTTS was deeply involved in the development of the Infinity product having been commissioned by Comtrol to produce the ' +
	'QNX6 driver for the PCI-X version (PCI-Express coming soon). As a result, RTTS can provide technical support directly  ' +
	'to Customers in Australia and New Zealand. As the only approved importer of Comtrol products, only RTTS can apply the ' +
	'C-tick <img src="/img/C_tick.gif" width="15" height="15"> required under Australian and New Zealand legislation to Comtrol products.<br><br>' +
	
	'Best of all, the Infinity products are priced at or below their RocketPort equivalents. Please call RTTS for details.<br><br>' +
	'<font></p>';

	var f = 'status=no,scrollbars=yes,resizable=yes,width=' + w + ',height=' + h + '';
	inf = window.open("", "ninf", f);
	n = 1;
	inf.focus();
	inf.document.writeln('<html>\n<head>\n<link rel="stylesheet" href="styles/style.css" type="text/css">\n<title>' + title + '</title>\n</head>\n');
	inf.document.writeln('<body bgcolor="#ffffff">');
	inf.document.writeln('<table><tr><td>');
	inf.document.writeln(data);
	inf.document.writeln('</td></tr>');
	inf.document.writeln('<tr><td align="center"><br><a href="" onclick="window.close()"><img src="gfx/close.gif" border="0"></a></td></tr></table>');
	inf.document.writeln('</body>\n</html>');
	inf.document.close();
}
-->

