var fDesc=new Array(); fDesc[0] = "Hitonic MIDlet Protector modifies MIDlet JAR files and sets various limitations on launching MIDlets (a simple startup banner, a simple launch password, runtime limitations, launch date limitations, launch count limitations, send SMS message). This tool is useful to protect mobile phone applications created automatically, for example, through bookreaders.

The interface is easy to use. You only need to specify the MIDlet JAR file, specify the type of protection with its options and click the PROTECT button.

The SIMPLE BANNER protection displays additional information during the MIDlet launch. There are some options concerning displaying the banner text. The information is displayed for the specified time or until the key is pressed.

If the SIMPLE PASSWORD type of protection is used, launching the MIDlet will require the password. There is an option that describes the MIDlet lock type. The lock type may be ONCE (the MIDlet first launch) or ALWAYS (every time the MIDlet is launched).

About the RUNTIME LIMITATION protection. When the MIDlet is launched for the first time, the time and date of the launch will be saved. There is an option that defines the number of days the MIDlet can be launched for. After this time expires, it will be impossible to launch the MIDlet.

The "Last work date" option is available if you use the LAUNCH DATE LIMITATION type of protection. It will be impossible to launch the MIDlet after that date.

The "Number of launches" option is available if you use the LAUNCH COUNT LIMITATION protection. After the MIDlet has been launched the specified number, it will be locked.

If the SEND SMS MESSAGE type of protection is used, launching the MIDlet will require the user to send SMS message. The phone number and the text for the SMS message are specified in the options. The SMS message is sent only during the first launch of the MIDlet.

This program is shareware, i.e. you can test this demo version during the trial period (20 days)."; 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 = ''; } }