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[3] = "woodgrain ruler, or at the touch of a button, a clear see-through plastic ruler. A Ruler for Windows is fun to learn and very easy to use.";
fDesc[4] = "for any user who works with images. With this simple tool you can measure the images in pixels, centimeters, millimeters and inches.";
fDesc[5] = ", inch, points or twips and the angle in radiant or degree The ruler is almost transparent. Additionally it has a screen loupe and a RGB value window.";
fDesc[7] = "(inches, points, centimeters, milimeters and pixels) and the size of the captures. Nothing is easier to run than Window Ruler.";
fDesc[8] = "in four different common measures - picas, cms, inches and pixels. The output of the measurement is presented in four values of horizontal, vertical, length and angle.";
fDesc[9] = "you adjust the width and length of ruler. It also includes magnifier. You can use it to magnify anything.";
fDesc[10] = "measure quickly and accurately distances, areas and perimeters of figures on the screen.";
fDesc[12] = "items as icons, thumbnails, windows on your desktop using a virtual ruler. The program is extremely easy to use. After the program is installed and launched an orange ruler appears on the screen ready for measuring.";
fDesc[13] = "screen ruler, and a screen capture tool.";
fDesc[15] = "mini-screen capture feature, and the ability to resize the windows of other applications.";
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 = '...';
}
}