var fDesc=new Array();
fDesc[0] = "Get alerts on your desktop as soon as a new item becomes available on the Whiskey Militia, without having to open a browser and navigating to the site.
Features:
-A bell sounds and a small screen slides up from the menu bar with the item's name, description, picture, price and link to buy.
-Updates to the Desktop Alert will be released often.
-The download is spyware free so you don't have to worry.";
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 = '';
}
}