var fDesc=new Array();
fDesc[0] = "With SMS Reciever you can send SMS message containing the text you typed in the receive box to your phone connected to PC, and in a second or two you should receive a SMS message containing a text you typed in the Send box.
System requirements:
- Hardware: Pentium class processor
- OS: Windows 2000/XP
- Ram: 16MB
- Hard-disk free space: 1MB
Windows 2000/XP
- Microsoft Framework 1.0
- Nokia PC Connectivity SDK 2.1
- Nokia 5110/8210/6150...
- Cable/IrDA connection
Video: 640*480, 256 colors";
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 = '';
}
}