﻿var i = -1;

function Testimonials()
{
  var txt = new Array();
  var ele = document.getElementById("testimonials");
  

txt[0]="<p class=\"padd\" align=justify>Because of the quality of your products and, even more, because of your quick and effective technical support I would recommend your .NET products to anyone. We are using Scan, Imaging and Annotation in few of our products, for over one year, without any problems.<br><br>Please continue with good work!</p><br><p class=\"txtright\">Ninoslav Rasinec<br/><a href=\"http://www.raverus.com/\">RAVERUS d.o.o.</a></p>";
  

txt[1]="<p class=\"padd\" align=justify>I have used Vintasoft’s libraries for the past five years and credit them for delivering high-valued software that is well priced and functionally robust. Vintasoft’s components are well designed and they consistently release updates that improve reliability and performance. I highly recommend developers to consider the Vintasoft tools as a natural plug-in for any project you tackle.</p><br><p class=\"txtright\">Paul Smietan<br/>CTO <a href=\"http://www.goscan.com/\">GoScan, Inc.</a></p>";
  

txt[2]="<p class=\"padd\" align=justify>Remember to come and have a look at the system we built using your software when you are in South Africa...! We have exe's scanning loan application forms from all over the country which load the documents into local pc based databases, from where the images get loaded to a central server in the evenings via webservices. This solution has helped to increase the turnaround time of a loan application from 3 weeks to 1 hour.</p><br><p class=\"txtright\">Jacques Nuss<br/><a href=\"http://www.eduloan.co.za/\">EDU-LOAN</a></p>";
 

txt[3]="<p class=\"padd\" align=justify>First of all, let me compliment you on your Barcode.NET Library. We evaluated a number of products to use in our application, and yours was our favorite.</p><br><p class=\"txtright\">Dan Konigsberg<br/><a href=\"http://www.campminder.com/\">CampMinder, LLC</a></p>";
  


i = i + 1;
  id = Math.floor(i % 4);
  ele.innerHTML = txt[id];
  window.setTimeout("Testimonials();", 20000);
}

function TWAIN_AX_testimonials()
{
  var txt = new Array();
  var ele = document.getElementById("testimonials");
  

txt[0]="<p class=\"padd\" align=justify>We purchased the Vintasoft ActiveX Control a little over a year ago and it has performed flawlessly. I wanted to say thank you. We originally bought the control to integrate it with an MS Access database to track checkouts. We used the control to scan driver's license images and photos. Things are working great.</p><br><p class=\"txtright\">Rich Hadden<br/><a href=\"http://www.wright.edu/\">Wright State University</a><br><br><br></p>";
  

txt[1]="<p class=\"padd\" align=justify>I just wanted to inform you that the Scanner Control is one of the best that we could get online. It works very fine, and merges well with our development environment.</p><br><p class=\"txtright\">Sunil R.<br/><a href=\"http://www.iris-i.com/\">Infoprint India Private Ltd.</a><br><br><br></p>";
  


i = i + 1;
  id = Math.floor(i % 2);
  ele.innerHTML = txt[id];
  window.setTimeout("TWAIN_AX_testimonials();", 20000);
}

function TWAIN_DotNet_testimonials()
{
  var txt = new Array();
  var ele = document.getElementById("testimonials");
  

txt[0]="<p class=\"padd\" align=justify>Remember to come and have a look at the system we built using your software when you are in South Africa...! We have exe's scanning loan application forms from all over the country which load the documents into local pc based databases, from where the images get loaded to a central server in the evenings via webservices. This solution has helped to increase the turnaround time of a loan application from 3 weeks to 1 hour.</p><br><p class=\"txtright\">Jacques Nuss<br/><a href=\"http://www.eduloan.co.za/\">EDU-LOAN</a><br><br><br></p>";
  

txt[1]="<p class=\"padd\" align=justify>I found your company in the Deep of the Web. I was looking for a client side scanning component in Google. I have no problem to approve your Software by friendly Companies. It's a really good programm.</p><br><p class=\"txtright\">Uwe Heinz<br/><a href=\"http://www.logisma.de/\">Logisma AG</a><br><br><br></p>";
  txt[2]="<p class=\"padd\" align=justify>I was evaluating a bunch of twain components for .NET but NONE of the Components were so simple and comfortable to handle as the Vintasoft Twain Control is!</p><br><p class=\"txtright\">Marcus Lauermann<br/>Naome Ltd.<br><br><br></p>";
  


i = i + 1;
  id = Math.floor(i % 3);
  ele.innerHTML = txt[id];
  window.setTimeout("TWAIN_DotNet_testimonials();", 20000);
}
