var fDesc=new Array();
fDesc[0] = "Zipoid is a ZIP Code verification, ZIP Code look-up and distance calculator tool. It contains a database of over 42000 ZIP Codes and is of great assistance to marketing, mail-order, transportation, relocation, shipping and catering companies.
Zipoid allows its users to calculate the distance ranges between different ZIP Code locations to estimate transportation costs, check ZIP Codes for validity, look up telephone area codes assigned to various ZIP Code locations, or view the list of all cities and towns located within the specified ZIP Code.
Marketers can use the tool for local mail advertising campaigns, since Zipoid automatically identifies all ZIP Codes found within the specified radius.
The search can de done by a ZIP Code, City Name, Area Code, or County Name.
Zipoid is very easy to use. Program's interface is simple and intuitive. It features only three tabs - Distance Calculation; Radius Search; ZIP Code, City Name and Area Code Lookup. The program does not require any special knowledge or personnel training.
Zipoid comes in two versions: The basic version is free for personal and commercial use, the second one called Zipoid Pro is extended version.
While the free version in enough for most purposes, the Pro version allows you to save search results in .txt, .csv, and .xls formats.";
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 = '';
}
}