	var val=''; 	
	var list = '<table id="list" cellpadding=8 cellspacing=0 border=0>'; 
	var num = 0;
var hilites = '';
//hilites += '		<b></b><br>';
hilites += '		  <ul style=\'margin: 3px 0 10px 12px;\'>';
hilites += '			<li>Easy-to-install';
hilites += '			<li>Embedded HW Firewall';
hilites += '			<li>Full Disk Encryption';
hilites += '			<li>Scalable';
hilites += '			<li>DR/BC Options';
hilites += '			<li>Redundant Hardware Options';
hilites += '			<li>Privileged Password Management (PPM) included';
hilites += '			<li>Application Password Management (APM) included';
hilites += '			<li>Privileged Session Management (PSM) optional';
hilites += '			<li>Privileged Command Management (PCM) optional</div>';
hilites += '		  </ul>';
		
		var set = new Array();
		 set[0] = 'Value';
		 set[1] = 'With no console port and/or console level access &mdash; PAR is not open to any host admin attacks, OS, database or other system level modifications ';
		 set[2] = 'With an embedded hardware firewall PCI card, the PAR appliance is protected against external network based attacks. The firewall also provides additional auditing.';
		 set[3] = 'All passwords stored either for auto-login or as part of the optional PPM module are encrypted using RSA B-Safe, AES256.';
		 set[4] = 'The entire hard drive of the PAR appliance is encrypted using GuardianEdge Hard Disk Encryption (AES-256).';
		 set[5] = 'User connections are secured via https/SSLv3. Initial certificate is signed by e-DMZ and can be replaced with customer specific certificate. User proxy connection is via SSH. Target sessions proxy&rsquo;s are via the most secure native protocol &mdash; in most cases this will be SSH. ';
		 set[6] = 'Communication between the role-based web application and the underlying database only allow stored procedures to be called from the application. No ad-hoc SQL is allowed. Authentication checks are done on each stored procedure call.';
		 set[7] = 'Segregation of duties is enforced through the Role Based Access Control (RBAC) designed into the application.';
	
		
		var linx =  new Array();
		 linx[0] = 'Enhancement';
		 linx[1] = 'No Console and/or Console Access. Only access is via associated &ldquo;role based&rdquo; secure web interface(s).';
		 linx[2] = 'Embedded Hardware Firewall';
		 linx[3] = 'Encryption for Stored Passwords';
		 linx[4] = 'Full Hard Drive Encryption';
		 linx[5] = 'Secure Communication';
		 linx[6] = 'Database Security';
		 linx[7] = 'Application Security';
		
		list += "<tr><th width='175px' valign='bottom'>"+linx[0]+":</th><th valign='bottom'>"+set[0]+":</th></tr>";
		for(var i=1;i<set.length; i++)
			{
			list += "<tr>";
			var sec = linx[i];
			var val = set[i];
			list += "<td valign='top'>"+sec+"</td>";
			list += "<td valign='top'>"+val+"</td>";
			//if(i==1) { list += "<td rowspan=8 id='v' valign='top'>"+hilites+"</td>"; }
			list += "</tr>";
			}
		list += "</table>";
		document.write(list);

