var fDesc=new Array();
fDesc[1] = "it. Screen Calipers will help you to adjust a web page layout, a picture that you want to fit in a frame, any project that you are working in, charts and blueprints for architects and anything else that comes to your mind.";
fDesc[2] = "Screen Protractor floats above any other application so you can measure any angle on your screen.";
fDesc[3] = "simply and quickly. The Screen Compass floats above any other application so you can measure any angle on your screen.";
fDesc[4] = "the game has been improved, with new textures, new images, even new models in some cases. If you have a quick PC then the pack is an essential for your LFS.";
fDesc[6] = "pixel perfect accuracy. The Cardio Calipers are the perfect solution for EKG measurement, to measure Heart Rate, and any part of the complex.";
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 = '...';
}
}