var fDesc=new Array();
fDesc[1] = "you to create template designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[2] = "computer. If it is so than this small utility is a must for you. This software is very much similar to Remote Assistance already available with Microsoft Windows.";
fDesc[3] = "customizations to suit your needs, including timed capture, capture Hotkey, Saving to File directly or to Clipboard, capturing a region,active window or full screen it has all the basic required features.";
fDesc[4] = "system and allows you to create template designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[5] = "uses, such as office work, gaming, media editing or maximum resources (memory etc), and then switch from one setup to another.";
fDesc[6] = "designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[7] = "system and allows you to create template designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[8] = "allows you to create template designs. Those designs can be used to print on your DVD or CD discs that are printable. Your burner has to be LightScribe capable in order for this application to work and you also need to have some other LightScribe software installed.";
fDesc[9] = ", rotate, enhance, view and capture any area of the screen display. It also lets you viewing in different color mode or through separated color channels.";
fDesc[10] = "desktop tool can access remotely Windows PC or OSX Mac despite firewall’s, router’s or proxy’s configurations. This version supports Remote Desktop and RAdmin. It supports \"dynamic-DNS\" for VNC Servers without static IP addresses. EchoVNC works on Windows and Mac platforms.";
fDesc[11] = "computer keyboard, CD drive doors and power-off button (only in Windows XP). When Toddler Keys is installed, it will sit on your system tray until you activate it.";
fDesc[12] = "that work no matter what program you are in, you can: Launch a program or bring it back into focus Open a document, folder or Internet resource Minimize or maximize a window Resize, move or alter a window Issue a Media command, such as play, pause or volume up/down Start your screensaver or shutdown your computer Access hidden Windows utilities Control Winamp or compatible media players (we love QCD Player!) Instantly display any menu of programs or actions at the mouse pointer Using the ZenKEY configuration utility, you can add any program, add or alter any menu, and assign any keystroke to perform any action.";
fDesc[13] = "form size, set auto select and auto mouse delay time, set mouse sensitivity, set break timer interval, adjust transparency levels, get auto dwelling feedback and so on.";
fDesc[14] = "the current window location and size, transparency, toggle some Windows properties like Transparency and 'Always on Top', and switch between opened Windows, just using predefined shortcut keys.";
fDesc[15] = "recognize 9 mouse gestures and can do more than 20 actions, which associate with Windows shortcut operation!";
function tCollapseAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Expand descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("desc_" + id))
tShowHide(id, 2);
}
}
function tExpandAll(maxID)
{
document.getElementById("alls_action").innerHTML = "Collapse descriptions";
var id=1;
for (id=1; id <= maxID; id++)
{
if (document.getElementById("more_" + id))
tShowHide(id, 1);
}
}
function tShowHide(id, show)
{
var s = document.getElementById("more_" + id);
if ((s.innerHTML!=fDesc[id] || show==1) && show!=2)
{
s.innerHTML = fDesc[id];
}
else
{
s.innerHTML = '...';
}
}