var fDesc=new Array(); fDesc[0] = "The Symbol PocketBrowser (SPB) Samples is a group of sample applications developed for demonstrating key functionalities of the Symbol PocketBrowser application. In the current version, following samples are provided.

Imager – This sample demonstrates following imager functionality on Symbol PocketBrowser.

- Lamp switch On/Off
- Aim switch On/Off
- Capture current image displayed in the viewfinder
- Save captured image as a jpeg file

Keyboard – This sample demonstrates the key press event capturing on a Symbol PocketBrowser web page.

Notification – This sample explains how to list notification objects supported by the terminal. In addition, it enables editing parameters associated with each object and invoking each selected notification object.

Scanner – This sample demonstrates following scanner functionality.

- Select/deselect decoder types.
- Set scanner parameters for each decoder type.
-Set maximum and minimum length for each decoder."; 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 = ''; } }