var fDesc=new Array();
fDesc[0] = "DockWare is a personalized picture viewer, desk clock and calendar.
Put your device to work on your desk! Use your pictures as a slide show in the background. You can have a personalized clock, calendar and photo viewer all in one with DockWare.
Use DockWare to display your:
- Family and pet photos;
- Relaxing vacation pictures;
- Famous quotes;
- Favorite movie and TV scenes.
The application allows to add any .jpg picture. You can set the picture cycle, auto-start, and picture display options.";
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 = '';
}
}