var descArray = new Array(8);
descArray[0] = new desc(0, "");
descArray[1] = new desc(1, "With MojoPac, any USB drive (even your iPod) can become your PC game \'Cartridge\'. You can install any of the leading PC and online (MMORPG) games on your iPod/USB device, and you will never be limited to gaming solely on your home PC again. Simply plug in your MojoPac-enabled device to any PC and you\'re ready to play instantly, picking up from exactly where you last went AFK.");
descArray[2] = new desc(2, "You don't need to lug that heavy laptop to home or to vacation anymore. MojoPac allows you to carry all your work applications (Microsoft Office, Adobe, Lotus Notes, etc.) developer apps (Visual Studio, Java, Python, etc.), and any other application you want on any USB storage device; go to any PC and bring up your work. Simply plug your MojoPac device into your Home PC and you can bring up your work desktop!");
descArray[3] = new desc(3, "Your IT department can't complain anymore that you are installing your personal stuff on your work PC.  MojoPac allows you to carry all your personal and private applications (email, Instant Message, Multimedia player, games, financial applications, etc.) on an iPod or USB storage, connect to your work PC, and privately use them without leaving any trace on your work PC. You can now have your personal PC at work, without having to carry a laptop.");
descArray[4] = new desc(5, "Three kids, one laptop, ninety-two unsecured applications installed through web browsers onto your system. How do you save your PC from your children without banning them from using it completely? Using a MojoPac-enabled device each child can have his or her instantly personalized client experience on your PC without altering a single setting or file. They can even install MojoPac on the iPods that seem to be organically growing out of their ears.");
descArray[5] = new desc(4, "Never in the same place? Why lug a laptop around when you don\'t have to? MojoPac allows you to take an iPod, cell phone, or USB device and make it your own personal computer. Plug it in to your friends\' computers or the computers at school and everything you need is there. You can even take your iPod to a party and show off all your music without having to install iTunes, because it\'s already on the MojoPac on your iPod.");
descArray[6] = new desc(6, "MojoPac allows you to carry your entire PC with you, in your pocket. From work applications (such as Microsoft Office) to Multimedia (such as iTunes, Photoshop) to email and IM (Outlook, Yahoo IM) to top games (World of Warcraft, Call of Duty2), you can carry all your applications on your iPod or USB storage, connect to ANY Computer and turn it into your Personal Computer, running all your applications at full performance.");
descArray[7] = new desc(7, "MojoPac allows you to carry your entire PC with you, in your pocket. From work applications (such as Microsoft Office) to Multimedia (such as iTunes, Photoshop) to email and IM (Outlook, Yahoo IM) to top games (World of Warcraft, Call of Duty2), you can carry all your applications on your iPod or USB storage, connect to ANY Computer and turn it into your Personal Computer, running all your applications at full performance.");

function desc(id, desc)
{
  this.id = id ;
  this.desc = desc;
}
function init()
{
	fav();
}
function fav()
{
    var mylist=document.getElementById("usageMode");
	document.getElementById("textDescription").value=descArray[mylist.selectedIndex].desc;
   	changeUsageMode();
}

function changeUsageMode()
{
    var mylist=document.getElementById("usageMode");
     if (mylist.selectedIndex == 7)
    {
		var otherUse=document.getElementById('otherUsageMode');
		otherUse.style.display = "block";
      	otherUse.value= "";
    }
   else
    {
		var otherUse=document.getElementById('otherUsageMode');
      	otherUse.style.display = "none";
      	otherUse.value= "";
    }
}