var fDesc=new Array();
fDesc[0] = "Mihov Link Checker is a program that can check multiple links on a web site or a local web page. It reports the state of easch link: a link is valid or missing, forbidden or otherwise not accessible.
All the links can be stored in a plain text file or the program can extract the links automatically from a local or internet page. Then each link is tested separately for HTML server response. The results are returned in a nice graphical way.
The use of the program is easy - just enter the site's address or browse for a local file and let Mihov Link Checker do the work for you.
Your visitors will never see '404 Not Found' error on your web site again!";
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 = '';
}
}