var fDesc=new Array();
fDesc[1] = "see on the web page. HP Smart Web Printing allows users to: Select text and graphics easily from any web site and save a handy list of clips, save paper by combining portions of numerous web pages and preview and modify clips before printing";
fDesc[2] = "them. There is always access to this information any time anywhere, even if your going on a business trip, you can take these web pages with you on your laptop and view them with no Internet connection required.";
fDesc[3] = "is available to the users. It provides a series of new features like : tabbed browsing, incremental find, inbuilt download manager, live bookmarking and lots of third party add-ons.";
fDesc[4] = "take quick snapshots of individual web pages and saves the content in the original file format, allowing you to open them with associated applications or online tools such as newsreaders, e-mail clients, etc.";
fDesc[5] = "scripts or the selected part of it. The application scans the web page HTML code checking invalid tags, invalid tags attributes or values, misspelled sentences and invalid characters. It alse looks for quotation marks that might be missing or mismatched, missing tags, all over the HTML code.";
fDesc[6] = "some of the web browsers out there. As it is based on Internet Explorer, all the addons and favorites are automatically loaded in this browser. It supports the ever so popular tab navigation.";
fDesc[7] = "The application scans the web page HTML code checking invalid tags, invalid tags attributes or values, misspelled sentences and invalid characters. It also looks for quotation marks that might be missing or mismatched, missing tags, over the HTML code.";
fDesc[8] = "programming. dbQwikSite writes all your code for you. Works with popular databases and web servers. Creates ASP, ASP.net and PHP.";
fDesc[9] = "ingredient lists, and creates web pages for your recipe collection too.";
fDesc[11] = "you gather on the Internet. Never lose another Web page. SurfSaver is an ideal tool for anyone doing on-line research.";
fDesc[12] = "program can be used to extract images, names, contacts or anything desired from web pages. You can also extract data from offline web pages using this tool.";
fDesc[13] = "can easily extract,collect,store and manage text/html from web pages,filter invisible characters and give you a clean text when necessary!";
fDesc[14] = "form that allow you to easily find the necessary information using the built-in sorting and search system.";
fDesc[15] = ", messages (eBay alerts, user message, feedback, dispute, etc), and your eBay Store web pages and pictures using the eStoreComplete program. The program can even connect to Paypal to retrieve your eBay order payment information automatically! eStoreComplete manages your eBay business in your local machine with much faster, more interactive and user friendly interface. You will have all of your business data in your local database all the time, never need to depend on others to make your data available or keep them safe. eStoreComplete supports multiple eBay accounts; it also allows you to create employee accounts, assign permissions to the accounts and check account activities. You can install the eStoreComplete program over multiple machines and share the database over network so that your employees can work parallely. With eStoreComplete, you can create listings locally and then...";
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 = '...';
}
}