var fDesc=new Array();
fDesc[0] = "Solar is an advanced, secure software protection and licensing system that allows you to protect your program from unauthorized users and/or extended use beyond the trial period and provides you with a reliable yet easy to implement licensing system. This is how Solar protects your application.
Main features:
- Industry standard encryption to select from (AES, Blowfish, Twofish).
- Use Steganography to save license information.
- System specific information is recorded to prevent information being moved to another machine.
- Protection against disassembling and debugging.
- High level of security, easy to implement, very flexible.
- Debugger detection features.
- Easily transfer licenses from one computer to another.
- Easy to use License management and tracking software.";
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 = '';
}
}