var fDesc=new Array();
fDesc[0] = "Play AVStation is an multimedia program that lets you enjoy music, photographs, and movies within a single program.
Play AVStation consists of the following three integrated programs:
1. Movie Station - An integrated multimedia program that lets you enjoy movies.
2. Music Station - Using the Music Station, you can play audio CD's and music files saved on your PC.
3. Photo Station - Using Photo Station, you can view image files saved on your PC and captured from the Movie Station. In addition you can edit images using the edit fuction.";
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 = '';
}
}