<!--
function makePage()
{

var x = this.document.KnownIssues.showMe.value;

var prodnum = new Array(10);

prodnum[0] = "";
prodnum[1] = "eG100T";
prodnum[2] = "eG100TW";
prodnum[3] = "eG100TBR";
prodnum[4] = "eG100T-B";
prodnum[5] = "eG100T-Z";
prodnum[6] = "eG1000T32";
prodnum[7] = "eG1000T32-Z";
prodnum[8] = "eG1000T32-B";
prodnum[9] = "eG1000T64";
prodnum[10] = "eGWPC11";


var prodname = new Array(10);

prodname[0] = "";
prodname[1] = "10/100 Fast Ethernet PCI Adapter";
prodname[2] = "10/100 Fast Ethernet PCI Adapter w/WOL";
prodname[3] = "10/100 Fast Ethernet PCI Adapter w/Boot ROM";
prodname[4] = "10/100 Fast Ethernet PCI Adapter (-B version)";
prodname[5] = "10/100 Fast Ethernet PCI Adapter (-Z version)";
prodname[6] = "Gigabit Ethernet Workstation Adapter-National";
prodname[7] = "Gigabit Ethernet Workstation Adapter-Broadcom";
prodname[8] = "Gigabit Ethernet Workstation Adapter-Realtek";
prodname[9] = "Gigabit Server Adapter";
prodname[10] = "Wireless PCMCIA Card";

var data1 = prodnum[x];
var data2 = prodname[x];

var newloc = data1 + "Drivers.htm";
window.location = newloc;

}

//-->

