var fDesc=new Array();
fDesc[0] = "What has only been a dream in the past is now a reality. WDI FX is the industry's first pest management system designed from the ground up to allow PCOs to operate in a paperless environment. Imagine the savings possible when service techs can receive tickets from the office electronically then record chemicals, target pests and locations treated with the tap of a finger. They can even capture client signatures on contracts, bids and service tickets. And yes, WDI FX works with QuickBooks®!
Main features:
- Choose from an assortment of service tickets formats
- State WDO reports include digital graphs and photos
- Customizable bids & contracts
- Advanced scheduling system called Smart Planner™
- Contact reports and email integrated into client history
- Email technician tickets with a single mouse click
- Works with Google Maps®, Skype® & SuperPages®
- Automatically track warranties and create renewal forms
- Includes Bait Station logs with graphs
- Create Chemical, sales tax and commission reports
- Store digital documents & photos with the click of a button
- Network versions available";
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 = '';
}
}