<!--

var w1;
var n1 = 0;

function popup1()
{
	var w='600', h='400';
	var title = 'About Comtrol and RTTS';

	if (n1 != 0) { w1.close();n1 = 0; }
	
	var data = 	
	'<font face="arial">' +
	'<p>Comtrol Corporation, based in Minneapolis, Minnesota in the USA, released the RocketPort&trade; intelligent	' +
	'serial I/O range of products back in 1993 and to this day they are amongst the most popular and higest selling ' +
	'products of its kind in the world. ' +
	'If you have any serial I/O requirements there will be a RocketPort, or combination, that will suit.</p>' +
	'<p>Originally, RocketPorts worked with the ISA bus. When PCI was developed, a new series of compatible RocketPorts' +
	'were released. Currently, Rocketports are available the more recent Universal PCI (uPCI) and PCI-X bus types.</p>' +
	'<p>RocketPort driver software is available for most popular operating systems. Amongst these are QNX4 and QNX6. ' +
	'The QNX drivers are the only drivers that can be operated in polled or interrupt mode. When run in interrupt mode,' +
	'RocketPorts can be used in realtime applications.</p>' +
	'<p>RTTS maintains the QNX RocketPort and Infinity drivers under contract to Comtrol, and has been doing so since 1997. As a result, we have ' +
	'a deep knowledge of the RocketPort products and their applications.' +
	'</font></p>';
	
	var f = 'status=no,scrollbars=yes,resizable=yes,width=' + w + ',height=' + h + '';
	w1 = window.open('', 'nw1', f);
	n = 1;
	w1.focus();
	w1.document.writeln('<html>\n<head>\n<link rel="stylesheet" href="styles/style.css" type="text/css">\n<title>' + title + '</title>\n</head>\n');
	w1.document.writeln('<body bgcolor="#ffffff">');
	w1.document.writeln('<table><tr><td>');
	w1.document.writeln(data);
	w1.document.writeln('</td></tr>');
	w1.document.writeln('<tr><td align="center"><br><a href="" onclick="window.close()"><img src="gfx/close.gif" border="0"></a></td></tr></table>');
	w1.document.writeln('</body>\n</html>');
	w1.document.close();
}
-->

