var fDesc=new Array();
fDesc[1] = "adds the ability to buy movies online as well. The estimated cost for each movie varies between about $2 and $5. This version also includes a tool called Genius, which lets you create playlists automatically by analyzing your personal library for songs that are related.";
fDesc[2] = "of use, it comes packaged with Nokia phones. This version comes with many features like backup, synchronizing, etc .. and new features like the 'Video Manager' , 'Image Store' etc.";
fDesc[3] = "sound, such as your favorite song, a soundtrack from your favorite movie, your friends' voices, your kids laugh, your cat , etc.";
fDesc[4] = "ringtones, this one is special. It allows you to create ringtones for your iPhone. Apple is charging for users to download ringtones from iTunes. And originally, you could only use a song that you purchased from the iTunes store.";
fDesc[5] = ", such as mobile phones, PDAs, smartphones, flash cards, among others.This incredible software enables you to upload ringtones, audio and video clips, pictures, using Bluetooth, IrDA or USB (flash cards only).";
fDesc[6] = "clicks. The program supports all the popular audio formats including WAV, MP3, MMF, AMR, QCP and MP3. The best feature of the converter is the integration into Windows right-click menu.";
fDesc[7] = "of quality ringtones is touching sky limits. But user has been burning their pockets for such ringtones. Ringtone Converter / Ringtone Composer come as a savior to the pockets of such enthusiasts’ users.";
fDesc[8] = "mobile content creation and management applications that gives you the ability to create and send ringtones, wallpapers, MP3's, polyphonic ringtones, video, animations, docs, etc. The content you create can then be sent by WAP, Bluetooth or Infrared.";
fDesc[9] = "everything you need for your cell phone including tens of thousands of logos, tones, fun images, voice ringers, games ...";
fDesc[10] = "audio files. Create mobile movies from your video collection, and picture slideshows or mobile wallpapers from your photo collection. Edit files and easily customize tracks for your polyphonic compatible phone.";
fDesc[11] = "SP-MIDI (polyphonic) music optimized for your mobile phone, and generates ringtones that are compatible with a wide range of devices. You can take any MIDI file and modify it to create your desired ringtone.";
fDesc[12] = "mobile phone. This program can edit and convert music files into ringtones, and save it in acceptable for the phone format for further download it into your mobile. The ready ringtones can be loaded from your PC to mobile phone via cable, Bluetooth, or IR-port.";
fDesc[13] = ", RTTTL and mono ring tones), games, wallpapers, screensavers, videos and more content for your phone.";
fDesc[14] = "to download songs from the server. It provides thousands of ringtones on the server. User can download ringtones free of cost and can listen before he can use. Ringtones are available in many formats like midi, MP3 or wave.";
fDesc[15] = "create from your mp3, wma, aac, wav, ogg files or from your CD collection.";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}