var fDesc=new Array();
fDesc[0] = "MP3 JukeBox Player for clubs, pubs, home use with animated record change and multiple style skins.
Software Solutions releasing free to use MP3 Jukebox, this is the first of a range of new software items to be released as free to use or trial / demo software.
Other releases yet to come include "Get Organised" a program to help with lists and reminder/projects.
"21st Century Sales" a full point of sales system including multi user and multi company with a accounts and stock control system, plus tablet apps for stock control wireless operations.";
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 = '';
}
}