var fDesc=new Array();
fDesc[0] = "IP-Country Convertor 1.0 can be used to determine the country by IP address over a range of IP lists. To do that, just enter your IP list in a text file and then load the list into the program. This software can also help you do requests for a specific domain. This is a completely free program and you can download it on the developer's website.
Some of the features this program provides you with are:
* Real Time Geo-Locating (Country)
* Provide Location Aware Content (language, currency, etc.)
* Corporate Websites/E-commerce (think global, act local)
* Fraud Detection (Credit Card Fraud, etc.)
* On-line Campaign(targeted Banner Ads)
* Digital Rights Management
* Web Server Log Analysis
* Auto-selection of fields on forms (country, currency,language, etc.)
* Filter access on basis of originating country
* Spam Filtering";
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 = '';
}
}