         var tip=new Array
           tip[0]=''
           tip[1]='Whether your needs are simply a small, convenient, single workstation solution or a large enterprise Electronic Document Imaging System we have what&rsquo;s right for you.'
           tip[2]='Do you need to search on any word on a document and find every occurrence of that word or words in a file?  We can provide that for you.  Need a complete Image-by-Image Quality Control product with your imaging system?  We have that too!'
           tip[3]='Tired of trying to find a document in its travels through your normal routing system?  Workflow allows documents to travel electronically through your organization based on your rules for routing information.  It allows multiple functions to occur simultaneously such as signatures.  Talk to us about it, see if it&rsquo;s right for you.'
           tip[4]='The hardest part of a document imaging system is the time it takes to index all those files.  Now we offer a solution to that problem.  We can use state of the art Optical Character Recognition (OCR) to read the first page of your document and automatically index your files.  We can also match a single field and complete the rest of the index information automatically from your existing database.'
           tip[5]='Jukeboxes, RAID, Tape, massive hard drives or virtual jukeboxes; CD-ROM, DVD, WORM optical, Magneto Optical, whatever method you want to store your imaging system on, we can support it.'
           tip[6]='Computer Output to Laser Disk/Enterprise Report Management - Have a lot of computer reports or massive form runs?  We can capture all of it electronically and save you the expense of paper, CPU time and printer expense by printing them directly to your imaging solution.  We can support co-mingled report types and dynamic printstreams.'
           tip[7]='We can bring the power of data management to email messaging.  Enhances MS Exchange, Lotus Notes, and UNIX Sendmail.'
           tip[8]='From a small doctor&rsquo;s office, a high school&rsquo;s student records or a Fortune 500&rsquo;s Risk Management office, we can pickup your records, prepare them, scan them and provide you with the indexed images on a CD or FTP directly to you every night.  We have been in the document conversion business since 1974, so we know how to best handle your paper records.'
           tip[9]='Your forms can easily be converted directly to data with our software that reads all field types from hand printing to check boxes and from machine print to bar codes.'
           tip[10]='All of your basic forms up to complex multi-page forms can be captured and entered directly into your database without costly manual data entry, and the accuracy is improved significantly by eliminating human error.'
           tip[11]='Your company like many others can realize the benefit of electronic data capture without the investment in hardware and software by outsourcing your forms creation, printing, mailing and/or data capture to our Fulfillment Department. We will scan your forms, analyze the results and send you the results in any form you like.'
           tip[12]='Since you have made an investment in high quality professional hardware and software, why leave it to your already overworked IT staff. Let our trained, experienced professionals set it up the way it was designed to be installed, thus ensuring your system will be right the first time and every time.'
           tip[13]='Our professionals have been trained by the software and hardware manufacturers on the proper use of your system. They know all the shortcuts, secrets and best ways to use it. Let them train your people to make sure that you get the most from your investment. We offer on-site individual as well as group training or classroom classes at the software developer&rsquo;s site. Pick whichever is best for your needs.'
           tip[14]='Your organization is probably one of the best at what you do. You have trained your staff to outperform your competition and provide your customers with the best of what you offer. So have we. We can analyze the best, most economical solution for your document management problems. Like an architect can save you money by designing the right structure before you build, we can save you money by providing the proper system you really need.'
		   tip[15]='Participate in Cardiff&rsquo;s free online seminars, featuring demos and discussions of our products, applications and industry-specific solutions.  All you need to participate is an Internet connection, a Web browser and a phone.'
    //Script created by Jim Young (www.requestcode.com)
    function showtip(current,e,num,x,y,w,b)
        {
         if (document.layers) // Netscape 4.0+
            {
             theString="<DIV width='"+w+"' style='border-"+b+":1px solid silver;' CLASS='ttip'><table width=100% cellpadding=3><tr><td width=100%><img src='images/bullet_red.gif' width='9' height='8' border='0'>&nbsp;"+tip[num]+"</td></tr></table></DIV>"
             document.tooltip.document.write(theString)
             document.tooltip.document.close()
             document.tooltip.left=x
             document.tooltip.top=y
             document.tooltip.visibility="show"
            }
         else
           {
            if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
              {
               elm=document.getElementById("tooltip")
               elml=current
               elm.innerHTML= "<table width=100% cellpadding=3><tr><td width=100%><img src='images/bullet_red.gif' width='9' height='8' border='0'>&nbsp;" + tip[num] + "</td></tr></table>"
               elm.style.height=elml.style.height
               elm.style.top=x
               elm.style.left=y
               elm.style.visibility = "visible"
               elm.style.width = w
               if(b=="Left")
               {
                elm.style.borderLeft = '1px solid silver'
                elm.style.borderRight = '';
               }
               else
               {
                elm.style.borderLeft = ''
                elm.style.borderRight = '1px solid silver';
               }
              }
           }
        }
function hidetip(){
if (document.layers) // Netscape 4.0+
   {
    document.tooltip.visibility="hidden"
   }
else
  {
   if(document.getElementById) // Netscape 6.0+ and Internet Explorer 5.0+
     {
      elm.style.visibility="hidden"
     }
  }
}