var fDesc=new Array();
fDesc[0] = "My Sirius Studio (MSS) software is a PC software application used to manage music and recordings on any SIRIUS Stiletto portable satellite radio product including: Stiletto 2, Stiletto 100, and Stiletto 10. MSS also manages music on Stiletto 2 microSD™ cards.
Features:
- Transfer or copy MP3/WMA songs from your PC to your Stiletto.
- Create playlists (groups of songs) and download playlists to your Stiletto.
- Connect to our Digital Music Fulfillment Partners to purchase songs in your Stiletto Wish List.
- Stream and listen to SIRIUS Internet Radio music channels on your PC using an Internet connection (a SIRIUS subscription is required).
- Check for software updates, and download/install these updates to your Stiletto.";
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 = '';
}
}