<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>offers</title>
	<atom:link href="http://www.iprotech.com/offers/?feed=rss2" rel="self" type="application/rss+xml" />
	<link>http://www.iprotech.com/offers</link>
	<description>Just another WordPress weblog</description>
	<lastBuildDate>Mon, 19 Mar 2012 20:13:15 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>To SQL or Not To SQL: The Question for Litigation Support Databases</title>
		<link>http://www.iprotech.com/offers/?p=408</link>
		<comments>http://www.iprotech.com/offers/?p=408#comments</comments>
		<pubDate>Mon, 19 Mar 2012 20:11:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.iprotech.com/offers/?p=408</guid>
		<description><![CDATA[To SQL or Not To SQL The Question for Litigation Support Databases The available database solutions for the litigation support market have radically evolved in the last decade.  Many newer solutions use relational database technologies, specifically SQL (Structured Query Language).  This discussion provides some insight into database solutions for litigation support and whether SQL should [...]]]></description>
			<content:encoded><![CDATA[<h1 align="center"><span style="color: #000000;">To SQL or Not To SQL</span></h1>
<h2 align="center">The Question for Litigation Support Databases</h2>
<p>The available database solutions for the litigation support market have radically evolved in the last decade.  Many newer solutions use relational database technologies, specifically SQL (Structured Query Language).  This discussion provides some insight into database solutions for litigation support and whether SQL should be the only choice. While there are many variations of SQL, for brevity, this is limited to Microsoft SQL Server.  I am and have been a proponent of SQL Server for a variety of solutions, but as with any technology solution, it is only the right solution if it is<em> chosen for the right reason and environment.  </em>As full disclosure, IPRO Tech develops our Enterprise Solutions, Allegro, eCapture and Eclipse, using SQL as the database engine.  We also offer a non-SQL database solution with our Eclipse SE product.</p>
<h3>Historical Perspective</h3>
<p>Ten years ago, most cases were stored in somewhat proprietary database products.  Most of those products began to stress under the increasing volume of records produced by electronic discovery, compared to the relatively small number of paper/imaged documents.  Modern solutions migrated to SQL based platforms, some for the right reasons, others because it was believed that large scale cases required it.  These legacy databases of the past reached their limit because they were originally designed a <em>decade or two ago</em>.  Most were never redesigned for modern use in order to avoid major conversions as well as to preserve backward compatibility. That said, companies who invested in modernizing their flat file systems for today’s disk storage, memory, and operating systems handle large volume cases with excellent performance; as in all products, it is about design and implementation.</p>
<h3>Advantages of SQL Server</h3>
<p>SQL Server is a highly scalable and robust relational platform <strong><em>requiring sophisticated configuration and maintenance to run properly</em></strong>.  It is much more than a database server; it also performs functions similar to an application server, a file server, and an operating system. A server based platform such as SQL Server requires an experienced DBA, sophisticated monitoring, maintenance, and backup; generally outside the control of the application software.  Conversely, a file based database usually can be maintained by litigation support personnel and normal IT personnel (file backup), since most of the database internal operations are controlled by the software itself.</p>
<p>If the database solution sought requires load balancing, sophisticated relational querying, access to the data from outside the application, or needs to be browser based; then SQL is definitely the right choice.  SQL servers, web servers, and files servers can be scaled using common standards and technology and the knowledge to do so is widely available in today’s Microsoft based world. There are many trained personnel available and more are entering the market each day. While file based database applications can certainly ‘build in’ remote access, load balancing, querying, and access to data using scripting languages, this requires proprietary, complex, specialized infrastructure handling, and additional training, which makes SQL a better alternative.</p>
<h3>Advantages of Flat-File Database</h3>
<p>If the key requirement is performance and support for large volume cases, a well-developed file based database can match, and in many cases, outperform SQL Server in litigation document databases.  Before all the SQL developers and DBA’s shout their objections, there is a valid reason for this statement.  Most litigation document databases perform far more data reads than writes; closer to a “write-once-read-many” paradigm than to large scale transaction based processes.  Database writes occur when data is loaded during an import, documents are issue tagged, notes are entered, lists are created, and images are annotated.  Those write operations pale in comparison to read operations like searching, review, and production.  SQL excels at large volume transactions and relational querying; but a properly designed file system database will soar for review, even on large cases, because they are optimized for reading data in non-transactional related methods.  A database engine does not have to be SQL to perform the same type of searches and filtering that most people associate with relational platforms.</p>
<h3>Comparing SQL and Flat-File</h3>
<p>There are two fundamental engines at the core of SQL Server, the Relational Engine and the Storage Engine, providing the foundation for data access and data storage.  Ultimately, SQL Server stores its data to disk (just like flat file systems) in an MDF file and the logs in an LDF file. The disk storage algorithms are very similar across SQL and non-SQL database platforms with performance, stability, and reliability resulting from the underlying architecture. One interesting note: SQL Server uses indexes to improve the performance of querying and other operations<em>.  These indexes are stored on disk using a B-Tree</em> algorithm <a href="http://msdn.microsoft.com/en-us/library/ms177443.aspx">http://msdn.microsoft.com/en-us/library/ms177443.aspx</a>.  That name should sound familiar to many of us; the core algorithm was invented in <strong>1972</strong> <a href="http://en.wikipedia.org/wiki/B-tree">http://en.wikipedia.org/wiki/B-tree</a> .  While the methods have been improved over the years; at its core, this is the basis for most high speed storage on disk.  SQL server data storage uses a modified version of OLE DB (although this will change in the near future).  Paradigms that work rarely change; they are just improved.</p>
<p>SQL Server resides between the client and the database file(s) and handles all the querying, reads, writes, caching as well as a multitude of other operations.  Anytime there is an abstraction layer between the client and server data, there is additional overhead. The incorrect tuning of a SQL Server can ultimately result in a solution that becomes unusable.  A file based system is designed so each client accesses shared data from the network storage, so the performance is based upon disk and server access as well as the design of the database.  Both SQL and file based systems are affected by data storage speed and capability. SQL Server is a fantastic and sometimes amazing solution; but if the requirements do not dictate the need, then a quality file based database is a much better choice, eliminating the complexity and the need for specialized hardware and personnel while performing equally as well.  A decision should be based on features, technology, and the company that created the application instead of just the platform or data structure.</p>
<h3>When to Choose a SQL Based Solution</h3>
<ol>
<li>You have a competent DBA</li>
<li>Most of your applications are already SQL based (which means you should already have a competent DBA)</li>
<li>You need to scale to hundreds or thousands of users utilizing load balancing and/or redundancy</li>
<li>Your application is hosted and/or browser based and accesses the data remotely</li>
<li>You <em>absolutely </em>need to query or access the data outside of the application,.e.g. custom reports, data mining, integrated data migration, etc.</li>
</ol>
<p>The right solution comes from a firm understanding of business requirements, infrastructure, industry, and current technology.  SQL or non-SQL solutions can be equally viable. The key determining factors should be product features, environment and infrastructure match, reliability, performance, and the reputation of the company that builds it.</p>
<p><strong>About the author:</strong></p>
<p>Richard Ruyle has been involved in software development for vertical markets for over twenty years, including complex database solutions.  He currently serves as CTO/CIO for IPRO Tech which has been developing leading edge technology solutions for the litigation support industry since 1990.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.iprotech.com/offers/?feed=rss2&#038;p=408</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Contest Rules &#8211; IPRO Demo and Win! Contest</title>
		<link>http://www.iprotech.com/offers/?p=357</link>
		<comments>http://www.iprotech.com/offers/?p=357#comments</comments>
		<pubDate>Wed, 28 Dec 2011 18:03:28 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.iprotech.com/offers/?p=357</guid>
		<description><![CDATA[Contest Rules – IPRO Demo and Win! Contest These are the official rules (&#8220;Rules) for the IPRO Demo and Win! Contest (the &#8220;Promotion&#8221;).  If you participate in the Promotion, you (&#8220;Entrant&#8221;) agree to comply with and be bound by the Rules. &#160; Sponsor:  The sponsor of the Promotion is IPRO Tech, Inc. (&#8220;IPRO&#8221;), 6811 E [...]]]></description>
			<content:encoded><![CDATA[<p><span style="font-size: large;"><strong>Contest Rules – IPRO Demo and Win! Contest</strong></span></p>
<p><span style="font-size: small;">These are the official rules (&#8220;Rules) for the IPRO Demo and Win! Contest (the &#8220;Promotion&#8221;).  If you participate in the Promotion, you (&#8220;Entrant&#8221;) agree to comply with and be bound by the Rules.</span></p>
<p>&nbsp;</p>
<p><span style="font-size: small;"><strong>Sponsor</strong>:  The sponsor of the Promotion is IPRO Tech, Inc. (&#8220;IPRO&#8221;), 6811 E Mayo Blvd. Suite 350, Phoenix, AZ, 85054.  All questions regarding the Promotion should be directed by e-mail to <span style="text-decoration: underline;">scratcherrules@iprocorp.com</span></span></p>
<p>&nbsp;</p>
<p><span style="font-size: small;"><strong>No purchase necessary:</strong> No purchase or payment is necessary to participate in the Promotion or win.</span></p>
<p>&nbsp;</p>
<p><span style="font-size: small;"><strong>Jurisdictions:</strong> The Promotion is void where any aspect of the Promotion is prohibited by law or where registration, bonding or translation is required.</span></p>
<p>&nbsp;</p>
<p><span style="font-size: small;"><strong>Participation/Eligibility: </strong>Starting at 10:00 a.m. Eastern Standard Time, January 30, 2012, and continuing through 3:00 p.m. Eastern Standard Time, February 1, 2012 (the &#8220;Promotion Period&#8221;), visit the IPRO Booth at the Legal Tech New York (the &#8220;Site&#8221;) and preview the IPRO Software to receive a Scratch and Win! Entry Form.  Each Entrant is limited to one Entry Form.  No purchase is necessary to receive an Entry Form.</span></p>
<p><span style="font-size: small;">Entrant must complete a demo and supply a valid email address, name, company name, address and phone as part of the entry process.  No entries will be accepted after the Promotion Period.  An Entrant must be an individual who is legal resident of the U.S., and at least the age of majority in his or her jurisdiction.</span></p>
<p><span style="font-size: small;">Employees, independent contractors, officers, and directors of IPRO, its affiliates, subsidiaries, partners, advertising, promotion, and fulfillment agencies, and legal advisors, and the immediate family members and persons living in the same household of such persons, are not eligible to win a prize in the Promotion.</span></p>
<p>&nbsp;</p>
<p><span style="font-size: small;"><strong>Winner Selection: </strong>Instant winners will receive a $10 Starbucks card with the odds of winning 1:10. The winner of the IPRO iPAD 2 Drawing will selected by a random drawing of all entries received as of the drawing time.  The odds of winning the IPRO iPAD 2 Drawing will depend upon the number of entrants received.  Limit of one prize per person for the Promotion Period and prizes may not be redeemed for cash.</span></p>
<p><span style="font-size: small;"><strong>Announcement of Winners</strong>:  Instant winners will be notified instantly on their Entry Form by completing the scratch and win portion.  The IPRO iPAD 2 Drawing Winner will be announced on Monday, January 30, 2012 at 4pm and Tuesday, January 31, 2012 at 4pm and, if not present at the time of the drawing, notified by US Mail within 10 days after selection.  Notification and prize will be sent to the winner&#8217;s address of record.  If the notification or the prize cannot be delivered to such address, the prize may be forfeited and an alternative winner may be selected.  For the IPRO iPAD 2 Drawing winners list, send a written request to IPRO at the address set forth above.  All decisions by IPRO are final and binding in all matters relating to this Promotion.</span></p>
<p><span style="font-size: small;"><strong>Prizes: </strong> IPRO will award:  (1) Two prizes for the IPRO iPAD 2 Drawing (One drawing on Monday and a second drawing on Tuesday): Apple® &#8211; iPad® 2 with Wi-Fi &#8211; 16GB – Black  (valued at $499.99); and (2) 100 Instant Win Prizes:  $10 Starbucks Gift Cards (valued at $10 each).  ALL TAXES ASSOCIATED WITH THE RECEIPT OR USE OF THE PRIZES ARE THE SOLE RESPONSIBILITY OF THE WINNERS.</span></p>
<p>&nbsp;</p>
<p><span style="font-size: small;"><strong>License to Display:</strong> Entrant, by submitting an Entry Form, hereby grants IPRO the right to display the Entrant’s name and image on IPRO marketing and promotional materials (including IPRO booths at trade shows and the IPRO web site) both during and following the term of the Promotion.</span></p>
<p>&nbsp;</p>
<p><span style="font-size: small;"><strong>Limit of Liability:</strong> IPRO SHALL NOT BE RESPONSIBLE OR LIABLE FOR ANY LOSS, DAMAGE, COST, OR INJURY THAT ARISES FROM OR RELATES TO PARTICIPATION IN THE PROMOTION, OR WINNING OR USE OF A PRIZE, INCLUDING BUT NOT LIMITED TO: (I) LATE, LOST, DELAYED, DAMAGED, MISDIRECTED, INCOMPLETE, OR UNINTELLIGIBLE ENTRIES; (II) TELEPHONE, ELECTRONIC, HARDWARE OR SOFTWARE PROGRAM, NETWORK, INTERNET, OR COMPUTER MALFUNCTIONS, FAILURES, VIRUSES OR DIFFICULTIES OF ANY KIND; (III) FAILED, INCOMPLETE, GARBLED, OR DELAYED COMPUTER TRANSMISSIONS; (IV) THE DOWNLOADING OF ANY MATERIAL IN CONNECTION WITH THIS PROMOTION; OR (V) ANY OTHER CONDITION THAT MAY CAUSE THE PROMOTION TO BE DISRUPTED OR CORRUPTED.  IPRO RESERVES THE RIGHT, IN ITS SOLE DISCRETION AND WITHOUT PRIOR NOTICE, TO SUSPEND OR CANCEL THE PROMOTION OR ALTER THE RULES FOR ANY REASON, INCLUDING, BUT NOT LIMITED TO, IF AT ANY TIME A COMPUTER VIRUS, TECHNICAL PROBLEM, OR OTHER UNFORESEEABLE EVENT ALTERS OR CORRUPTS THE ADMINISTRATION OF THE PROMOTION.</span></p>
<p>&nbsp;</p>
<p><span style="font-size: small;"><strong>Release: </strong>ENTRANT RELEASES AND AGREES TO INDEMNIFY AND HOLD HARMLESS IPRO AND ITS AFFILIATES, DIRECTORS, OFFICERS, EMPLOYEES, PARTNERS AND AGENTS FROM ANY LIABILITY WHATSOEVER FOR ANY CLAIMS, COSTS, LOSSES, OR DAMAGES (INCLUDING INFRINGEMENT OF PROPRIETARY RIGHTS, RIGHTS OF PUBLICITY OR PRIVACY OR DEFAMATION) ARISING OUT OF OR IN CONNECTION WITH: (I) THE ENTRY SUBMITTED BY ENTRANT; (II) ENTERING AND PARTICIPATING IN THE PROMOTION; AND/OR (III) ACCEPTING OR USING ANY PRIZE.  HOWEVER NOTHING IN THESE RULES SHALL LIMIT SPONSOR&#8217;S LIABILITY UNDER ANY CATEGORY OF LIABILITY WHICH UNDER THE LAW OF AN ENTRANT&#8217;S JURISDICTION CANNOT LAWFULLY BE LIMITED.</span></p>
<p><span style="font-size: small;"><strong>Governing Law: </strong>The Promotion and the rights and obligations of IPRO and Entrants will be governed by and controlled by the laws of the State of Arizona, United States of America, applicable to contracts made and performed therein without reference to the applicable choice of law provisions. All actions, proceedings or litigation relating hereto will be instituted and prosecuted solely within the State of Arizona, Maricopa County.  The parties consent to the jurisdiction of the state courts of Arizona and federal court located within such state and county with respect to any action, dispute or other matter pertaining to or arising out of the Promotion.</span></p>
<p>&nbsp;</p>
<p><span style="font-size: small;"><strong>Privacy: </strong>Any Entrant information submitted as part of the registration process will be collected in accordance with IPRO&#8217;s Privacy Policy which can be found at www.iprotech.com/privacy</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iprotech.com/offers/?feed=rss2&#038;p=357</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPRO White Paper Download: Managing Document Reviews For Maximum Long-Term Benefit</title>
		<link>http://www.iprotech.com/offers/?p=288</link>
		<comments>http://www.iprotech.com/offers/?p=288#comments</comments>
		<pubDate>Fri, 19 Aug 2011 19:23:53 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.iprotech.com/offers/?p=288</guid>
		<description><![CDATA[Managing Document Reviews For Maximum Long-Term Benefit By Jim King, CEO, IPRO Tech, Inc. Whether it’s viewed as an investment or as an expense, the decision to litigate a dispute must make business sense. Moreover, given the fact that 70% or more of a litigation budget today is consumed by the fact discovery phase of [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.iprotech.com/offers/wp-content/uploads/2010/09/Whitepaper_download_top1.jpg" rel="wp-prettyPhoto[g288]"><img class="aligncenter size-full wp-image-171" title="Whitepaper_download_top" src="http://www.iprotech.com/offers/wp-content/uploads/2010/09/Whitepaper_download_top1.jpg" alt="" width="680" height="107" /></a></p>
<p><span style="font-size: large;"><strong><span style="font-family: arial,helvetica,sans-serif;">Managing Document Reviews For Maximum Long-Term Benefit</span></strong> </span></p>
<p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><strong>By Jim King, CEO, IPRO Tech, Inc.<br />
</strong></span></span></p>
<p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;">Whether it’s viewed as an investment or as an expense, the decision to litigate a dispute must make business sense. Moreover, given the fact that 70% or more of a litigation budget today is consumed by the fact discovery phase of the dispute, it’s especially important to make economically rational decisions about how to best manage that critical portion of case development.  This paper examines best practices for making those important decisions and how to manage the process for the maximum benefit of your organization.<br />
</span></span></p>
<p><span style="font-size: small;"><strong><span style="font-family: arial,helvetica,sans-serif;">Please fill out the form below to access the download.</span></strong></span></p>

		<div id="usermessage7a" class="cf_info "></div>
		<form enctype="multipart/form-data" action="/offers/?feed=rss2#usermessage7a" method="post" class="cform" id="cforms7form">
		<ol class="cf-ol">
			<li id="li-7-1" class=""><label id="label-7-1" for="cf7_field_1"><span>Name</span></label><input type="text" name="cf7_field_1" id="cf7_field_1" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-7-2" class=""><label id="label-7-2" for="cf7_field_2"><span>Company</span></label><input type="text" name="cf7_field_2" id="cf7_field_2" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-7-3" class=""><label id="label-7-3" for="cf7_field_3"><span>Title</span></label><input type="text" name="cf7_field_3" id="cf7_field_3" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-7-4" class=""><label id="label-7-4" for="cf7_field_4"><span>Email</span></label><input type="text" name="cf7_field_4" id="cf7_field_4" class="single fldemail fldrequired" value=""/><span class="emailreqtxt">(valid email required)</span></li>
			<li id="li-7-5" class=""><label id="label-7-5" for="cf7_field_5"><span>Phone Number</span></label><input type="text" name="cf7_field_5" id="cf7_field_5" class="single" value=""/></li>
		</ol>
		<fieldset class="cf_hidden">
			<legend>&nbsp;</legend>
			<input type="hidden" name="cf_working7" id="cf_working7" value="One%20moment%20please..."/>
			<input type="hidden" name="cf_failure7" id="cf_failure7" value="Please%20fill%20in%20all%20the%20required%20fields."/>
			<input type="hidden" name="cf_codeerr7" id="cf_codeerr7" value="Please%20double-check%20your%20verification%20code."/>
			<input type="hidden" name="cf_customerr7" id="cf_customerr7" value="yyy"/>
			<input type="hidden" name="cf_popup7" id="cf_popup7" value="nn"/>
		</fieldset>
		<p class="cf-sb"><input type="submit" name="sendbutton7" id="sendbutton7" class="sendbutton" value="Submit" onclick="return cforms_validate('7', false)"/></p></form><p class="linklove" id="ll7"><a href="http://www.deliciousdays.com/cforms-plugin"><em>cforms</em> contact form by delicious:days</a></p>
<p><strong><span style="font-size: medium;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></strong></p>
<p style="text-align: center;"><span style="font-size: medium;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.iprotech.com/offers/wp-content/uploads/2011/08/Eclipse-Trial_download_footer-e1313513939487.jpg" rel="wp-prettyPhoto[g288]"><img class="aligncenter size-full wp-image-267" title="Eclipse-Trial_download_footer" src="http://www.iprotech.com/offers/wp-content/uploads/2011/08/Eclipse-Trial_download_footer-e1313513939487.jpg" alt="" width="680" height="84" /></a><br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iprotech.com/offers/?feed=rss2&#038;p=288</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPRO Eclipse Free Trial</title>
		<link>http://www.iprotech.com/offers/?p=261</link>
		<comments>http://www.iprotech.com/offers/?p=261#comments</comments>
		<pubDate>Tue, 16 Aug 2011 16:02:18 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.iprotech.com/offers/?p=261</guid>
		<description><![CDATA[A litigation database and more, IPRO Eclipse gives you the power to effectively control the review process using one application. Designed with you in mind, Eclipse comes equipped with all the functionality required for capture, review, analysis, and production of your case.  With IPRO Eclipse, you can focus on the case, and not the technology. [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.iprotech.com/offers/wp-content/uploads/2011/08/Eclipse-Trial_download_top.jpg" rel="wp-prettyPhoto[g261]"><img class="aligncenter size-full wp-image-266" title="Eclipse-Trial_download_top" src="http://www.iprotech.com/offers/wp-content/uploads/2011/08/Eclipse-Trial_download_top-e1313513913971.jpg" alt="" width="700" height="109" /></a></p>
<p><strong><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">A litigation database and more, IPRO Eclipse gives you the power to effectively control the review process using one application. Designed with you in mind, Eclipse comes equipped with all the functionality required for capture, review, analysis, and production of your case.  With IPRO Eclipse, you can focus on the case, and not the technology.</span></span></strong></p>
<p><strong><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;">Please fill out the following form to receive your free trial version of IPRO Eclipse:</span></span></strong></p>
<p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: small;"><br />
</span></span></p>

		<div id="usermessage6a" class="cf_info "></div>
		<form enctype="multipart/form-data" action="/offers/?feed=rss2#usermessage6a" method="post" class="cform" id="cforms6form">
		<ol class="cf-ol">
			<li id="li-6-1" class=""><label id="label-6-1" for="cf6_field_1"><span>First Name</span></label><input type="text" name="cf6_field_1" id="cf6_field_1" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-6-2" class=""><label id="label-6-2" for="cf6_field_2"><span>Last Name</span></label><input type="text" name="cf6_field_2" id="cf6_field_2" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-6-3" class=""><label id="label-6-3" for="cf6_field_3"><span>Company</span></label><input type="text" name="cf6_field_3" id="cf6_field_3" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-6-4" class=""><label id="label-6-4" for="cf6_field_4"><span>Email</span></label><input type="text" name="cf6_field_4" id="cf6_field_4" class="single fldemail fldrequired" value=""/><span class="emailreqtxt">(valid email required)</span></li>
			<li id="li-6-5" class=""><label id="label-6-5" for="cf6_field_5"><span>Address</span></label><input type="text" name="cf6_field_5" id="cf6_field_5" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-6-6" class=""><label id="label-6-6" for="cf6_field_6"><span>City</span></label><input type="text" name="cf6_field_6" id="cf6_field_6" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-6-7" class=""><label id="label-6-7" for="cf6_field_7"><span>State</span></label><input type="text" name="cf6_field_7" id="cf6_field_7" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-6-8" class=""><label id="label-6-8" for="cf6_field_8"><span>Zip</span></label><input type="text" name="cf6_field_8" id="cf6_field_8" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-6-9" class=""><label id="label-6-9" for="cf6_field_9"><span>Phone</span></label><input type="text" name="cf6_field_9" id="cf6_field_9" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
		</ol>
		<fieldset class="cf_hidden">
			<legend>&nbsp;</legend>
			<input type="hidden" name="cf_working6" id="cf_working6" value="One%20moment%20please..."/>
			<input type="hidden" name="cf_failure6" id="cf_failure6" value="Please%20fill%20in%20all%20the%20required%20fields."/>
			<input type="hidden" name="cf_codeerr6" id="cf_codeerr6" value="Please%20double-check%20your%20verification%20code."/>
			<input type="hidden" name="cf_customerr6" id="cf_customerr6" value="yyy"/>
			<input type="hidden" name="cf_popup6" id="cf_popup6" value="nn"/>
		</fieldset>
		<p class="cf-sb"><input type="submit" name="sendbutton6" id="sendbutton6" class="sendbutton" value="Submit" onclick="return cforms_validate('6', false)"/></p></form><p class="linklove" id="ll6"><a href="http://www.deliciousdays.com/cforms-plugin"><em>cforms</em> contact form by delicious:days</a></p>
<p><a href="http://www.iprotech.com/offers/wp-content/uploads/2010/09/Channel_survey_bottomV1.jpg" rel="wp-prettyPhoto[g261]"><br />
</a><img class="aligncenter size-full wp-image-267" title="Eclipse-Trial_download_footer" src="http://www.iprotech.com/offers/wp-content/uploads/2011/08/Eclipse-Trial_download_footer-e1313513939487.jpg" alt="" width="700" height="87" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iprotech.com/offers/?feed=rss2&#038;p=261</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPRO Eclipse SE Lab Series Survey</title>
		<link>http://www.iprotech.com/offers/?p=247</link>
		<comments>http://www.iprotech.com/offers/?p=247#comments</comments>
		<pubDate>Mon, 15 Aug 2011 22:31:34 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.iprotech.com/offers/?p=247</guid>
		<description><![CDATA[IPRO may begin a series of monthly WebEx Eclipse SE Labs using real-world data scenarios. These live events will be an exceptional opportunity to see key new features, discuss upcoming changes, and demonstrate the product in an easy to access environment. Please fill out the below form so we can develop this program to better [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.iprotech.com/offers/wp-content/uploads/2010/05/Channel_survey_top.jpg" rel="wp-prettyPhoto[g247]"><img class="aligncenter size-full wp-image-5" title="Channel_survey_top" src="http://www.iprotech.com/offers/wp-content/uploads/2010/05/Channel_survey_top-e1313447633234.jpg" alt="IPRO Customer Feedback" width="700" height="109" /></a><a href="../wp-content/uploads/2010/05/Channel_survey_top.jpg" rel="wp-prettyPhoto[g247]"><br />
</a></p>
<p>IPRO may begin a series of monthly WebEx Eclipse SE Labs using real-world data scenarios. These live events will be an exceptional opportunity to see key new features, discuss upcoming changes, and demonstrate the product in an easy to access environment. Please fill out the below form so we can develop this program to better serve your needs.</p>
<p style="text-align: left;">
		<div id="usermessage5a" class="cf_info "></div>
		<form enctype="multipart/form-data" action="/offers/?feed=rss2#usermessage5a" method="post" class="cform" id="cforms5form">
		<ol class="cf-ol">
			<li id="li-5-1" class=" cf-box-title">Would you find this helpful to your organization?</li>
			<li id="li-5-1items" class="cf-box-group">
				<input type="radio" id="cf5_field_1-1" name="cf5_field_1" value="Yes" class="cf-box-b fldrequired"/><label id="label-5-11" for="cf5_field_1-1" class="cf-after"><span>Yes</span></label>
				<input type="radio" id="cf5_field_1-2" name="cf5_field_1" value="No" class="cf-box-b fldrequired"/><label id="label-5-12" for="cf5_field_1-2" class="cf-after"><span>No</span></label>
			</li>
			<li id="li-5-2" class="cf-box-title">What topics would be most beneficial?</li>
			<li id="li-5-2items" class="cf-box-group">
				<input type="checkbox" id="cf5_field_2-1" name="cf5_field_2[]" value="Searching"  class="cf-box-b"/><label id="label-5-21" for="cf5_field_2-1" class="cf-group-after"><span>Searching</span></label>
				<br />
				<input type="checkbox" id="cf5_field_2-2" name="cf5_field_2[]" value="Security"  class="cf-box-b"/><label id="label-5-22" for="cf5_field_2-2" class="cf-group-after"><span>Security</span></label>
				<br />
				<input type="checkbox" id="cf5_field_2-3" name="cf5_field_2[]" value="Dashboard"  class="cf-box-b"/><label id="label-5-23" for="cf5_field_2-3" class="cf-group-after"><span>Dashboard</span></label>
				<br />
				<input type="checkbox" id="cf5_field_2-4" name="cf5_field_2[]" value="Reports "  class="cf-box-b"/><label id="label-5-24" for="cf5_field_2-4" class="cf-group-after"><span>Reports </span></label>
				<br />
				<input type="checkbox" id="cf5_field_2-5" name="cf5_field_2[]" value="Other"  class="cf-box-b"/><label id="label-5-25" for="cf5_field_2-5" class="cf-group-after"><span>Other</span></label>
				<br />
			</li>
			<li id="li-5-3" class=""><label id="label-5-3" for="cf5_field_3"><span>If "Other", please provide more detail:</span></label><input type="text" name="cf5_field_3" id="cf5_field_3" class="single" value=""/></li>
			<li id="li-5-4" class="cf-box-title">What day(s) of the week would work best for you?</li>
			<li id="li-5-4items" class="cf-box-group">
				<input type="checkbox" id="cf5_field_4-1" name="cf5_field_4[]" value="Monday"  class="cf-box-b"/><label id="label-5-41" for="cf5_field_4-1" class="cf-group-after"><span>Monday</span></label>
				<br />
				<input type="checkbox" id="cf5_field_4-2" name="cf5_field_4[]" value="Tuesday"  class="cf-box-b"/><label id="label-5-42" for="cf5_field_4-2" class="cf-group-after"><span>Tuesday</span></label>
				<br />
				<input type="checkbox" id="cf5_field_4-3" name="cf5_field_4[]" value="Wednesday"  class="cf-box-b"/><label id="label-5-43" for="cf5_field_4-3" class="cf-group-after"><span>Wednesday</span></label>
				<br />
				<input type="checkbox" id="cf5_field_4-4" name="cf5_field_4[]" value="Thursday"  class="cf-box-b"/><label id="label-5-44" for="cf5_field_4-4" class="cf-group-after"><span>Thursday</span></label>
				<br />
				<input type="checkbox" id="cf5_field_4-5" name="cf5_field_4[]" value="Friday"  class="cf-box-b"/><label id="label-5-45" for="cf5_field_4-5" class="cf-group-after"><span>Friday</span></label>
				<br />
			</li>
			<li id="li-5-5" class=" cf-box-title">What time of the day would work best for you?</li>
			<li id="li-5-5items" class="cf-box-group">
				<input type="radio" id="cf5_field_5-1" name="cf5_field_5" value="A.M." class="cf-box-b fldrequired"/><label id="label-5-51" for="cf5_field_5-1" class="cf-after"><span>A.M.</span></label>
				<input type="radio" id="cf5_field_5-2" name="cf5_field_5" value="P.M." class="cf-box-b fldrequired"/><label id="label-5-52" for="cf5_field_5-2" class="cf-after"><span>P.M.</span></label>
			</li>
			<li id="li-5-6" class=" cf-box-title">Are there any other IPRO products you would like to see a Lab Series on?</li>
			<li id="li-5-6items" class="cf-box-group">
				<input type="radio" id="cf5_field_6-1" name="cf5_field_6" value="Yes" class="cf-box-b fldrequired"/><label id="label-5-61" for="cf5_field_6-1" class="cf-after"><span>Yes</span></label>
				<input type="radio" id="cf5_field_6-2" name="cf5_field_6" value="No" class="cf-box-b fldrequired"/><label id="label-5-62" for="cf5_field_6-2" class="cf-after"><span>No</span></label>
			</li>
			<li id="li-5-7" class=""><label id="label-5-7" for="cf5_field_7"><span>If "Yes", which products:</span></label><input type="text" name="cf5_field_7" id="cf5_field_7" class="single" value=""/></li>
		</ol>
		<fieldset class="cf_hidden">
			<legend>&nbsp;</legend>
			<input type="hidden" name="cf_working5" id="cf_working5" value="One%20moment%20please..."/>
			<input type="hidden" name="cf_failure5" id="cf_failure5" value="Please%20fill%20in%20all%20the%20required%20fields."/>
			<input type="hidden" name="cf_codeerr5" id="cf_codeerr5" value="Please%20double-check%20your%20verification%20code."/>
			<input type="hidden" name="cf_customerr5" id="cf_customerr5" value="yyy"/>
			<input type="hidden" name="cf_popup5" id="cf_popup5" value="nn"/>
		</fieldset>
		<p class="cf-sb"><input type="submit" name="sendbutton5" id="sendbutton5" class="sendbutton" value="Submit" onclick="return cforms_validate('5', false)"/></p></form><p class="linklove" id="ll5"><a href="http://www.deliciousdays.com/cforms-plugin"><em>cforms</em> contact form by delicious:days</a></p>
<p style="text-align: center;"><a href="http://www.iprotech.com/offers/wp-content/uploads/2010/09/Channel_survey_bottomV2.jpg" rel="wp-prettyPhoto[g247]"><img class="aligncenter size-full wp-image-166" title="Channel_survey_bottomV2" src="http://www.iprotech.com/offers/wp-content/uploads/2010/09/Channel_survey_bottomV2-e1313447669759.jpg" alt="" width="700" height="351" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iprotech.com/offers/?feed=rss2&#038;p=247</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPRO White Paper Download- Using Search as Part of A Defensible Production Process</title>
		<link>http://www.iprotech.com/offers/?p=228</link>
		<comments>http://www.iprotech.com/offers/?p=228#comments</comments>
		<pubDate>Tue, 12 Apr 2011 20:33:26 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.iprotech.com/offers/?p=228</guid>
		<description><![CDATA[Using Search as Part of a Defensible Production Process By Joe Howie Text searching is a widely used and accepted way to reduce the costs of selecting responsive documents to produce during discovery and of identifying potentially-privileged records to review. This paper examines the use of text searching as part of a defensible production process, [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.iprotech.com/offers/wp-content/uploads/2010/09/Whitepaper_download_top1.jpg" rel="wp-prettyPhoto[g228]"><img class="aligncenter size-full wp-image-171" title="Whitepaper_download_top" src="http://www.iprotech.com/offers/wp-content/uploads/2010/09/Whitepaper_download_top1.jpg" alt="" width="753" height="118" /></a></p>
<p><span style="font-size: large;"><span style="font-family: arial,helvetica,sans-serif;"><strong>Using Search as Part of a Defensible Production Process</strong></span></span></p>
<p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><strong>By Joe Howie<br />
</strong></span></span></p>
<p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;">Text searching is a widely used and accepted way to reduce the costs of selecting responsive documents to produce during discovery and of identifying potentially-privileged records to review. This paper examines the use of text searching as part of a defensible production process, considers information retrieval research and case law pertaining to text searching, and concludes with recommendations on how to maximize the defensibility of the use of text searching as part of that process.</span></span></p>
<p><span style="font-size: small;"><strong><span style="font-family: arial,helvetica,sans-serif;">Please fill out the form below to access the download.</span></strong></span></p>

		<div id="usermessage4a" class="cf_info "></div>
		<form enctype="multipart/form-data" action="/offers/?feed=rss2#usermessage4a" method="post" class="cform" id="cforms4form">
		<ol class="cf-ol">
			<li id="li-4-1" class=""><label id="label-4-1" for="cf4_field_1"><span>Name</span></label><input type="text" name="cf4_field_1" id="cf4_field_1" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-4-2" class=""><label id="label-4-2" for="cf4_field_2"><span>Company</span></label><input type="text" name="cf4_field_2" id="cf4_field_2" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-4-3" class=""><label id="label-4-3" for="cf4_field_3"><span>Title</span></label><input type="text" name="cf4_field_3" id="cf4_field_3" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-4-4" class=""><label id="label-4-4" for="cf4_field_4"><span>Email</span></label><input type="text" name="cf4_field_4" id="cf4_field_4" class="single fldemail fldrequired" value=""/><span class="emailreqtxt">(valid email required)</span></li>
			<li id="li-4-5" class=""><label id="label-4-5" for="cf4_field_5"><span>Phone Number</span></label><input type="text" name="cf4_field_5" id="cf4_field_5" class="single" value=""/></li>
		</ol>
		<fieldset class="cf_hidden">
			<legend>&nbsp;</legend>
			<input type="hidden" name="cf_working4" id="cf_working4" value="One%20moment%20please..."/>
			<input type="hidden" name="cf_failure4" id="cf_failure4" value="Please%20fill%20in%20all%20the%20required%20fields."/>
			<input type="hidden" name="cf_codeerr4" id="cf_codeerr4" value="Please%20double-check%20your%20verification%20code."/>
			<input type="hidden" name="cf_customerr4" id="cf_customerr4" value="yyy"/>
			<input type="hidden" name="cf_popup4" id="cf_popup4" value="nn"/>
		</fieldset>
		<p class="cf-sb"><input type="submit" name="sendbutton4" id="sendbutton4" class="sendbutton" value="Submit" onclick="return cforms_validate('4', false)"/></p></form><p class="linklove" id="ll4"><a href="http://www.deliciousdays.com/cforms-plugin"><em>cforms</em> contact form by delicious:days</a></p>
<p><strong><span style="font-size: medium;"><span style="font-family: arial,helvetica,sans-serif;"> </span></span></strong></p>
<p style="text-align: center;"><span style="font-size: medium;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.iprotech.com/offers/wp-content/uploads/2010/09/Channel_survey_bottomV1.jpg" rel="wp-prettyPhoto[g228]"><img class="aligncenter size-full wp-image-172" title="Channel_survey_bottomV1" src="http://www.iprotech.com/offers/wp-content/uploads/2010/09/Channel_survey_bottomV1.jpg" alt="" width="753" height="118" /></a><br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iprotech.com/offers/?feed=rss2&#038;p=228</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPRO White Paper Download- Leveraging Integrated Solutions to Help You Overcome Document Review Challenges</title>
		<link>http://www.iprotech.com/offers/?p=170</link>
		<comments>http://www.iprotech.com/offers/?p=170#comments</comments>
		<pubDate>Fri, 01 Oct 2010 16:51:37 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.iprotech.com/offers/?p=170</guid>
		<description><![CDATA[Leveraging Integrated Solutions To Help You Overcome Document Review Challenges Review is one of the most challenging aspects of the litigation process, and the multitude of technologies available to simplify this process sometimes seems to make it even more complicated. Download this IPRO White Paper to learn more about the challenges presented in a multiple [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.iprotech.com/offers/wp-content/uploads/2010/09/Whitepaper_download_top1.jpg" rel="wp-prettyPhoto[g170]"><img class="aligncenter size-full wp-image-171" title="Whitepaper_download_top" src="http://www.iprotech.com/offers/wp-content/uploads/2010/09/Whitepaper_download_top1.jpg" alt="" width="753" height="118" /></a></p>
<p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><strong>Leveraging Integrated Solutions To Help You Overcome Document Review Challenges</strong></span></span></p>
<p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;">Review    is one  of the most challenging aspects of the litigation process,  and   the  multitude of technologies available to simplify this process    sometimes  seems to make it even more complicated. Download this IPRO    White Paper  to learn more about the challenges presented in a  multiple   platform  environment and how an integrated solution can help  to   streamline your  litigation support operations and save you time,  money,   and frustration.</span></span></p>
<p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;">Please fill out the form below to access the download.</span></span></p>
<p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><br />
</span></span></p>

		<div id="usermessage3a" class="cf_info "></div>
		<form enctype="multipart/form-data" action="/offers/?feed=rss2#usermessage3a" method="post" class="cform" id="cforms3form">
		<ol class="cf-ol">
			<li id="li-3-1" class=""><label id="label-3-1" for="cf3_field_1"><span>Name</span></label><input type="text" name="cf3_field_1" id="cf3_field_1" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-3-2" class=""><label id="label-3-2" for="cf3_field_2"><span>Company</span></label><input type="text" name="cf3_field_2" id="cf3_field_2" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-3-3" class=""><label id="label-3-3" for="cf3_field_3"><span>Title</span></label><input type="text" name="cf3_field_3" id="cf3_field_3" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-3-4" class=""><label id="label-3-4" for="cf3_field_4"><span>Email</span></label><input type="text" name="cf3_field_4" id="cf3_field_4" class="single fldemail fldrequired" value=""/><span class="emailreqtxt">(valid email required)</span></li>
			<li id="li-3-5" class=""><label id="label-3-5" for="cf3_field_5"><span>Phone Number</span></label><input type="text" name="cf3_field_5" id="cf3_field_5" class="single" value=""/></li>
		</ol>
		<fieldset class="cf_hidden">
			<legend>&nbsp;</legend>
			<input type="hidden" name="cf_working3" id="cf_working3" value="One%20moment%20please..."/>
			<input type="hidden" name="cf_failure3" id="cf_failure3" value="Please%20fill%20in%20all%20the%20required%20fields."/>
			<input type="hidden" name="cf_codeerr3" id="cf_codeerr3" value="Please%20double-check%20your%20verification%20code."/>
			<input type="hidden" name="cf_customerr3" id="cf_customerr3" value="yyy"/>
			<input type="hidden" name="cf_popup3" id="cf_popup3" value="nn"/>
		</fieldset>
		<p class="cf-sb"><input type="submit" name="sendbutton3" id="sendbutton3" class="sendbutton" value="Submit" onclick="return cforms_validate('3', false)"/></p></form><p class="linklove" id="ll3"><a href="http://www.deliciousdays.com/cforms-plugin"><em>cforms</em> contact form by delicious:days</a></p>
<p><span style="font-family: arial,helvetica,sans-serif;"><span style="font-size: medium;"><br />
</span></span></p>
<p style="text-align: center;"><span style="font-size: medium;"><span style="font-family: arial,helvetica,sans-serif;"><a href="http://www.iprotech.com/offers/wp-content/uploads/2010/09/Channel_survey_bottomV1.jpg" rel="wp-prettyPhoto[g170]"><img class="aligncenter size-full wp-image-172" title="Channel_survey_bottomV1" src="http://www.iprotech.com/offers/wp-content/uploads/2010/09/Channel_survey_bottomV1.jpg" alt="" width="753" height="118" /></a><br />
</span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.iprotech.com/offers/?feed=rss2&#038;p=170</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>IPRO Customer Satisfaction Survey</title>
		<link>http://www.iprotech.com/offers/?p=4</link>
		<comments>http://www.iprotech.com/offers/?p=4#comments</comments>
		<pubDate>Wed, 02 Jun 2010 23:50:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">http://www.iprotech.com/offers/?p=4</guid>
		<description><![CDATA[Thank you for taking the time to fill out our brief Customer Feedback Survey.  Your responses will help us determine how to best serve your needs in the future. Company Name(required) Contact Name Is your organization a law firm, service bureau, corporation, or government agency? Law Firm Service Bureau Corporation Government Agency Are you currently [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: center;"><a href="http://www.iprotech.com/offers/wp-content/uploads/2010/05/Channel_survey_top.jpg" rel="wp-prettyPhoto[g4]"><img class="size-full wp-image-5 aligncenter" title="Channel_survey_top" src="http://www.iprotech.com/offers/wp-content/uploads/2010/05/Channel_survey_top.jpg" alt="IPRO Customer Feedback" width="762" height="119" /></a></p>
<p>Thank you for taking the time to fill out our brief  Customer Feedback Survey.  Your responses will help us determine how to  best serve your needs in the future.</p>

		<div id="usermessage2a" class="cf_info "></div>
		<form enctype="multipart/form-data" action="/offers/?feed=rss2#usermessage2a" method="post" class="cform" id="cforms2form">
		<ol class="cf-ol">
			<li id="li-2-1" class=""><label id="label-2-1" for="cf2_field_1"><span>Company Name</span></label><input type="text" name="cf2_field_1" id="cf2_field_1" class="single fldrequired" value=""/><span class="reqtxt">(required)</span></li>
			<li id="li-2-2" class=""><label id="label-2-2" for="cf2_field_2"><span>Contact Name</span></label><input type="text" name="cf2_field_2" id="cf2_field_2" class="single" value=""/></li>
			<li id="li-2-3" class=" cf-box-title">Is your organization a law firm, service bureau, corporation, or government agency?</li>
			<li id="li-2-3items" class="cf-box-group">
				<input type="radio" id="cf2_field_3-1" name="cf2_field_3" value="Law Firm" class="cf-box-b fldrequired"/><label id="label-2-31" for="cf2_field_3-1" class="cf-after"><span>Law Firm</span></label>
				<input type="radio" id="cf2_field_3-2" name="cf2_field_3" value="Service Bureau" class="cf-box-b fldrequired"/><label id="label-2-32" for="cf2_field_3-2" class="cf-after"><span>Service Bureau</span></label>
				<input type="radio" id="cf2_field_3-3" name="cf2_field_3" value="Corporation" class="cf-box-b fldrequired"/><label id="label-2-33" for="cf2_field_3-3" class="cf-after"><span>Corporation</span></label>
				<input type="radio" id="cf2_field_3-4" name="cf2_field_3" value="Government Agency" class="cf-box-b fldrequired"/><label id="label-2-34" for="cf2_field_3-4" class="cf-after"><span>Government Agency</span></label>
			</li>
			<li id="li-2-4" class=" cf-box-title">Are you currently using a litigation support software package?</li>
			<li id="li-2-4items" class="cf-box-group">
				<input type="radio" id="cf2_field_4-1" name="cf2_field_4" value="Yes" class="cf-box-b fldrequired"/><label id="label-2-41" for="cf2_field_4-1" class="cf-after"><span>Yes</span></label>
				<input type="radio" id="cf2_field_4-2" name="cf2_field_4" value="No" class="cf-box-b fldrequired"/><label id="label-2-42" for="cf2_field_4-2" class="cf-after"><span>No</span></label>
			</li>
			<li id="li-2-5" class="cf-box-title">What are the biggest challenges your organization faces regarding litigation support technology?</li>
			<li id="li-2-5items" class="cf-box-group">
				<input type="checkbox" id="cf2_field_5-1" name="cf2_field_5[]" value="eDiscovery"  class="cf-box-b"/><label id="label-2-51" for="cf2_field_5-1" class="cf-group-after"><span>eDiscovery</span></label>
				<br />
				<input type="checkbox" id="cf2_field_5-2" name="cf2_field_5[]" value="Document Management"  class="cf-box-b"/><label id="label-2-52" for="cf2_field_5-2" class="cf-group-after"><span>Document Management</span></label>
				<br />
				<input type="checkbox" id="cf2_field_5-3" name="cf2_field_5[]" value="Early Case Assessment"  class="cf-box-b"/><label id="label-2-53" for="cf2_field_5-3" class="cf-group-after"><span>Early Case Assessment</span></label>
				<br />
				<input type="checkbox" id="cf2_field_5-4" name="cf2_field_5[]" value="Case Management"  class="cf-box-b"/><label id="label-2-54" for="cf2_field_5-4" class="cf-group-after"><span>Case Management</span></label>
				<br />
				<input type="checkbox" id="cf2_field_5-5" name="cf2_field_5[]" value="Imaging"  class="cf-box-b"/><label id="label-2-55" for="cf2_field_5-5" class="cf-group-after"><span>Imaging</span></label>
				<br />
				<input type="checkbox" id="cf2_field_5-6" name="cf2_field_5[]" value="Production"  class="cf-box-b"/><label id="label-2-56" for="cf2_field_5-6" class="cf-group-after"><span>Production</span></label>
				<br />
				<input type="checkbox" id="cf2_field_5-7" name="cf2_field_5[]" value="Other"  class="cf-box-b"/><label id="label-2-57" for="cf2_field_5-7" class="cf-group-after"><span>Other</span></label>
				<br />
			</li>
			<li id="li-2-6" class=""><label id="label-2-6" for="cf2_field_6"><span>If "Other", please provide more detail:</span></label><input type="text" name="cf2_field_6" id="cf2_field_6" class="single" value=""/></li>
		</ol>
		<fieldset class="cf_hidden">
			<legend>&nbsp;</legend>
			<input type="hidden" name="cf_working2" id="cf_working2" value="One%20moment%20please..."/>
			<input type="hidden" name="cf_failure2" id="cf_failure2" value="Please%20fill%20in%20all%20the%20required%20fields."/>
			<input type="hidden" name="cf_codeerr2" id="cf_codeerr2" value="Please%20double-check%20your%20verification%20code."/>
			<input type="hidden" name="cf_customerr2" id="cf_customerr2" value="yyy"/>
			<input type="hidden" name="cf_popup2" id="cf_popup2" value="nn"/>
		</fieldset>
		<p class="cf-sb"><input type="submit" name="sendbutton2" id="sendbutton2" class="sendbutton" value="Submit" onclick="return cforms_validate('2', false)"/></p></form><p class="linklove" id="ll2"><a href="http://www.deliciousdays.com/cforms-plugin"><em>cforms</em> contact form by delicious:days</a></p>
<p style="text-align: center;"><a href="http://www.iprotech.com/offers/wp-content/uploads/2010/05/Channel_survey_bottomV2.jpg" rel="wp-prettyPhoto[g4]"><img class="aligncenter size-full wp-image-9" title="Channel_survey_bottomV2" src="http://www.iprotech.com/offers/wp-content/uploads/2010/05/Channel_survey_bottomV2.jpg" alt="" width="762" height="383" /></a></p>
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
<p style="text-align: center;">
]]></content:encoded>
			<wfw:commentRss>http://www.iprotech.com/offers/?feed=rss2&#038;p=4</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

