var fDesc=new Array();
fDesc[0] = "MyStuffNow is a Personal Video Recorder for creating VideoNow compatible CDs of your favorite videos and music. Simply create a playlist of your favorite digital media files, insert a blank Mini CD-R, and you will have a ready-to-play VideoNow-compatible CD in a matter of minutes.
Easy and Inexpensive - All you need is a compatible home computer and some blank Mini CD-R available at most computer stores for as little as 40 cents a disk.
Music - Turn your VideoNow Personal Video Player into a 'Personal Music Player' by using MyStuffNow to record your favorite songs that are in either MP3 or WMA digital formats.
Video - Record your favorite shows, videos and home movies. MyStuffNow can record up to 21 minutes of video per disk.";
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 = '';
}
}