var fDesc=new Array();
fDesc[0] = "ENGL Zwlancfg simplifies the deployment of Microsoft wireless network settings on Windows 7, Vista and XP machines. Wireless profiles can be created, deleted, exported and imported.
Main features:
-Import, Export, Update and Remove profiles
-Launch from a script, command prompt or using the SCCM 2007 Task Sequence plugin
-Standard Authentication/Encryption methods
-Advanced IEEE802.1x EAP/TLS connection parameters (Windows 7 and Vista)
-Native 32 and 64-bit platform support
System Requirements
Windows 7 (32/64-bit)
Windows Vista (32/64-bit)
Windows XP SP2/SP3 (32-bit)
Windows Wireless Management
Microsoft System Center Configuration Manager 2007 (for Task Sequence Plugin)";
function tShowHide(id, show)
{
var s = document.getElementById("desc");
if ((s.innerHTML.length<=212 || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
if (document.getElementById('m1'))
document.getElementById('m1').style.display='none';
if (document.getElementById('m2'))
document.getElementById('m2').style.display='none';
if (document.getElementById('more_txt'))
document.getElementById('more_txt').style.display='inline';
}
else
{
s.innerHTML = '';
}
}