zohoho 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,3 @@
1
+ require "autotest/growl"
2
+ require "autotest/fsevent"
3
+
@@ -0,0 +1,5 @@
1
+ lib/**/*.rb
2
+ bin/*
3
+ -
4
+ features/**/*.feature
5
+ LICENSE.txt
data/Gemfile ADDED
@@ -0,0 +1,16 @@
1
+ source "http://rubygems.org"
2
+ # Add dependencies required to use your gem here.
3
+ # Example:
4
+ # gem "activesupport", ">= 2.3.5"
5
+ gem 'httparty'
6
+ gem 'json'
7
+ gem 'xml-simple'
8
+
9
+ # Add dependencies to develop your gem here.
10
+ # Include everything needed to run rake, tests, features, etc.
11
+ group :development do
12
+ gem "rspec", ">= 0"
13
+ gem "bundler", "~> 1.0.0"
14
+ gem "jeweler", "~> 1.6.0"
15
+ gem "rcov", ">= 0"
16
+ end
@@ -0,0 +1,36 @@
1
+ GEM
2
+ remote: http://rubygems.org/
3
+ specs:
4
+ crack (0.1.8)
5
+ diff-lcs (1.1.2)
6
+ git (1.2.5)
7
+ httparty (0.7.7)
8
+ crack (= 0.1.8)
9
+ jeweler (1.6.0)
10
+ bundler (~> 1.0.0)
11
+ git (>= 1.2.5)
12
+ rake
13
+ json (1.5.1)
14
+ rake (0.8.7)
15
+ rcov (0.9.9)
16
+ rspec (2.6.0)
17
+ rspec-core (~> 2.6.0)
18
+ rspec-expectations (~> 2.6.0)
19
+ rspec-mocks (~> 2.6.0)
20
+ rspec-core (2.6.0)
21
+ rspec-expectations (2.6.0)
22
+ diff-lcs (~> 1.1.2)
23
+ rspec-mocks (2.6.0)
24
+ xml-simple (1.0.15)
25
+
26
+ PLATFORMS
27
+ ruby
28
+
29
+ DEPENDENCIES
30
+ bundler (~> 1.0.0)
31
+ httparty
32
+ jeweler (~> 1.6.0)
33
+ json
34
+ rcov
35
+ rspec
36
+ xml-simple
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2011 KentonWhite
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining
4
+ a copy of this software and associated documentation files (the
5
+ "Software"), to deal in the Software without restriction, including
6
+ without limitation the rights to use, copy, modify, merge, publish,
7
+ distribute, sublicense, and/or sell copies of the Software, and to
8
+ permit persons to whom the Software is furnished to do so, subject to
9
+ the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be
12
+ included in all copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15
+ EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17
+ NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18
+ LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19
+ OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20
+ WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -0,0 +1,19 @@
1
+ = zohoho
2
+
3
+ Description goes here.
4
+
5
+ == Contributing to zohoho
6
+
7
+ * Check out the latest master to make sure the feature hasn't been implemented or the bug hasn't been fixed yet
8
+ * Check out the issue tracker to make sure someone already hasn't requested it and/or contributed it
9
+ * Fork the project
10
+ * Start a feature/bugfix branch
11
+ * Commit and push until you are happy with your contribution
12
+ * Make sure to add tests for it. This is important so I don't break it in a future version unintentionally.
13
+ * Please try not to mess with the Rakefile, version, or history. If you want to have your own version, or is otherwise necessary, that is fine, but please isolate to its own commit so I can cherry-pick around it.
14
+
15
+ == Copyright
16
+
17
+ Copyright (c) 2011 KentonWhite. See LICENSE.txt for
18
+ further details.
19
+
@@ -0,0 +1,53 @@
1
+ # encoding: utf-8
2
+
3
+ require 'rubygems'
4
+ require 'bundler'
5
+ begin
6
+ Bundler.setup(:default, :development)
7
+ rescue Bundler::BundlerError => e
8
+ $stderr.puts e.message
9
+ $stderr.puts "Run `bundle install` to install missing gems"
10
+ exit e.status_code
11
+ end
12
+ require 'rake'
13
+
14
+ require 'jeweler'
15
+ Jeweler::Tasks.new do |gem|
16
+ # gem is a Gem::Specification... see http://docs.rubygems.org/read/chapter/20 for more options
17
+ gem.name = "zohoho"
18
+ gem.homepage = "http://github.com/kwhite/zohoho"
19
+ gem.license = "MIT"
20
+ gem.summary = %Q{Simple interface to zoho api}
21
+ gem.description = %Q{Simple interface to zoho api}
22
+ gem.email = "jkentonwhite@gmail.com"
23
+ gem.authors = ["KentonWhite"]
24
+ # dependencies defined in Gemfile
25
+ end
26
+ Jeweler::RubygemsDotOrgTasks.new
27
+
28
+ require 'rake/testtask'
29
+ Rake::TestTask.new(:test) do |test|
30
+ test.libs << 'lib' << 'test'
31
+ test.pattern = 'test/**/*_test.rb'
32
+ test.verbose = true
33
+ end
34
+
35
+ require 'rcov/rcovtask'
36
+ Rcov::RcovTask.new do |test|
37
+ test.libs << 'test'
38
+ test.pattern = 'test/**/*_test.rb'
39
+ test.verbose = true
40
+ test.rcov_opts << '--exclude "gems/*"'
41
+ end
42
+
43
+ task :default => :test
44
+
45
+ require 'rake/rdoctask'
46
+ Rake::RDocTask.new do |rdoc|
47
+ version = File.exist?('VERSION') ? File.read('VERSION') : ""
48
+
49
+ rdoc.rdoc_dir = 'rdoc'
50
+ rdoc.title = "zohoho #{version}"
51
+ rdoc.rdoc_files.include('README*')
52
+ rdoc.rdoc_files.include('lib/**/*.rb')
53
+ end
data/VERSION ADDED
@@ -0,0 +1 @@
1
+ 0.1.2
@@ -0,0 +1,4 @@
1
+ #./autotest/discover.rb
2
+
3
+ Autotest.add_discovery { "rspec2" }
4
+
@@ -0,0 +1,2 @@
1
+ require 'zohoho/connection'
2
+ require 'zohoho/crm'
@@ -0,0 +1,74 @@
1
+ module Zohoho
2
+ require 'httparty'
3
+ require 'json'
4
+
5
+ class Connection
6
+ include HTTParty
7
+
8
+ def initialize(service_name, username, password, apikey)
9
+ @service_name, @username, @password, @api_key = service_name, username, password, apikey
10
+ end
11
+
12
+ def ticket_url
13
+ "https://accounts.zoho.com/login?servicename=Zoho#{@service_name}&FROM_AGENT=true&LOGIN_ID=#{@username}&PASSWORD=#{@password}"
14
+ end
15
+
16
+ def api_key
17
+ @api_key
18
+ end
19
+
20
+ def zoho_uri
21
+ zoho_uri = "https://#{@service_name.downcase}.zoho.com/#{@service_name.downcase}/private/json"
22
+ end
23
+
24
+ def ticket
25
+ return @ticket if @ticket
26
+ url = ticket_url
27
+ ticket_info = self.class.post(url).parsed_response
28
+ ticket_info.match(/\sTICKET=(.*)\s/)[1]
29
+ end
30
+
31
+ def call(entry, api_method, query = {}, http_method = :get)
32
+ login = {
33
+ :apikey => api_key,
34
+ :ticket => ticket
35
+ }
36
+ query.merge!(login)
37
+ url = [zoho_uri, entry, api_method].join('/')
38
+ case http_method
39
+ when :get
40
+ raw = JSON.parse(self.class.get(url, :query => query).parsed_response)
41
+ parse_raw_get(raw, entry)
42
+ when :post
43
+ raw = JSON.parse(self.class.post(url, :body => query).parsed_response)
44
+ parse_raw_post(raw)
45
+ else
46
+ raise "#{http_method} is not a recognized http method"
47
+ end
48
+ end
49
+
50
+ private
51
+
52
+ def parse_raw_get(raw, entry)
53
+ return [] if raw['response']['result'].nil?
54
+ rows = raw['response']['result'][entry]['row']
55
+ rows = [rows] unless rows.class == Array
56
+ rows.map {|i|
57
+ raw_to_hash i['FL']
58
+ }
59
+ end
60
+
61
+ def parse_raw_post(raw)
62
+ return [] if raw['response']['result'].nil?
63
+ record = raw['response']['result']['recorddetail']
64
+ raw_to_hash record['FL']
65
+ end
66
+
67
+
68
+ def raw_to_hash(raw)
69
+ raw.map! {|r| [r['val'], r['content']]}
70
+ Hash[raw]
71
+ end
72
+
73
+ end
74
+ end
@@ -0,0 +1,65 @@
1
+ module Zohoho
2
+ require 'httparty'
3
+ require 'json'
4
+ require 'xmlsimple'
5
+
6
+ class Crm
7
+ include HTTParty
8
+
9
+ def initialize(username, password, apikey)
10
+ @conn = Zohoho::Connection.new 'CRM', username, password, apikey
11
+ end
12
+
13
+ def auth_url
14
+ @conn.ticket_url
15
+ end
16
+
17
+ def contact(name)
18
+ first_name, last_name = parse_name(name)
19
+ contacts = find_contacts_by_last_name(last_name)
20
+ contacts.select! {|c|
21
+ if c['First Name'].nil? then c['First Name'] = '' end
22
+ first_name.match(c['First Name'])
23
+ }
24
+ contacts.first
25
+ end
26
+
27
+ def add_contact(name)
28
+ first_name, last_name = parse_name(name)
29
+ xmlData = parse_data({'First Name' => first_name, 'Last Name' => last_name}, 'Contacts')
30
+ record = @conn.call('Contacts', 'insertRecords', {:xmlData => xmlData, :newFormat => 1}, :post)
31
+ record['Id']
32
+ end
33
+
34
+ def post_note(entity_id, note_title, note_content)
35
+ xmlData = parse_data({'entityId' => entity_id, 'Note Title' => note_title, 'Note Content' => note_content}, 'Notes')
36
+ record = @conn.call('Notes', 'insertRecords', {:xmlData => xmlData, :newFormat => 1}, :post)
37
+ record['Id']
38
+ end
39
+
40
+ private
41
+
42
+ def parse_name(name)
43
+ match_data = name.match(/\s(\S*)$/)
44
+ match_data.nil? ? last_name = name : last_name = match_data[1]
45
+
46
+ match_data = name.match(/^(.*)\s/)
47
+ match_data.nil? ? first_name = '' : first_name = match_data[1]
48
+
49
+ return first_name, last_name
50
+ end
51
+
52
+ def parse_data(data, entry)
53
+ fl = data.map {|e| Hash['val', e[0], 'content', e[1]]}
54
+ row = Hash['no', '1', 'FL', fl]
55
+ data = Hash['row', row]
56
+ XmlSimple.xml_out(data, :RootName => entry)
57
+ end
58
+
59
+ def find_contacts_by_last_name(last_name)
60
+ search_condition = "(Contact Name|ends with|#{last_name})"
61
+ @conn.call('Contacts', 'getSearchRecords', :searchCondition => search_condition, :selectColumns => 'All')
62
+ end
63
+
64
+ end
65
+ end
@@ -0,0 +1,30 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe "Zohoho::Connection" do
4
+
5
+ before :each do
6
+ @username = 'kentonwhite'
7
+ @password = 'mopa3lwb'
8
+ @apikey = 'L-PvsrDNn9EIW2phA3vzp9YuL5REECogkQaMGWeIdlI$'
9
+ @conn = Zohoho::Connection.new('CRM', @username, @password, @apikey)
10
+ vcr_config 'connection'
11
+ end
12
+ it "should create the proper ticket url" do
13
+ ticket_url = "https://accounts.zoho.com/login?servicename=ZohoCRM&FROM_AGENT=true&LOGIN_ID=#{@username}&PASSWORD=#{@password}"
14
+ @conn.ticket_url.should == ticket_url
15
+ end
16
+
17
+ it "should get a new ticket" do
18
+ VCR.use_cassette('ticket', :record => :new_episodes) do
19
+ @ticket = @conn.ticket
20
+ end
21
+ @ticket.should == 'c1eea66055af5d42b8b1ab0d1171c9c4'
22
+ end
23
+
24
+ it "should make a simple call" do
25
+ VCR.use_cassette('call', :record => :new_episodes) do
26
+ @result = @conn.call('Contacts', 'getRecords')
27
+ end
28
+ @result.size.should == 5
29
+ end
30
+ end
@@ -0,0 +1,47 @@
1
+ require File.expand_path(File.dirname(__FILE__) + '/spec_helper')
2
+
3
+ describe "Zohoho::CRM" do
4
+
5
+ before :each do
6
+ @username = 'kentonwhite'
7
+ @password = 'mopa3lwb'
8
+ @apikey = 'L-PvsrDNn9EIW2phA3vzp9YuL5REECogkQaMGWeIdlI$'
9
+ @crm = Zohoho::Crm.new(@username, @password, @apikey)
10
+ vcr_config 'crm'
11
+ end
12
+
13
+ it 'should get contact Kenton White' do
14
+ VCR.use_cassette('contact', :record => :new_episodes) do
15
+ @contact = @crm.contact "Kenton White"
16
+ end
17
+ @contact["CONTACTID"].should == "384023000000045001"
18
+ end
19
+
20
+ it 'should get single name contact Girih' do
21
+ VCR.use_cassette('contact_single', :record => :new_episodes) do
22
+ @contact = @crm.contact "Girih"
23
+ end
24
+ @contact["CONTACTID"].should == "384023000000051007"
25
+ end
26
+
27
+ it 'should return nil for Johnny Depp' do
28
+ VCR.use_cassette('contact', :record => :new_episodes) do
29
+ @contact = @crm.contact "Johnny Depp"
30
+ end
31
+ @contact.should == nil
32
+ end
33
+
34
+ it 'should add Johnny Depp as a new contact' do
35
+ VCR.use_cassette('add_contact', :record => :new_episodes) do
36
+ @contact = @crm.add_contact "Johnny Depp"
37
+ end
38
+ @contact.should == "384023000000055001"
39
+ end
40
+
41
+ it 'should add a note to Johnny Depp' do
42
+ VCR.use_cassette('note', :record => :new_episodes) do
43
+ @note = @crm.post_note "384023000000055001", "Note to self", "Don't do that again"
44
+ end
45
+ @note.should == "384023000000056001"
46
+ end
47
+ end
@@ -0,0 +1,1329 @@
1
+ ---
2
+ - !ruby/struct:VCR::HTTPInteraction
3
+ request: !ruby/struct:VCR::Request
4
+ method: :post
5
+ uri: https://accounts.zoho.com:443/login?servicename=ZohoCRM&FROM_AGENT=true&LOGIN_ID=kentonwhite&PASSWORD=mopa3lwb
6
+ body:
7
+ headers:
8
+ response: !ruby/struct:VCR::Response
9
+ status: !ruby/struct:VCR::ResponseStatus
10
+ code: 200
11
+ message: OK
12
+ headers:
13
+ set-cookie:
14
+ - iamcsr=d6a9b521-243e-44c7-a074-ce8a70318c73; Path=/
15
+ - JSESSIONID=9318133BF702B481FE84388BA6E4AA66; Path=/; Secure
16
+ content-type:
17
+ - text/html;charset=UTF-8
18
+ date:
19
+ - Fri, 20 May 2011 15:40:52 GMT
20
+ server:
21
+ - ZWS
22
+ body: |
23
+ #
24
+ #Fri May 20 08:40:53 PDT 2011
25
+ GETUSERNAME=null
26
+ WARNING=null
27
+ PASS_EXPIRY=-1
28
+ TICKET=89433f747b864d4013ee6ba6cc9eda79
29
+ RESULT=TRUE
30
+
31
+ http_version: "1.1"
32
+ - !ruby/struct:VCR::HTTPInteraction
33
+ request: !ruby/struct:VCR::Request
34
+ method: :get
35
+ uri: https://crm.zoho.com:443/crm/private/json/Contacts/getRecords?apikey=&ticket=89433f747b864d4013ee6ba6cc9eda79
36
+ body:
37
+ headers:
38
+ response: !ruby/struct:VCR::Response
39
+ status: !ruby/struct:VCR::ResponseStatus
40
+ code: 200
41
+ message: OK
42
+ headers:
43
+ set-cookie:
44
+ - crmcsr=52a18e42-2fbf-40e6-80d8-cc2ea85d60d7; Path=/
45
+ pragma:
46
+ - no-cache
47
+ cache-control:
48
+ - no-cache
49
+ expires:
50
+ - Thu, 01 Jan 1970 00:00:00 GMT
51
+ content-type:
52
+ - text/plain;charset=utf-8
53
+ content-length:
54
+ - "3295"
55
+ date:
56
+ - Fri, 20 May 2011 15:44:55 GMT
57
+ server:
58
+ - "-"
59
+ body: |
60
+ {"response":{"result":{"Contacts":{"row":[{"no":"1","FL":[{"content":"384023000000051007","val":"CONTACTID"},{"content":"384023000000042003","val":"SMOWNERID"},{"content":"kentonwhite","val":"Contact Owner"},{"content":"Girih","val":"Last Name"},{"content":"384023000000042003","val":"SMCREATORID"},{"content":"kentonwhite","val":"Created By"},{"content":"384023000000042003","val":"MODIFIEDBY"},{"content":"kentonwhite","val":"Modified By"},{"content":"2011-05-12 14:25:21","val":"Created Time"},{"content":"2011-05-12 14:25:21","val":"Modified Time"},{"content":"false","val":"Email Opt Out"},{"content":"false","val":"Add to QuickBooks"}]},{"no":"2","FL":[{"content":"384023000000051005","val":"CONTACTID"},{"content":"384023000000042003","val":"SMOWNERID"},{"content":"kentonwhite","val":"Contact Owner"},{"content":"George","val":"First Name"},{"content":"Clooney","val":"Last Name"},{"content":"384023000000042003","val":"SMCREATORID"},{"content":"kentonwhite","val":"Created By"},{"content":"384023000000042003","val":"MODIFIEDBY"},{"content":"kentonwhite","val":"Modified By"},{"content":"2011-05-12 14:03:44","val":"Created Time"},{"content":"2011-05-12 14:03:44","val":"Modified Time"},{"content":"false","val":"Email Opt Out"},{"content":"false","val":"Add to QuickBooks"}]},{"no":"3","FL":[{"content":"384023000000048001","val":"CONTACTID"},{"content":"384023000000042003","val":"SMOWNERID"},{"content":"kentonwhite","val":"Contact Owner"},{"content":"Vivek","val":"First Name"},{"content":"Sarin","val":"Last Name"},{"content":"384023000000042003","val":"SMCREATORID"},{"content":"kentonwhite","val":"Created By"},{"content":"384023000000042003","val":"MODIFIEDBY"},{"content":"kentonwhite","val":"Modified By"},{"content":"2011-05-11 20:53:07","val":"Created Time"},{"content":"2011-05-11 20:53:07","val":"Modified Time"},{"content":"false","val":"Email Opt Out"},{"content":"false","val":"Add to QuickBooks"}]},{"no":"4","FL":[{"content":"384023000000047003","val":"CONTACTID"},{"content":"384023000000042003","val":"SMOWNERID"},{"content":"kentonwhite","val":"Contact Owner"},{"content":"John","val":"First Name"},{"content":"White","val":"Last Name"},{"content":"384023000000042003","val":"SMCREATORID"},{"content":"kentonwhite","val":"Created By"},{"content":"384023000000042003","val":"MODIFIEDBY"},{"content":"kentonwhite","val":"Modified By"},{"content":"2011-05-11 13:48:39","val":"Created Time"},{"content":"2011-05-11 13:48:39","val":"Modified Time"},{"content":"false","val":"Email Opt Out"},{"content":"false","val":"Add to QuickBooks"}]},{"no":"5","FL":[{"content":"384023000000045001","val":"CONTACTID"},{"content":"384023000000042003","val":"SMOWNERID"},{"content":"kentonwhite","val":"Contact Owner"},{"content":"Kenton","val":"First Name"},{"content":"White","val":"Last Name"},{"content":"384023000000042003","val":"SMCREATORID"},{"content":"kentonwhite","val":"Created By"},{"content":"384023000000042003","val":"MODIFIEDBY"},{"content":"kentonwhite","val":"Modified By"},{"content":"2011-05-10 20:22:25","val":"Created Time"},{"content":"2011-05-10 20:22:25","val":"Modified Time"},{"content":"false","val":"Email Opt Out"},{"content":"Dr.","val":"Salutation"},{"content":"false","val":"Add to QuickBooks"}]}]}},"uri":"/crm/private/json/Contacts/getRecords"}}
61
+
62
+ http_version: "1.1"
63
+ - !ruby/struct:VCR::HTTPInteraction
64
+ request: !ruby/struct:VCR::Request
65
+ method: :get
66
+ uri: https://CRM.zoho.com:443/CRM/private/json/Contacts/getRecords?apikey=&ticket=89433f747b864d4013ee6ba6cc9eda79
67
+ body:
68
+ headers:
69
+ response: !ruby/struct:VCR::Response
70
+ status: !ruby/struct:VCR::ResponseStatus
71
+ code: 302
72
+ message: Found
73
+ headers:
74
+ set-cookie:
75
+ - JSESSIONID=0BEF22A4AEE35416C4922DA5068EBC11; Path=/
76
+ - crmze=0; Path=/
77
+ location:
78
+ - https://CRM.zoho.com/crm/IAMSecurityError.do?isload=true
79
+ content-type:
80
+ - text/html;charset=UTF-8
81
+ date:
82
+ - Fri, 20 May 2011 15:53:44 GMT
83
+ server:
84
+ - "-"
85
+ p3p:
86
+ - CP="CAO PSA OUR"
87
+ transfer-encoding:
88
+ - chunked
89
+ body:
90
+ http_version: "1.1"
91
+ - !ruby/struct:VCR::HTTPInteraction
92
+ request: !ruby/struct:VCR::Request
93
+ method: :get
94
+ uri: https://CRM.zoho.com:443/crm/IAMSecurityError.do?isload=true
95
+ body:
96
+ headers:
97
+ cookie:
98
+ - JSESSIONID=0BEF22A4AEE35416C4922DA5068EBC11; Path=/
99
+ response: !ruby/struct:VCR::Response
100
+ status: !ruby/struct:VCR::ResponseStatus
101
+ code: 302
102
+ message: Found
103
+ headers:
104
+ set-cookie:
105
+ - crmcsr=56c20bfe-6385-465a-9a74-9af48dc77c1d; Path=/
106
+ - crmze=0; Path=/
107
+ pragma:
108
+ - no-cache
109
+ cache-control:
110
+ - no-cache
111
+ expires:
112
+ - Thu, 01 Jan 1970 00:00:00 GMT
113
+ location:
114
+ - https://CRM.zoho.com/crm/login.sas?serviceurl=%2Fcrm%2FIAMSecurityError.do%3Fisload%3Dtrue
115
+ content-length:
116
+ - "0"
117
+ date:
118
+ - Fri, 20 May 2011 15:53:45 GMT
119
+ server:
120
+ - "-"
121
+ p3p:
122
+ - CP="CAO PSA OUR"
123
+ body:
124
+ http_version: "1.1"
125
+ - !ruby/struct:VCR::HTTPInteraction
126
+ request: !ruby/struct:VCR::Request
127
+ method: :get
128
+ uri: https://CRM.zoho.com:443/crm/login.sas?serviceurl=%2Fcrm%2FIAMSecurityError.do%3Fisload%3Dtrue
129
+ body:
130
+ headers:
131
+ cookie:
132
+ - JSESSIONID=0BEF22A4AEE35416C4922DA5068EBC11; Path=/; crmcsr=56c20bfe-6385-465a-9a74-9af48dc77c1d
133
+ response: !ruby/struct:VCR::Response
134
+ status: !ruby/struct:VCR::ResponseStatus
135
+ code: 301
136
+ message: Moved Permanently
137
+ headers:
138
+ set-cookie:
139
+ - JSESSIONID=7A6BA37ED8E1DA29B78E16FD31592DAC; Path=/crm
140
+ - crmze=1; Path=/
141
+ location:
142
+ - https://www.zoho.com/crm/index.html
143
+ content-type:
144
+ - text/html;charset=UTF-8
145
+ date:
146
+ - Fri, 20 May 2011 15:53:45 GMT
147
+ server:
148
+ - "-"
149
+ p3p:
150
+ - CP="CAO PSA OUR"
151
+ transfer-encoding:
152
+ - chunked
153
+ body: "\n\n\n\n\n\
154
+ <!doctype html><html><head><title>On-Demand CRM Software-as-a-Service(SaaS),Free CRM,Customer Relationship Management - Zoho CRM</title><meta http-equiv=\"Content-type\" content=\"text/html;charset=UTF-8\" /><meta name=\"keywords\" content=\"CRM,On-Demand CRM Software-as-a-Service(SaaS),Free CRM,Web-based CRM,Hosted CRM,Customer Relationship Management,CRM API,Sales force automation,Sales Tracking Software,Email Marketing,CRM Plug-in for Microsoft Office,CRM Plug-in for Microsoft Outlook\" /><meta name=\"description\" content=\"On-demand CRM (Customer Relationship Management) services for managing organization-wide sales, marketing, customer support, and orders.\" /><meta name=\"verify-v1\" content=\"mOR4CRGAgTyZTYxaOWwZYvIBJdfnbAtIWy47rz7wzYs=\" ><meta name=\"google-site-verification\" content=\"XzzFQdjeXm1I1dfFTFHVoWA8ZZagAL0nalo2NjuNlMA\" /><link rel=\"SHORTCUT ICON\" href=\"/crm/images/favicon.ico\" /><style type=\"text/css\">body, td, div, li, p, h2, h3, h4{font-family:Arial, Helvetica, sans-serif; margin:0px; padding:0px; font-size:12px;}.tlink{ padding:0px 10px; font-size:13px; color:#ffffff; text-decoration:none;}.tollfree{ font-size:17px; font-weight:bold; color:#f7f7f7; padding:0px 0px 0px 10px;}\n\
155
+ h1{width:948px;margin:0px auto; font-family:Arial,Helvetica,sans-serif; font-size:26px; padding:18px 0px; text-align:center;}.contentdiv{ width:950px; margin:0px auto;}.zohoCRM,.new,.sales,.inventory,.reports,.security,.outlook,.lCurve,.rCurve,.outlookDiv,.D1,.api,.custom,.botsignup,.bene1,.rlink li,.email{background:transparent url(https://img.zohostatic.com/crm/v333/zohoCRM-login.gif) no-repeat scroll;}.btntd{ text-align:center; padding-top:130px;}#fo2, h1, h2, h3, h4, h5{margin:0px auto;}a{color:#0042BC; text-decoration:none}a:hover{ text-decoration:underline;}.f12, .gt, h5{font-size:12px;}#fo2, .f11, #Uf span{font-size:11px;}.gt{color:#6e6e6e;}#fo2{width:950px; line-height:31px; text-align:center;}h2,h2 a{ color:#0042BC;} h3 a, h4 a, h5{color: #0042bc;font-weight: bold;}h2{font-size:13px;}h3{font-size:18px;}.flt,.w40,.h35,.D1,.uED{ float:left;}.w40{width:40px; height:29px;}.h35{width:40px; height:35px;}.c1{line-height:1px; clear:both;}.sales{background-position:-7px -160px;}.email{background-position:-8px -96px;}.inventory {background-position:-7px -206px;}.reports{background-position:-7px -309px;}.security{background-position:-7px -356px;}.outlook{background-position:-7px -405px;}.conDiv{float:left; width:259px;}.conOutDl{float:left; width:300px; height:80px;}.conOutDr{ float:right; width:300px; height:80px;}#nfL{width:950px; height:190px; border-bottom:6px solid #f6f6f6; border-top:6px solid #f3f3f3; margin:0px auto;}#nfL .nfLD{ width:233px;float:left;height:130px; border-right:1px solid #ededed;}#nfL ul{padding-left:25px; list-style:none; line-height:16px; margin:0px;}a.fl{ color:#0042BC; font-size:11px;}a.fl:hover{ text-decoration:underline;}.api{background-position:-6px -462px;}.custom{background-position:-7px -521px;}.rightbluelink{ color:#0042bd; font-size:13px; line-height:24px;}.loginbox{ border:1px solid #efefef; background-color:#fff; height:255px; width:267px;}.rlink{ margin:0px; padding:0px;}.rlink li{ list-style:none;background-position:-360px -173px; padding-left:20px;}.crmawards,.loginlivedemo,.loginothers,.allvideo,.allawards{background:transparent url(https://img.zohostatic.com/crm/v333/login-testimonial.png) no-repeat;}.crmawards{ background-position:-641px -4px; width:290px; height:175px; margin:0px auto;cursor:pointer;}h3{ margin:0px;}.featurediv,.benefitdiv,.linkdiv{ margin-top:5px; float:left; width:300px;}.featurebtn{ width:259px; background-color:#f7f7f7; height:41px; padding-left:40px; margin:0px auto; text-align:left; font-size:18px; font-weight:bold; color:#666; line-height:41px; margin-bottom:15px;}.bene1{width:31px; height:31px; background-position:-100px -160px; text-align:center; font-size:18px; color:#fff; line-height:31px; font-weight:bold;}.loginlivedemo{background-position:-6px -3px; height:90px;text-align:center;}.loginothers{ background-position:-323px -2px; height:196px;}.allvideo{width:290px; height:237px; background-position:-6px -103px; margin-top:0px;}.allawards{background-position:0px -390px; width:935px; height:102px; margin:0px auto;cursor:pointer;}.emailnote{ margin-bottom:0px;}.emailnote li{ list-style:disc; padding-bottom:7px; text-align:left;}.pb22{padding-bottom:29px;}.mainmenu{ width:948px; margin:0px auto; height:23px; padding-top:5px; background-color:#6687a6; color:#ccc;}.signupbtn {background-color:#dd6729;color:#fff;font: normal 26px Arial, Helvetica, sans-serif;padding:12px 25px;cursor:pointer;margin:0px 0px 0px 30px;float:left; -moz-box-shadow:0px 0px 10px rgba(0,0,0,0.3);border:2px solid #fff;-webkit-box-shadow:0px 0px 10px rgba(0,0,0,0.3);-moz-border-radius: 5px;-webkit-border-radius: 5px;}</style>\n\
156
+ </head>\n\n\n\
157
+ <body>\n\
158
+ <div style=\"background-color:#4a5c80; border-bottom:1px solid #8090b1;\">\n\
159
+ <table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" width=\"948\">\n\
160
+ \t<tr>\n \t<td width=\"190\" align=\"center\" valign=\"top\"><br><a href=\"https://crm.zoho.com\"><img src=\"/crm/images/zohocrm.png\" width=\"179\" height=\"37\" alt=\"zohoCRM logo\" border=\"0\"></a></td>\n <td align=\"right\" class=\"tollfree\" height=\"70\">Call Toll Free: +1 888 900 9646 &nbsp; </td>\n </tr>\n\
161
+ </table>\n\
162
+ </div>\n\
163
+ <div style=\"background-color:#6687a6;\">\n <div class=\"mainmenu\">\n <a href=\"http://www.zoho.com/crm/features.html\" class=\"tlink\">Features</a>|\n <a href=\"http://www.zoho.com/crm/zohocrm-pricing.html\" class=\"tlink\"><strong>Pricing &amp; Signup</strong></a>|\n <a href=\"https://www.zoho.com/crm/crm-videos.html\" class=\"tlink\">Demo Videos</a>|\n <a href=\"http://www.zoho.com/crm/crm-resources.html\" class=\"tlink\">CRM Resources</a>|\n <a href=\"http://zoho.com/partners-resellers.html\" class=\"tlink\">Partners</a>|\n <a href=\"http://zoho.com/contact.html\" class=\"tlink\">Contact Us</a>\n </div>\n\
164
+ </div>\n\
165
+ <div style=\"background-color:#f1f2f4;\">\n\
166
+ <table width=\"948\" cellspacing=\"0\" cellpadding=\"0\" align=\"center\" bgcolor=\"#f1f2f4\">\n\
167
+ \t<tr>\n \t<td colspan=\"3\" height=\"25\" style=\"position:relative;\" valign=\"top\">&nbsp;</td>\n </tr>\n <tr>\n <td width=\"374\">\n \t<div style=\"position:relative; z-index:100;\"><h1 style=\"position:absolute; top:-25px;left:0px;\">Build, Maintain &amp; Strengthen your Customer Relationships</h1></div>\n <div class=\"loginbanner123\" onClick=\"register('free','A-lb');\" style=\"position:relative; width:374px; height:474px;\"><div style=\"position:absolute; width:384px; height:474px; top:0px; left:6px;\"><div style=\"width:384px; height:474px; background:transparent url(https://img.zohostatic.com/crm/v333/zoho-crm-logo.gif) no-repeat;\"></div></div></div>\n </td>\n <td class=\"btntd\" valign=\"top\">\n <ul class=\"emailnote\">\n <li>Get a 360 degree view of your business</li>\n <li>Track sales & marketing centrally</li>\n <li>Share customer emails in one place</li>\n \n </ul>\n <div align=\"right\" style=\"padding-right:20px; padding-bottom:20px;\"></div>\n <div class=\"signupbtn\" onClick=\"register('free','A-1');\">Sign up now &raquo;</div></td>\n <td height=\"270\" width=\"277\"><div class=\"loginbox\">\n <form name=\"mainform\" method=\"post\" action=\"zohologin\" onSubmit=\"return validate()\" style=\"margin:0px;\"><input type=\"hidden\" name=\"PLAN\" /><input type=\"hidden\" name=\"QUERYSTRING\" /><input type=\"hidden\" name=\"REFERER\" /><iframe src=\"https://accounts.zoho.com/login?servicename=ZohoCRM&amp;serviceurl=/crm/ShowHomePage.do&amp;hide_signup=true\" height=\"250\" width=\"263\" frameborder=\"0\" scrolling=\"no\"></iframe></form>\n </div>\n <div style=\"padding-top:30px; text-align:center;\">\n \t<h2 class=\"switchto\" style=\"font: normal 24px Arial,Helvetica,sans-serif; color:#485c7f; text-decoration:underline; cursor:pointer;\" onClick=\"document.location.href='https://www.zoho.com/crm/zwitch.html'\"><b>Zwitch</b> &amp; Save</h2>\n <span>Save over 80% of your CRM licensing costs&nbsp;</span>\n </div>\n </td>\n </tr>\n\
168
+ </table>\n\
169
+ </div>\n\
170
+ <div class=\"contentdiv\">\n\
171
+ \t<div class=\"featurediv\">\n \t<h2 class=\"featurebtn\">FEATURES</h2>\n <div class=\"conOutDl\"><div class=\"sales w40\">&nbsp;</div><div class=\"conDiv\"><h2><a href=\"https://www.zoho.com/crm/sales-force-automation.html\">Sales &amp; Marketing</a></h2><span class=\"gt\">Zoho CRM aligns your Sales and Marketing by integrating sales with campaigns, leads, sales pipeline, forecasts, etc.&nbsp;<a href=\"https://www.zoho.com/crm/sales-force-automation.html\" class=\"header_bluelink\">Learn More</a><br/></span></div></div>\n \n <div class=\"conOutDl\"><div class=\"email h35\">&nbsp;</div><div class=\"conDiv\"><h2><a href=\"https://www.zoho.com/crm/crm-email.html\">CRM with Email</a></h2><span class=\"gt\">With the Zoho Mail add-on you can track all your customers email correspondence inside Zoho CRM.&nbsp;<a href=\"https://www.zoho.com/crm/crm-email.html\" class=\"header_bluelink\">Learn More</a><br/></span></div></div>\n \n <div class=\"conOutDr\"><div class=\"outlook w40\">&nbsp;</div><div class=\"conDiv\"><h2 class=\"flt\" style=\"white-space:nowrap;\"><a href=\"https://www.zoho.com/crm/office-plug-in.html\">Plug-in for Microsoft Outlook &amp; Office</a></h2><span class=\"gt\">Improve business productivity by synchronizing contacts and creating mail merge docs.<br/><a href=\"https://www.zoho.com/crm/outlook-edition.html\" class=\"header_bluelink\">Plug-in for MS Outlook</a>&nbsp;|&nbsp;<a href=\"https://www.zoho.com/crm/office-plug-in.html\" class=\"header_bluelink\">MS Office</a><br /></span></div></div><div class=\"c1\">&nbsp;</div>\n <div class=\"conOutDr\"><div class=\"inventory w40\">&nbsp;</div><div class=\"conDiv\"><h2><a href=\"https://www.zoho.com/crm/order-management.html\">Inventory Management</a></h2><span class=\"gt\">Zoho CRM empowers you to complete the post-sales activities with an integrated inventory management system.&nbsp;<a href=\"https://www.zoho.com/crm/order-management.html\" class=\"header_bluelink\">Learn More</a><br/></span></div></div><div class=\"c1\">&nbsp;</div>\n \n <div class=\"conOutDl\"><div class=\"api h35\">&nbsp;</div><div class=\"conDiv\"><h2><a href=\"https://zohocrm.wiki.zoho.com/Zoho-CRM-API.html\">CRM API for Third-party Integration</a></h2><span class=\"gt\">Developer API for integrating CRM modules with third-party business applications such as accounting, ERP, etc.&nbsp;<a href=\"https//zohocrm.wiki.zoho.com/Zoho-CRM-API.html\" class=\"header_bluelink\">Learn More</a><br /></span></div></div>\n \n <div class=\"conOutDr\"><div class=\"custom w40 h35\">&nbsp;</div><div class=\"conDiv\"><h2><a href=\"https//zohocrm.wiki.zoho.com/Customizing-Zoho-CRM.html\">Extensive Product Customization</a></h2><span class=\"gt\">Drag-and-drop UI tools for customizing Zoho CRM as per your business process.&nbsp;<br/><a href=\"https://zohocrm.wiki.zoho.com/Customizing-Zoho-CRM.html\" class=\"header_bluelink\">Learn More</a><br/></span></div></div><div class=\"c1\">&nbsp;</div>\n <div class=\"conOutDl\"><div class=\"security w40\">&nbsp;</div><div class=\"conDiv\"><h2><a href=\"https://www.zoho.com/crm/role-based-security.html\">Role-based Security</a>&nbsp;</h2><div class=\"c1\">&nbsp;</div><span class=\"gt\">Zoho CRM empowers you to control the CRM data access based on users' job role in your organization hierarchy. <a href=\"https://www.zoho.com/crm/role-based-security.html\" class=\"header_bluelink\">Learn More</a><br /></span></div></div>\n \n <div class=\"conOutDr\"><div class=\"reports w40\">&nbsp;</div><div class=\"conDiv\"><h2><a href=\"https://www.zoho.com/crm/reports-dashboards.html\">Reports &amp; Dashboards</a></h2><span class=\"gt\">Zoho CRM helps you to analyze sales &amp; marketing trends and key CRM metrics by reports and dashboards.&nbsp;<a href=\"https://www.zoho.com/crm/reports-dashboards.html\" class=\"header_bluelink\">Learn More</a><br/></span></div></div><div class=\"c1\">&nbsp;</div> \n \n\
172
+ \t</div>\n <div class=\"benefitdiv\" style=\"margin-left:30px;\"><h2 class=\"featurebtn\">BENEFITS</h2>\n <table cellspacing=\"5\">\n \t<tr>\n \t<td valign=\"top\"><div class=\"bene1\">1</div></td>\n <td class=\"gt pb22\"><strong>Award-winning, complete CRM solution.</strong> Zoho CRM offers all the modules and tools that you might need to run your sales &amp; marketing.</td>\n </tr>\n \t<tr>\n \t<td valign=\"top\"><div class=\"bene1\">2</div></td>\n <td class=\"gt pb22\"><strong>Value for your money.</strong> We not only provide a great CRM solution, but also have a great price too. How about... 3 users entirely free? No strings attached, not a trial, just free!</td>\n </tr>\n \t<tr>\n \t<td valign=\"top\"><div class=\"bene1\">3</div></td>\n <td class=\"gt pb22\"><strong>No long term contracts, pay as you go.</strong> You are not bound by any long, yearly contracts. You have the flexibility of paying monthly, quarterly or yearly.</td>\n </tr>\n \t<tr>\n \t<td valign=\"top\"><div class=\"bene1\">4</div></td>\n <td class=\"gt pb22\"><strong>It's all hosted.</strong> When you choose Zoho CRM, we do the hard work for you. You do not have to buy expensive servers, software, backup solutions, etc. Just focus on selling and leave the rest to us.</td>\n </tr>\n \t<tr>\n \t<td valign=\"top\"><div class=\"bene1\">5</div></td>\n <td class=\"gt pb22\"><strong>Ease of Customization.</strong> We understand your need to customize our service to your specific needs. Our drag-and-drop customization helps you get things done fast.</td>\n </tr>\n \t<tr>\n \t<td valign=\"top\"><div class=\"bene1\">6</div></td>\n <td class=\"gt pb22\"><strong>It's not just CRM. </strong>When you create a Zoho CRM account, you also get access to the Zoho suite of products - from online storage and web meetings to other business products, such as project management, invoices and more.</td>\n </tr>\n </table>\n </div>\n <div class=\"linkdiv\" style=\"margin-left:20px; _margin-left:25px; width:290px;\">\n \n \t<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" class=\"loginlivedemo\">\n \t<tr>\n \t<td valign=\"top\" style=\"padding-left:30px; line-height:20px; padding-top:20px;text-align:center;\">Experience Zoho CRM<br /><h3 style=\"font-size:18px;\"><a href=\"https://www.zoho.com/crm/online-demo.html\">Online CRM Demo</a></h3></td>\n </tr>\n </table> \n \n \t<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\" class=\"loginothers\">\n \t<tr>\n \t<td valign=\"top\" style=\"padding-left:25px;\">\n \t<h3 style=\"color:#999;padding-top:10px; padding-bottom:15px;\">Quick Links</h3> \n <ul class=\"rlink\">\n <li><a href=\"https://www.zoho.com/crm/crm-data-migration.html\" class=\"rightbluelink\"><strong>Migrate to Zoho CRM</strong></a></li>\n <li><a href=\"http://www.zoho.com/crm/zohocrm-pricing.html\" class=\"rightbluelink\">Pricing &amp; Signup</a></li>\n <li><a href=\"https://www.zoho.com/crm/request-quote.html\" class=\"rightbluelink\">Request a Quote</a></li>\n <li><a href=\"https://www.zoho.com/crm/request-customization.html \" class=\"rightbluelink\">Request Customization</a></li>\n <li><a href=\"http://www.zoho.com/crm/call-me.html\" class=\"rightbluelink\">Contact Us</a></li>\n </ul> \n\
173
+ \t\t\t\t</td>\n </tr>\n </table> \n <div class=\"allvideo\"><h3 style=\"color:#999; padding-left:25px; padding-top:10px; padding-bottom:10px;\">Video</h3><div style=\"height: 170px; padding-left: 28px; cursor:pointer;\" onClick=\"document.location.href='https://www.zoho.com/crm/videos/crm-email-video/crm-email-video.html'\"><a href=\"https://www.zoho.com/crm/videos/crm-email-video/crm-email-video.html\"><strong>Get your email inside CRM</strong></a></div><div style=\" padding-right:20px; text-align:right;\"><a href=\"https://www.zoho.com/crm/crm-videos.html\">All videos</a></div></div>\n \n\
174
+ \t\n\
175
+ <div class=\"crmawards\" onClick=\"document.location.href='https://www.zoho.com/crm/zohocrm-awards-testimonials.html'\"><h3 style=\"color:#999; padding-left:25px; padding-top:10px; padding-bottom:20px;\">CRM Awards</h3> </div>\n\n </div>\n\
176
+ </div>\n\n\
177
+ <div style=\"clear:both;\"></div><table width=\"950\" align=\"center\"><tr><td style=\"line-height:70px; background-color:#f1f8fd;\"><h3 style=\"font-size:26px; text-align:center;\"><a href=\"https://www.zoho.com/crm/online-demo.html\" style=\"color:#0d5fe7; text-decoration:underline;\">Watch Online Demo</a><span style=\" padding:0px 15px; color:#bbb; font-size:26px;\"> or </span><a href=\"javascript:register('free','A-2');\" style=\"color:#0d5fe7; text-decoration:underline;\" onClick=\"register('free','A-2');\">Sign up for Free</a></h3></td></tr></table><table align=\"center\" cellpadding=\"0\" cellspacing=\"0\" border=\"0\" style=\"padding:0px 10px; margin:5px auto; background:#fffff2; height:30px; border:0px solid #7b7b7b;\"><tr><td style=\"padding:6px 0px;\"><h4 style=\"text-align:center; padding:5px 10px; font-weight:bold;\"><span style=\"color:#197a30; font-size:16px;\">Free Customer Relationship Management (CRM) for 3 Users</span><br/> <span style=\"color:#333;\"><strong>4th User starts @ USD 12/month</strong></span></h4></td></tr></table>\n\n\
178
+ <div style=\"clear:both; height:3px;\"></div>\n\n\
179
+ <table align=\"center\" width=\"950\" style=\"border-top:2px solid #f3f3f3;\">\n\
180
+ \t<tr>\n \t<td><div class=\"allawards\" onClick=\"document.location.href='https://www.zoho.com/awards.html'\"></div></td>\n </tr>\n\
181
+ </table> \n\n\
182
+ <div id=\"nfL\"><div style=\"padding:7px 0px;\"><div class=\"nfLD\">\n\n\
183
+ <ul>\n\
184
+ \t<li><b>CRM Features</b></li>\n <li><a href=\"https://www.zoho.com/crm/crm-email.html\" class=\"fl\">CRM with Email</a></li>\n <li><a href=\"https://www.zoho.com/crm/sales-force-automation.html\" class=\"fl\">Sales Force Automation</a></li>\n <li><a href=\"https://www.zoho.com/crm/contact-manager.html\" class=\"fl\">Contact Manager</a></li>\n \n <li><a href=\"https://www.zoho.com/crm/lead-management.html\" class=\"fl\">Lead Management</a></li>\n <li><a href=\"https://www.zoho.com/crm/web-forms.html\" class=\"fl\">Web Forms</a></li>\n \n <li><a href=\"https://www.zoho.com/crm/marketing-automation.html\" class=\"fl\">Marketing Automation</a></li>\n <li><a href=\"https://www.zoho.com/crm/customer-support.html\" class=\"fl\">Customer Support</a></li>\n <li><a href=\"https://www.zoho.com/crm/order-management.html\" class=\"fl\">Inventory Management</a></li>\n \n <li><a href=\"https://www.zoho.com/crm/reports-dashboards.html\" class=\"fl\">Reports &amp; Dashboards</a></li>\n \n\
185
+ </ul></div><div class=\"nfLD\"><ul><li><b>Resource Center</b></li>\n\
186
+ <li><a href=\"http://www.zoho.com/crm/zohocrm-pricing.html\" class=\"fl\">Pricing &amp; Signup</a></li>\n\
187
+ <li><a href=\"https://www.zoho.com/crm/online-demo.html\" class=\"fl\">Online CRM Demo</a></li>\n\n\
188
+ <li><a href=\"https://www.zoho.com/crm/crm-videos.html\" class=\"fl\">CRM Videos</a></li>\n\
189
+ <li><a href=\"https://www.zoho.com/crm/crm-presentations.html\" class=\"fl\">CRM Presentations</a></li>\n\n\
190
+ <li><a href=\"http://zohocrm.wiki.zoho.com/\" class=\"fl\">CRM Wiki</a></li>\n\
191
+ <li><a href=\"https://forums.zoho.com/Zoho-CRM\" class=\"fl\">CRM Forums</a></li>\n\
192
+ <li><a href=\"http://blogs.zohocrm.com/\" class=\"fl\">CRM Blogs</a></li>\n\
193
+ </ul></div><div class=\"nfLD\"><ul><li><b>About CRM</b></li><li><a href=\"http://www.zoho.com/crm/what-is-crm.html\" class=\"fl\">What is CRM Software-as-a-Service?</a></li><li><a href=\"http://lounge.zohocrm.com/link/Who-needs-CRM-\" class=\"fl\">Who needs CRM?</a></li><li><a href=\"http://www.zoho.com/crm/crm-evaluation.html\" class=\"fl\">How to Evaluate CRM?</a></li><li><a href=\"http://www.zoho.com/crm/buy-crm.html\" class=\"fl\">How to buy CRM?</a></li><li><a href=\"https://zoho.com/crm/new-to-crm.html\" class=\"fl\">New to CRM?</a></li></ul></div><div style=\"width:233px;float:left;\"><ul><li><b>Other Zoho Apps</b></li><li><a href=\"https://zoho.com/recruit/index.html?src=crm\" class=\"fl\">Zoho Recruit</a></li><li><a href=\"https://projects.zoho.com\" class=\"fl\">Zoho Projects</a></li><li><a href=\"https://meeting.zoho.com\" class=\"fl\" title=\"Web Conferencing and Remote Support\">Zoho Meeting</a></li><li><a href=\"https://invoice.zoho.com\" class=\"fl\">Zoho Invoice</a></li><li><a href=\"https://discussion.zoho.com\" class=\"fl\">Zoho Discussions</a></li><li><a href=\"https://creator.zoho.com\" class=\"fl\">Zoho Creator</a></li><li style=\"padding-left:50px;\"><a href=\"http://www.zoho.com/\" class=\"fl\">more &gt;&gt;</a></li></ul></div></div></div><div style=\"clear:left; height:1px;\"></div><div id=\"fo2\"><a href=\"http://www.zoho.com/\" class=\"fl\">Zoho Home</a> - <a href=\"https://forums.zoho.com\" class=\"fl\">CRM Forums</a> - <a href=\"http://blogs.zohocrm.com/\" class=\"fl\">CRM Blogs</a> - <a href=\"http://zoho.com/privacy.html\" class=\"fl\">Privacy Policy</a> - <a href=\"http://zoho.com/terms.html\" class=\"fl\">Terms of Service</a> - <a href=\"http://zoho.com/ipr_complaints.html\" class=\"fl\">IPR Complaints</a> -<a href=\"https://zoho.com/policy.html\" class=\"fl\">Anti-spam Policy</a>-<a href=\"http://zoho.com/contact.html\" class=\"fl\">Contact Us</a> -<a href=\"http://zoho.com/company.html\" class=\"fl\">About Us</a><a target=\"_blank\" href=\"https://clicktoverify.truste.com/pvr.php?page=validate&amp;url=www.Zoho.com&amp;sealid=102\"><img width=\"171\" height=\"47\" border=\"0\" align=\"middle\" alt=\"TRUSTe\" src=\"https://zoho.com/images/footer_truste.gif\"></a><br />&copy; 2011 ZOHO Corp.&nbsp;All rights reserved.</div>\n\
194
+ <script type=\"text/javascript\">\n\
195
+ function getCookie(cookie_name){var results = document.cookie.match(cookie_name + '=(.*?)(;|$)');if (results) return (unescape(results[1]));else return null;}function deleteCookie ( cookie_name ){var cookie_date = new Date ( );cookie_date.setTime ( cookie_date.getTime() - 1 );document.cookie = cookie_name += \"=; expires=\" + cookie_date.toGMTString();}\n\n\
196
+ function SetCookie(name,value,exp_y, exp_m, exp_d, path, domain, secure) {var cookie_string = name + \"=\" + (escape ( value ));if (exp_y){var expires = new Date ( exp_y, exp_m, exp_d );cookie_string += \"; expires=\" + expires.toGMTString();}if (path) cookie_string += \"; path=\" + escape ( path );if (domain) cookie_string += \"; domain=\" + escape ( domain );if (secure) cookie_string += \"; secure\";document.cookie = cookie_string;}\n\n\
197
+ function getObj(n,d) {\n\
198
+ \tvar p,i,x; \n\
199
+ \tif(!d)\n\
200
+ \t{\n\
201
+ \t\td=document;\n\
202
+ \t}\n\
203
+ \tif((p=n.indexOf(\"?\"))>0&&parent.frames.length) {\n\
204
+ \t\td=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);\n\
205
+ \t}\n\
206
+ \tif(!(x=d[n])&&d.all)\n\
207
+ \t{\n\
208
+ \t\tx=d.all[n];\n\
209
+ \t}\n\
210
+ \tfor(i=0;!x&&i<d.forms.length;i++)\n\
211
+ \t{\n\
212
+ \t\tx=d.forms[i][n];\n\
213
+ \t}\n\
214
+ \tfor(i=0;!x&&d.layers&&i<d.layers.length;i++)\n\
215
+ \t{\n\
216
+ \t\tx=getObj(n,d.layers[i].document);\n\
217
+ \t}\n\
218
+ \tif(!x && d.getElementById)\n\
219
+ \t{\n\
220
+ \t\tx=d.getElementById(n);\n\
221
+ \t}\n\
222
+ \treturn x;\n\
223
+ }\n\n\
224
+ function register( plan, fromLink ) \n\
225
+ {\n\
226
+ \tif ( plan )\n\
227
+ \t{\n\
228
+ \t\tdocument.mainform.PLAN.value=plan;\n\
229
+ \t}\n\
230
+ \tqueryString = \"serviceurl%3D%252Fcrm%252FIAMSecurityError.do%253Fisload%253Dtrue\";\n\
231
+ \treferer = \"null\";\n\
232
+ \tif ( queryString )\n\
233
+ \t{\n\
234
+ \t\tdocument.mainform.QUERYSTRING.value=queryString;\n\
235
+ \t}\n\
236
+ \tif ( referer )\n\
237
+ \t{\n\
238
+ \t\tdocument.mainform.REFERER.value=referer;\n\
239
+ \t}\n\
240
+ \tdocument.mainform.action=\"/crm/signup.sas?fl=\"+fromLink;\n\
241
+ \tdocument.mainform.method=\"post\";\n\
242
+ \tdocument.mainform.submit();\n\
243
+ }\n\n\
244
+ function emptyCheck(fldName,fldLabel, fldType) {\n\
245
+ \tvar currObj=getObj(fldName)\n\
246
+ \tif( fldType && currObj.value == \"\" ) {\n\
247
+ \t\talert(fldLabel+\" cannot be none \")\n\
248
+ \t\tcurrObj.setAttribute(\"autocomplete\",\"off\");\t\n\
249
+ \t\tcurrObj.focus()\n\
250
+ \t\treturn false\n\
251
+ \t}\n\
252
+ \tif (currObj.value.replace(/^\\s+/g, '').replace(/\\s+$/g, '').length==0) {\n\
253
+ \t\talert(fldLabel+\" cannot be empty\")\n\
254
+ \t\tcurrObj.setAttribute(\"autocomplete\",\"off\");\t\n\
255
+ \t\tcurrObj.focus()\n\
256
+ \t\treturn false\n\
257
+ \t}\n\
258
+ \telse\n\
259
+ \t{\n\
260
+ \t\treturn true\n\
261
+ \t}\n\
262
+ }\n\
263
+ function validate() {\n\
264
+ \tif (!emptyCheck(\"userName\",'Login Name'))\n\
265
+ \t\treturn false\n\n\
266
+ \t\t\tif (!emptyCheck(\"passWord\",'Password'))\n\
267
+ \t\t\t\treturn false\n\
268
+ \t\t\t\t\tif(getObj(\"j_remember\").checked)\n\
269
+ \t\t\t\t\t{\n\
270
+ \t\t\t\t\t\tvar val1 = getObj(\"userName\").value;\n\
271
+ \t\t\t\t\t\tvar val2 = getObj(\"passWord\").value\n\
272
+ \t\t\t\t\t\tSetCookie(\"zohoId\",val1);\n\
273
+ \t\t\t\t\t\tSetCookie(\"password\",val2);\n\
274
+ \t\t\t\t\t}\n\
275
+ \t\t\t\t\telse\n\
276
+ \t\t\t\t\t{\n\
277
+ \t\t\t\t\t\tdeleteCookie(\"zohoId\");\n\
278
+ \t\t\t\t\t\tdeleteCookie(\"password\");\t\n\
279
+ \t\t\t\t\t}\n\n\
280
+ }\n\n\
281
+ function getName()\n\
282
+ {\n\
283
+ \tvar name = getCookie(\"zohoId\")\n\
284
+ \tvar password = getCookie(\"password\")\n\
285
+ \tif(name != null)\n\
286
+ \t{\n\
287
+ \t\tgetObj(\"userName\").value = name\n\
288
+ \t}\n\
289
+ \tif(password != null)\n\
290
+ \t{\n\
291
+ \t\tgetObj(\"passWord\").value=password\n\
292
+ \t}\n\
293
+ \tif(name != null && password != null)\n\
294
+ \t{\n\
295
+ \t\tgetObj(\"j_remember\").checked = true;\n\
296
+ \t}\n\
297
+ \tif(getObj(\"userName\"))\n\
298
+ \t{\n\
299
+ \t\tgetObj(\"userName\").focus();\n\
300
+ \t}\n\
301
+ }\n\n\
302
+ getName();\n\
303
+ </script>\n\
304
+ <script type=\"text/javascript\" src=\"https://s3.amazonaws.com/new.cetrk.com/pages/scripts/0010/2590.js\"> </script>\n\
305
+ <script type=\"text/javascript\">\n\
306
+ var gaJsHost = ((\"https:\" == document.location.protocol) ? \"https://ssl.\" : \"http://www.\");\n\
307
+ document.write(unescape(\"%3Cscript src='\" + gaJsHost + \"google-analytics.com/ga.js' type='text/javascript'%3E%3C/script%3E\"));\n\
308
+ try{\n\
309
+ var pageTracker = _gat._getTracker(\"UA-2544340-5\");\n\
310
+ pageTracker._setDomainName(\".zoho.com\");\n\
311
+ pageTracker._trackPageview();\n\
312
+ } catch(err) {}\n\
313
+ </script>\n"
314
+ http_version: "1.1"
315
+ - !ruby/struct:VCR::HTTPInteraction
316
+ request: !ruby/struct:VCR::Request
317
+ method: :get
318
+ uri: https://www.zoho.com:443/crm/index.html
319
+ body:
320
+ headers:
321
+ cookie:
322
+ - JSESSIONID=7A6BA37ED8E1DA29B78E16FD31592DAC; Path=/; crmcsr=56c20bfe-6385-465a-9a74-9af48dc77c1d
323
+ response: !ruby/struct:VCR::Response
324
+ status: !ruby/struct:VCR::ResponseStatus
325
+ code: 301
326
+ message: Moved Permanently
327
+ headers:
328
+ date:
329
+ - Fri, 20 May 2011 15:53:46 GMT
330
+ server:
331
+ - Apache
332
+ location:
333
+ - https://www.zoho.com/crm/
334
+ cache-control:
335
+ - max-age=426934
336
+ expires:
337
+ - Wed, 25 May 2011 14:29:21 GMT
338
+ vary:
339
+ - Accept-Encoding
340
+ content-length:
341
+ - "233"
342
+ content-type:
343
+ - text/html; charset=iso-8859-1
344
+ body: |
345
+ <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
346
+ <html><head>
347
+ <title>301 Moved Permanently</title>
348
+ </head><body>
349
+ <h1>Moved Permanently</h1>
350
+ <p>The document has moved <a href="https://www.zoho.com/crm/">here</a>.</p>
351
+ </body></html>
352
+
353
+ http_version: "1.1"
354
+ - !ruby/struct:VCR::HTTPInteraction
355
+ request: !ruby/struct:VCR::Request
356
+ method: :get
357
+ uri: https://www.zoho.com:443/crm/
358
+ body:
359
+ headers:
360
+ cookie:
361
+ - JSESSIONID=7A6BA37ED8E1DA29B78E16FD31592DAC; Path=/; crmcsr=56c20bfe-6385-465a-9a74-9af48dc77c1d
362
+ response: !ruby/struct:VCR::Response
363
+ status: !ruby/struct:VCR::ResponseStatus
364
+ code: 200
365
+ message: OK
366
+ headers:
367
+ date:
368
+ - Fri, 20 May 2011 15:53:47 GMT
369
+ server:
370
+ - Apache
371
+ last-modified:
372
+ - Wed, 18 May 2011 14:29:21 GMT
373
+ etag:
374
+ - "\"7651-4a38db6e4b240\""
375
+ accept-ranges:
376
+ - bytes
377
+ content-length:
378
+ - "30289"
379
+ cache-control:
380
+ - max-age=426933
381
+ expires:
382
+ - Wed, 25 May 2011 14:29:21 GMT
383
+ vary:
384
+ - Accept-Encoding
385
+ content-type:
386
+ - text/html; charset=UTF-8
387
+ body: |-
388
+ <!doctype html>
389
+ <html>
390
+ <head>
391
+ <title>CRM Software, Customer Relationship Management - Zoho CRM</title>
392
+ <meta http-equiv=Content-type content="text/html;charset=UTF-8"/>
393
+ <meta name=keywords content="crm,online crm,customer relationship management,salesforce automation, google apps integration"/>
394
+ <meta name=description content="Online CRM software for managing your sales, marketing, customer support, and inventory in a single system. Free for 3 users"/>
395
+ <meta name=verify-v1 content="mOR4CRGAgTyZTYxaOWwZYvIBJdfnbAtIWy47rz7wzYs=">
396
+ <meta name=google-site-verification content=XzzFQdjeXm1I1dfFTFHVoWA8ZZagAL0nalo2NjuNlMA />
397
+ <link rel="SHORTCUT ICON" href="/crm/images/favicon.ico"/>
398
+ <style type="text/css">
399
+ html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, a, img, small, strong, ol, ul, li {
400
+ margin:0;
401
+ padding:0;
402
+ border:0;
403
+ outline:0;
404
+ font-size:100%;
405
+ vertical-align:baseline;
406
+ background:transparent
407
+ }
408
+ body {
409
+ line-height:1
410
+ }
411
+ ol, ul {
412
+ list-style:none
413
+ }
414
+ :focus {
415
+ outline:0
416
+ }
417
+ .cB:after {
418
+ clear:both;
419
+ content:'.';
420
+ display:block;
421
+ visibility:hidden;
422
+ height:0
423
+ }
424
+ .cB {
425
+ display:inline-block
426
+ }
427
+ .cB {
428
+ display:block
429
+ }
430
+ body {
431
+ font-family:Arial, Helvetica, sans-serif;
432
+ font-size:13px;
433
+ line-height:18px
434
+ }
435
+ p {
436
+ font-size:13px
437
+ }
438
+ a {
439
+ color:#056FC3;
440
+ text-decoration:none
441
+ }
442
+ a:hover {
443
+ text-decoration:underline
444
+ }
445
+ li {
446
+ display:inline
447
+ }
448
+ .bc a, .p a, .n li, .fb li span, .s2l li, .s2l p, .vd a, .aw a, .sb span a, .te span, .ao li span, .linked-in-icon a, .twit-icon a, .face-bk-icon a {
449
+ background-image:url(/crm/images/zoho-crm-sprite.png);
450
+ background-repeat:no-repeat
451
+ }
452
+ .hc {
453
+ background: url("/crm/images/hb.png") repeat-x 0 1px;
454
+ min-height: 116px;
455
+ margin-top:-18px;
456
+ #margin-top:0;
457
+ }
458
+ .h {
459
+ margin: 0 auto;
460
+ width: 990px;
461
+ }
462
+ .l {
463
+ float: left;
464
+ height: 61px;
465
+ padding: 10px 0 13px;
466
+ text-align: center;
467
+ width: 230px;
468
+ }
469
+ .l a {
470
+ float: left;
471
+ height: 45px;
472
+ position: relative;
473
+ width: 225px;
474
+ }
475
+ .l a span {
476
+ left: 29px;
477
+ position: absolute;
478
+ top: 20px;
479
+ z-index: 99;
480
+ }
481
+ .l span {
482
+ font-size: 13px
483
+ }
484
+ .l a:hover {
485
+ text-decoration:none
486
+ }
487
+ .l a img {
488
+ position:relative;
489
+ z-index:111;
490
+ background:#fff
491
+ }
492
+ .tn {
493
+ padding:10px 0 0;
494
+ float:right;
495
+ position:relative
496
+ }
497
+ .tn ul {
498
+ }
499
+ .tn li a {
500
+ float:left;
501
+ margin:5px 0 5px 24px;
502
+ text-decoration:underline
503
+ }
504
+ .tn li.su a {
505
+ border-bottom: 1px dotted;
506
+ color: #DB2020;
507
+ float:left;
508
+ margin: 5px 0 5px 40px;
509
+ text-decoration: none;
510
+ text-transform: uppercase;
511
+ }
512
+ .tn li.si a {
513
+ background: url("/crm/images/si.png") no-repeat scroll 0 0 transparent;
514
+ height: 28px;
515
+ margin-left: 15px;
516
+ text-indent: -999em;
517
+ width: 82px;
518
+ border:none;
519
+ margin-top:0
520
+ }
521
+ .tn p {
522
+ width:260px;
523
+ float: right;
524
+ padding-top: 5px;
525
+ text-align:right
526
+ }
527
+ .tn p a, .tn span {
528
+ padding:0 5px
529
+ }
530
+ .tn li span {
531
+ font-weight: bold;
532
+ line-height: 30px;
533
+ margin-left: 32px;
534
+ }
535
+ .scb {
536
+ position: absolute;
537
+ right: 0;
538
+ top: 48px;
539
+ width: 215px;
540
+ }
541
+ .scb p {
542
+
543
+ float: left;
544
+ line-height: 26px;
545
+ margin: 0;
546
+ padding: 0 10px 0 0;
547
+ width: 105px;
548
+ }
549
+ .scb li a {
550
+ background-image:url(/crm/images/sip.png);
551
+ }
552
+ .scb li a {
553
+ float: left;
554
+ height: 24px;
555
+ margin: 0 0 0 9px;
556
+ width: 24px;
557
+ }
558
+ .scb .face-bk-icon a {
559
+ background-position: -29px top;
560
+ }
561
+ .scb .link-in-icon a {
562
+ background-position: -58px top;
563
+ height:23px;
564
+ width:23px
565
+ }
566
+ .scb .twit-icon a {
567
+ background-position: left top;
568
+ }
569
+ .mn {
570
+ border-left: 1px solid #056FC3;
571
+ width:100%;
572
+ float: left
573
+ }
574
+ .mn li {
575
+ }
576
+ .mn li a {
577
+ border-right: 1px solid #056FC3;
578
+ color: #FFFFFF;
579
+ float: left;
580
+ font-size: 13px;
581
+ font-weight:bold;
582
+ padding: 7px 25px;
583
+ }
584
+ .mn li a:hover, .mn li.sel a {
585
+ background: url("/crm/images/lb.png") repeat;
586
+ color: #222;
587
+ text-decoration:none
588
+ }
589
+ h1 {
590
+ font: lighter 36px/1.8 Georgia, "Times New Roman", Times, serif;
591
+ letter-spacing: -0.01em;
592
+ padding: 6px 5px 5px;
593
+ text-align: center;
594
+ clear:both
595
+ }
596
+ .coda-slider-wrapper {
597
+ -moz-border-radius: 10px;
598
+ -webkit-border-radius:10px;
599
+ background: url("/crm/images/bb.png") repeat-x #61B2E6;
600
+ border: 1px solid #4393E0;
601
+ margin: 0 auto;
602
+ min-height: 414px;
603
+ width: 988px;
604
+ position:relative
605
+ }
606
+ .coda-slider {
607
+ float: left;
608
+ height: 366px !important;
609
+ overflow: hidden;
610
+ position: relative;
611
+ width:990px
612
+ }
613
+ .panel {
614
+ width: 990px;
615
+ padding:20px 0;
616
+ float:left
617
+ }
618
+ .is {
619
+ float:left;
620
+ width:620px;
621
+ padding-left:10px;
622
+ }
623
+ .cs {
624
+ float:left;
625
+ width:325px;
626
+ padding:20px 20px 0 0;
627
+ }
628
+ .cs h2 {
629
+ border-bottom: 1px dotted;
630
+ color: #fff;
631
+ font-size: 20px;
632
+ margin-bottom: 30px;
633
+ padding-bottom: 6px;
634
+ }
635
+ .cs ul {
636
+
637
+ padding: 15px 5px 0;
638
+ }
639
+ .cs li {
640
+ background: url("/crm/images/a1.png") no-repeat left 2px;
641
+ color: #FFFFFF;
642
+ display: block;
643
+ font-size:13px;
644
+ padding-bottom: 18px;
645
+ padding-left: 20px;
646
+ }
647
+ .cs p {
648
+ padding:30px 0
649
+ }
650
+ .cs p a {
651
+ background: url("/crm/images/gs.png") no-repeat scroll 0 0 transparent;
652
+ float: left;
653
+ height: 46px;
654
+ text-indent: -999em;
655
+ width: 149px;
656
+ }
657
+ .coda-nav {
658
+ float: left;
659
+ width: 990px;
660
+ }
661
+ .coda-nav ul li {
662
+ float: left;
663
+ }
664
+ .coda-nav ul li a {
665
+ background:#fff;
666
+ color: #A3C9EE;
667
+ float: left;
668
+ font-size: 18px;
669
+ font-weight: normal;
670
+ margin: 15px 55px;
671
+ padding: 0 15px;
672
+ text-decoration: none;
673
+ }
674
+ .coda-nav ul li a.current,.coda-nav ul li a:hover {
675
+ color: #09325F;
676
+ }
677
+ .cc {
678
+ width:990px;
679
+ margin:0 auto;
680
+ padding:25px 0;
681
+ }
682
+ p.d{
683
+ padding:20px 0 0;
684
+ line-height:20px
685
+ }
686
+ .bp {
687
+ background:#fff;
688
+ float: left;
689
+ font-family: Georgia, "Times New Roman", Times, serif;
690
+ font-size: 17px;
691
+ margin: 0 105px;
692
+ padding: 14px 10px 0;
693
+ text-align: center;
694
+ }
695
+ .s1 {
696
+ float:left;
697
+ width:740px
698
+ }
699
+ .fb, .fe {
700
+ float: left;
701
+ margin-right: 10px;
702
+ padding-bottom: 15px;
703
+ width:740px;
704
+ }
705
+ .fe {
706
+ -moz-box-shadow: 0 0 6px #ddd;
707
+ -webkit-box-shadow: 0 0 6px #ddd;
708
+ border: 1px solid #ddd;
709
+ -moz-border-radius:5px;
710
+ -webkit-border-radius:5px
711
+ }
712
+ .s1 h2 {
713
+ color: #343434;
714
+ margin: 0 0 10px;
715
+ font-size:15px;
716
+ padding-bottom:5px;
717
+ border-bottom:1px solid #ddd
718
+ }
719
+ .s1 .fe h2 {
720
+ background:#c3dcfc;
721
+ border:none;
722
+ padding: 10px 15px;
723
+ font-size:1.5em
724
+ }
725
+ .fe ol {
726
+ padding-left:15px
727
+ }
728
+ .fb li, .fe li {
729
+ float:left;
730
+ display:block;
731
+ position:relative;
732
+ padding:7px 0 15px 40px
733
+ }
734
+ .fe li {
735
+ padding:1% 2% 2% 6%;
736
+ width:41%;
737
+ display:inline;
738
+ height:85px
739
+ }
740
+ .fb li span {
741
+ color:#fff;
742
+ font-weight:bold;
743
+ height:40px;
744
+ left:0;
745
+ padding:4px 0 0 9px;
746
+ position:absolute;
747
+ width:31px
748
+ }
749
+ .fb li a {
750
+ cursor:pointer
751
+ }
752
+ .i1 {
753
+ background-position:-224px -100px
754
+ }
755
+ .i2 {
756
+ background-position:-221px -48px
757
+ }
758
+ .i3 {
759
+ background-position:-224px -294px
760
+ }
761
+ .i4 {
762
+ background-position:-225px -152px
763
+ }
764
+ .i5 {
765
+ background-position:-227px -338px
766
+ }
767
+ .i6 {
768
+ background-position:-227px -388px
769
+ }
770
+ .i7 {
771
+ background-position:-227px -438px
772
+ }
773
+ .i8 {
774
+ background-position:-227px -195px
775
+ }
776
+ .i9 {
777
+ background-position:-183px -158px
778
+ }
779
+ .s1 h3 {
780
+ font-size:14px
781
+ }
782
+ .fb p {
783
+ color:#222
784
+ }
785
+ .ao {
786
+ margin: 25px 0 0;
787
+ padding-bottom: 15px
788
+ }
789
+ .ao li {
790
+ border: 2px solid #eee;
791
+ float: left;
792
+ height: 50px;
793
+ margin: 7px 0 7px 53px;
794
+ padding: 0;
795
+ width: auto;
796
+ }
797
+ .ao li:first-child {
798
+ margin-left:0
799
+ }
800
+ .ao li a {
801
+ width:100px;
802
+ height:50px;
803
+ float:left;
804
+ position:relative
805
+ }
806
+ .ao li span {
807
+ position:absolute;
808
+ width:100px;
809
+ height:50px;
810
+ top:0
811
+ }
812
+ .a1 span {
813
+ background-position:left -163px
814
+ }
815
+ .a2 span {
816
+ background-position:left -222px
817
+ }
818
+ .a3 span {
819
+ background-position:-1px -281px
820
+ }
821
+ .a4 span {
822
+ background-position:-1px -341px
823
+ }
824
+ .a5 span {
825
+ background-position:-1px -401px
826
+ }
827
+ .more {
828
+ text-align:right;
829
+ padding-right:15px;
830
+ padding:5px 10px 5px 0
831
+ }
832
+ .a6 span {
833
+ background-position:-110px -401px
834
+ }
835
+ .s1s {
836
+ background:#F0F7FF;
837
+ border: 1px solid #E9F3FF;
838
+ margin: 15px 0 20px;
839
+ padding-bottom: 10px;
840
+ text-align: center;
841
+ clear:both
842
+ }
843
+ .s1s h2 {
844
+ border:none;
845
+ font: bold 18px Arial;
846
+ padding: 10px 5px 0;
847
+ }
848
+ .s1s h2 small {
849
+ font-size:11px;
850
+ margin:0 15px
851
+ }
852
+ .s2 {
853
+ width:225px;
854
+ float:right
855
+ }
856
+ .rb, .qt, .aw {
857
+ border-color: #EAEAEA;
858
+ border-style: solid;
859
+ border-width: 1px 1px 2px;
860
+ margin-bottom: 20px;
861
+ -moz-border-radius:5px;
862
+ -webkit-border-radius:5px
863
+ }
864
+ .s2 h4 {
865
+ background:#C3DCFC;
866
+ font-size: 13px;
867
+ padding: 5px 10px;
868
+ }
869
+ .rb li {
870
+ background: url(/crm/images/s2a.png) no-repeat 10px 6px;
871
+ display: block;
872
+ line-height: 20px;
873
+ margin: 5px 5px 8px;
874
+ padding-left: 30px;
875
+ }
876
+ .tc {
877
+ padding:5px
878
+ }
879
+ blockquote {
880
+ color: #555;
881
+ font: italic 14px/22px Georgia, Arial, Verdana, helevitica;
882
+ padding: 10px;
883
+ border-bottom:1px dotted #ddd;
884
+ margin:0 0 5px
885
+ }
886
+ .aw a {
887
+ background-position: 0 -507px;
888
+ float: left;
889
+ height: 162px;
890
+ margin-left: 12px;
891
+ text-indent: -999em;
892
+ width: 200px;
893
+ margin-bottom:10px
894
+ }
895
+ .s2 .more {
896
+ margin-bottom: 15px;
897
+ margin-top: -17px;
898
+ }
899
+ .follow-us-Block {
900
+ border:medium none;
901
+ padding:0px 0px 15px 15px;
902
+ overflow:auto;
903
+ }
904
+ .bot-fl {
905
+ padding:15px 0px 0px 10px;
906
+ }
907
+ .bot-pad {
908
+ padding:0px 0px 0px 4px;
909
+ }
910
+ .fub {
911
+ padding-left:10px
912
+ }
913
+ .fub ul {
914
+ float:left;
915
+ margin:0;
916
+ padding:5px 0 0;
917
+ position:relative
918
+ }
919
+ .fub li {
920
+ float:left;
921
+ list-style:none;
922
+ width:auto;
923
+ padding-bottom:5px
924
+ }
925
+ li.like-it {
926
+ width:76px;
927
+ margin-left:5px
928
+ }
929
+ .fub li a {
930
+ float:left;
931
+ list-style:none;
932
+ width:20px;
933
+ height:20px;
934
+ margin:0 6px
935
+ }
936
+ .linked-in-icon a {
937
+ background-position:-237px -648px
938
+ }
939
+ .twit-icon a {
940
+ background-position:-237px -616px
941
+ }
942
+ .face-bk-icon a {
943
+ background-position:-237px -584px
944
+ }
945
+ .fw {
946
+ background-repeat:repeat-x;
947
+ background-position:0 -1134px;
948
+ background-color:#D3E5FD;
949
+ border-top:1px solid #BDCCE1;
950
+ background-image: url("/crm/images/zoho-crm-bgs.png")
951
+ }
952
+ .f {
953
+ margin:0 auto;
954
+ padding:15px 0;
955
+ width:990px
956
+ }
957
+ .fl {
958
+ border-right:1px dotted #B7D0F2;
959
+ float:left;
960
+ min-height:220px;
961
+ width:233px
962
+ }
963
+ .fl ul {
964
+ line-height:16px;
965
+ list-style:none outside none;
966
+ margin:0;
967
+ padding-left:25px
968
+ }
969
+ .fl li {
970
+ display:list-item;
971
+ padding-bottom:5px
972
+ }
973
+ .fl h4 {
974
+ font-size:15px;
975
+ padding-bottom:10px
976
+ }
977
+ .fl a {
978
+ color:#3671A1;
979
+ font-size:13px;
980
+ line-height:1.6em
981
+ }
982
+ li.la {
983
+ font-size:15px;
984
+ font-weight:bold
985
+ }
986
+ .fw .fub {
987
+ padding-left:15px
988
+ }
989
+ .fw .fub ul {
990
+ padding-left:5px;
991
+ margin-bottom:10px
992
+ }
993
+ .cop {
994
+ border-top:1px dotted #B7D0F2;
995
+ clear:both;
996
+ font-size:11px;
997
+ margin:15px auto 0;
998
+ padding:10px 0;
999
+ text-align:center;
1000
+ width:990px;
1001
+ line-height:24px
1002
+ }
1003
+ .cop p {
1004
+ font-size:11px;
1005
+ margin-bottom:15px
1006
+ }
1007
+ .la {
1008
+ border:none
1009
+ }
1010
+ .te {
1011
+ position:relative
1012
+ }
1013
+ .te span {
1014
+ background-position:0px -464px;
1015
+ height:36px;
1016
+ left:0;
1017
+ position:absolute;
1018
+ top:-14px;
1019
+ width:100px;
1020
+ cursor:pointer
1021
+ }
1022
+ .cop a {
1023
+ margin:25px 5px
1024
+ }
1025
+ </style>
1026
+
1027
+ </head>
1028
+ <body>
1029
+ <iframe height=0 width=0 frameborder=0 scrolling=no src="https://accounts.zoho.com/login?servicename=ZohoCRM&serviceurl=/crm/ShowHomePage.do"></iframe>
1030
+ <div class="hc">
1031
+ <div class="h">
1032
+ <div class="l"> <a href="/crm/" title="Zoho CRM - Affordable On-demand CRM Software"><span>Zoho CRM</span> <img src="/crm/images/zoho-crm-new.png" alt="Affordable On-demand CRM Software" width="225" height="43" /></a> <span>Affordable On-demand CRM Software</span></a> </div>
1033
+ <div class="tn">
1034
+ <ul>
1035
+ <li><a href="//forums.zoho.com/zoho-crm">Forums</a> </li>
1036
+ <li><a href="//blogs.zoho.com/category/crm">Blogs</a> </li>
1037
+ <li><a href="/support.html">Support</a></li>
1038
+ <li> <a href="/crm/call-me.html">Contact Us</a></li>
1039
+ <li class="su"> <a onClick="_gaq.push(['_trackEvent', 'crm1', 'top', 'signup']);" title="Get Started Now" href="/crm/lp/signup.html">Sign Up Free!</a></li>
1040
+ <li class="si"><a href="/crm/lp/login.html" title="Existing User: Sign in now!">Sign In</a></li>
1041
+ </ul>
1042
+ <div class="scb">
1043
+ <p>Follow Zoho CRM</p>
1044
+ <ul>
1045
+ <li class="twit-icon"><a title="Zoho CRM on Twitter" target="_blank" onClick="pageTracker._trackEvent('Top','crm1', 'TW')" href="//twitter.com/zohocrm"></a></li>
1046
+ <li class="face-bk-icon"><a title="Zoho CRM on Facebook" target="_blank" onClick="pageTracker._trackEvent('Top','crm1', 'FB')" href="//www.facebook.com/zohocrm"></a></li>
1047
+ <li class="link-in-icon"><a title="Zoho CRM on Linked In" target="_blank" onClick="pageTracket._trackEvent('Top', 'crm1', 'Lkin')" href="http://www.linkedin.com/groups?mostPopular=&gid=52947"></a></li>
1048
+ </ul>
1049
+ </div>
1050
+ </div>
1051
+ <ul class="mn">
1052
+ <li><a href="/crm/features.html">Features </a></li>
1053
+ <li><a href="/crm/integration/add-ons-integrations.html"> Add-ons</a></li>
1054
+ <li><a href="//zohocrmapi.wiki.zoho.com" target="_blank"> Developers </a></li>
1055
+ <li><a href="/crm/help/"> CRM Resources </a></li>
1056
+ <li><a href="/crm/zohocrm-pricing.html"> Pricing &amp; Signup </a></li>
1057
+ <li><a href="/crm/zohocrm-community.html"> Connect with Us</a></li>
1058
+ </ul>
1059
+ <h1>Build, Maintain &amp; Strengthen your Customer Relationships</h1>
1060
+ <div class="coda-slider-wrapper">
1061
+ <div class="coda-slider preload" id="coda-slider-1">
1062
+ <div class="panel">
1063
+ <div class="is"> <img src="/crm/images/zohocrm-salesforce-automation.png" width="610" height="347" title="Sales force automation" alt="Sales force automation" /> </div>
1064
+ <div class="cs">
1065
+ <h2>Sales Force Automation</h2>
1066
+ <ul>
1067
+ <li>Automate sales process and close more deals</li>
1068
+ <li>Customize &amp; share sales reports and dashboards</li>
1069
+ <li>Forecast revenue for the upcoming fiscal quarters</li>
1070
+ </ul>
1071
+ <p><a href="/crm/lp/signup.html" title="Sign Up Now!" onClick="_gaq.push(['_trackEvent', 'crm1', 'slideraction', 'saf']);">Sign Up Now!</a></p>
1072
+ </div>
1073
+ </div>
1074
+ <div class="panel">
1075
+ <div class="is"> <img src="/crm/images/zohocrm-product-customization.png" width="610" height="347" title="Product Customization" alt="Product Customization" /> </div>
1076
+ <div class="cs">
1077
+ <h2>Customization &amp; Security</h2>
1078
+ <ul>
1079
+ <li>Customize Zoho CRM to suit your business needs</li>
1080
+ <li>Control data access with Enterprise-grade security</li>
1081
+ <li>Set up multi-level organizational hierarchy</li>
1082
+ </ul>
1083
+ <p><a href="/crm/lp/signup.html" title="Sign Up Now!" onClick="_gaq.push(['_trackEvent', 'crm1', 'slideraction', 'security']);">Sign Up Now!</a></p>
1084
+ </div>
1085
+ </div>
1086
+ <div class="panel">
1087
+ <div class="is"> <img src="/crm/images/zohocrm-with-email.png" width="610" height="347" title="Full-fledged CRM with Email" alt="Full-fledged CRM with Email" /> </div>
1088
+ <div class="cs">
1089
+ <h2>Full-fledged CRM with Email</h2>
1090
+ <ul>
1091
+ <li>Send &amp; receive emails without leaving Zoho CRM</li>
1092
+ <li>Share selected customer emails with colleagues</li>
1093
+ <li>Integrate with Gmail, Yahoo, Hotmail etc.</li>
1094
+ </ul>
1095
+ <p><a href="/crm/lp/signup.html" title="Sign Up Now!" onClick="_gaq.push(['_trackEvent', 'crm1', 'slideraction', 'email']);">Sign Up Now!</a></p>
1096
+ </div>
1097
+ </div>
1098
+ <div class="panel">
1099
+ <div class="is"> <img src="/crm/images/zohocrm-googleapps-integration.png" width="610" height="347" title="Integration with Google Apps" alt="Integration with Google Apps" /> </div>
1100
+ <div class="cs">
1101
+ <h2>Collaboration with Google Apps</h2>
1102
+ <ul>
1103
+ <li>Contextually integrate Gmail with your Zoho CRM</li>
1104
+ <li>Publish Web Forms from CRM to Google Sites </li>
1105
+ <li>Export events from CRM to Google Calendar</li>
1106
+ </ul>
1107
+ <p><a href="/crm/lp/signup.html" title="Sign Up Now!" onClick="_gaq.push(['_trackEvent', 'crm1', 'slideraction', 'gapp']);">Sign Up Now!</a></p>
1108
+ </div>
1109
+ </div>
1110
+ </div>
1111
+ <div class="coda-nav" id="coda-nav-1">
1112
+ <ul>
1113
+ <li class="tab1"><a title="Sales Force Automation" href="#1">Automation</a></li>
1114
+ <li class="tab2"><a title="Full-fledged CRM with Email" href="#2">Customization</a></li>
1115
+ <li class="tab3"><a title="Product Customization &amp; Security" href="#3">Integration</a></li>
1116
+ <li class="tab4"><a title="Integration with Google Apps" href="#4">Collaboration</a></li>
1117
+ </ul>
1118
+ </div>
1119
+
1120
+ </div>
1121
+ <p class="d">Zoho CRM offers you a complete customer relationship life-cycle management software for managing Sales, Marketing, Customer Support, and Inventory activities in a single system. It is simple to use, yet packed with features for automation, customization, integration, and collaboration that allow you to grow your business and have a 360-degree view of your customer interactions.</p>
1122
+ </div>
1123
+ </div>
1124
+ <div class="cc cB">
1125
+ <div class="s1">
1126
+ <div class="fb fe">
1127
+ <h2>Key Features</h2>
1128
+ <ol>
1129
+ <li>
1130
+ <h3><a href=/crm/sales-force-automation.html><span class=i1></span>Sales &amp; Marketing</a></h3>
1131
+ <p>Zoho CRM aligns your <a href="/crm/sales-force-automation.html">Sales and Marketing</a> by integrating sales with campaigns, web forms, leads, sales pipeline, forecasts, etc.</p>
1132
+ </li>
1133
+ <li>
1134
+ <h3><a href=/crm/crm-email.html><span class=i2></span>CRM with Email</a></h3>
1135
+ <p>Track all your customers email correspondence inside Zoho CRM. You <a href="/crm/crm-email.html">don't need to CC or BCC</a> emails to a particular email address.</p>
1136
+ </li>
1137
+ <li>
1138
+ <h3><a href=/crm/outlook-edition.html><span class=i3></span>Plug-in for Microsoft Outlook &amp; Office</a></h3>
1139
+ <p>Improve business productivity by synchronizing contacts and creating mail merge docs.<br/>
1140
+ <a href=outlook-edition.html>Plug-in for MS Outlook</a> | <a href=/crm/office-plug-in.html> MS Office</a> </p>
1141
+ </li>
1142
+ <li>
1143
+ <h3><a href=/crm/order-management.html><span class=i4></span>Inventory Management</a></h3>
1144
+ <p>Zoho CRM empowers you to complete the post-sales activities with an <a href="/crm/order-management.html">integrated inventory management</a> system.</p>
1145
+ </li>
1146
+ <li>
1147
+ <h3><a href="//zohocrmapi.wiki.zoho.com"><span class=i5></span>CRM API for Third-party Integration</a></h3>
1148
+ <p><a href="//zohocrmapi.wiki.zoho.com">Developer API</a> for integrating Zoho CRM modules with third-party business software, such as accounting, ERP, etc.<br>
1149
+ <br>
1150
+ </p>
1151
+ </li>
1152
+ <li>
1153
+ <h3><a href="//zohocrm.wiki.zoho.com/Customizing-Zoho-CRM.html"><span class=i6></span>Extensive Product Customization</a></h3>
1154
+ <p>Drag-and-drop UI tools and custom fields to <a href="//zohocrm.wiki.zoho.com/Customizing-Zoho-CRM.html">customize Zoho CRM</a> as per your business process. <br/>
1155
+ </p>
1156
+ </li>
1157
+ <li>
1158
+ <h3> <a href=/crm/role-based-security.html><span class=i7></span>Role-based Security </a></h3>
1159
+ <p>Zoho CRM empowers you to control the <a href="/crm/role-based-security.html">CRM data access</a> based on users' job role in your organization hierarchy.</p>
1160
+ </li>
1161
+ <li>
1162
+ <h3><a href=/crm/reports-dashboards.html><span class=i8></span>Reports & Dashboards</a></h3>
1163
+ <p>Zoho CRM helps you to analyze sales & marketing trends and <a href="/crm/reports-dashboards.html">key CRM metrics</a> by reports and dashboards.</p>
1164
+ </li>
1165
+ </ol>
1166
+ </div>
1167
+ <div class="fb ao">
1168
+ <h2>Popular CRM Add-ons</h2>
1169
+ <ul>
1170
+ <li><a class=a1 href=/crm/zohocrm-for-googleapps.html>Zoho CRM for Google Apps<span></span></a></li>
1171
+ <li> <a class=a2 href=/crm/outlook-edition.html>Zoho CRM Plug-in for MS Outlook<span></span></a></li>
1172
+ <li><a class=a3 href="/crm/integration/quickbooks-integration.html">Zoho CRM Intn with QuickBooks<span></span></a></li>
1173
+ <li> <a class=a4 href=/crm/crm-email.html>Integrate CRM with Zoho Mail<span></span></a></li>
1174
+ <li> <a class=a6 href="/crm/integration/zoho-projects-collaboration.html">Integration with Zoho Projects<span></span></a></li>
1175
+ </ul>
1176
+ <p class=more><a href="/crm/integration/add-ons-integrations.html">View all Add-ons</a></p>
1177
+ </div>
1178
+ <div class="s1s">
1179
+ <h2><a title="Sign up for Free CRM Software" onClick="_gaq.push(['_trackEvent', 'crm1', 'signup', 'crm-registration-footer2']);" href="https://www.zoho.com/crm/lp/signup.html" rel="nofollow">Signup for Free</a> <small>(Or)</small> <a title="Request for a CRM Demo" onClick="_gaq.push(['_trackEvent', 'crm1', 'lead', 'demofoo2']);" href="/crm/crm-demo.html">Request a Demo</a></h2>
1180
+ <p>Free Customer Relationship Management (CRM) Software for 3 Users<br/>
1181
+ Paid Edition starts @ USD12 /month, per user</p>
1182
+ </div>
1183
+ <div class=fb>
1184
+ <h2>Your Benefits</h2>
1185
+ <ol>
1186
+ <li><span class=i9>1</span>
1187
+ <p><strong>Award-winning, complete CRM software.</strong> Zoho CRM offers all the CRM modules and tools that you might need to run your sales & marketing.</p>
1188
+ </li>
1189
+ <li><span class=i9>2</span>
1190
+ <p><strong>Value for your money.</strong> We not only provide a great CRM software, but also have a great price too. Professional Editon is only $12 /month, per user. No strings attached!</p>
1191
+ </li>
1192
+ <li><span class=i9>3</span>
1193
+ <p><strong>No long term contracts, pay as you go.</strong> You are not bound by any long-term, yearly contracts. You have the flexibility of paying monthly or yearly.</p>
1194
+ </li>
1195
+ <li><span class=i9>4</span>
1196
+ <p><strong>It's all hosted.</strong> When you choose Zoho CRM, we do the hard work for you. You do not have to buy expensive servers, software, backup solutions, etc. Just focus on selling and leave the rest to us.</p>
1197
+ </li>
1198
+ <li><span class=i9>5</span>
1199
+ <p><strong>Ease of Customization. </strong>We understand your need to customize our service to your specific needs. Our drag-and-drop customization helps you get things done fast.</p>
1200
+ </li>
1201
+ <li><span class=i9>6</span>
1202
+ <p><strong>It's not just CRM.</strong> When you create a Zoho CRM account, you also get access to the Zoho suite of products - from online storage and web meetings to other online business software, such as project management, invoices and more.</p>
1203
+ </li>
1204
+ </ol>
1205
+ </div>
1206
+ </div>
1207
+ <div class="s2">
1208
+ <div class="rb">
1209
+ <h4>Next Steps</h4>
1210
+ <ul>
1211
+ <li><a title="CRM Software demo" onClick="_gaq.push(['_trackEvent', 'crm1', 'lead', 'demo']);" href=/crm/crm-demo.html><strong>Request a Demo</strong></a></li>
1212
+ <li><a title="Sign up for Free CRM Software" onClick="_gaq.push(['_trackEvent', 'crm1', 'signup', 'rhs2']);" href="/crm/lp/signup.html">Sign up for Free</a></li>
1213
+ <li><a href=/crm/zohocrm-pricing.html>Compare CRM Editions</a></li>
1214
+ <li><a onClick="_gaq.push(['_trackEvent', 'crm1', 'lead', 'quote']);" href=/crm/request-quote.html><strong>Get a Price Quote</strong></a></li>
1215
+ <li><a onClick="_gaq.push(['_trackEvent', 'crm1', 'lead', 'demo']);" href=/crm/online-demo.html>Online CRM Demo</a></li>
1216
+ </ul>
1217
+ </div>
1218
+ <div class="qt">
1219
+ <h4>Customer Buzz</h4>
1220
+ <div class="tc">
1221
+ <blockquote> <a target="_blank" href="//twitter.com/jfloyd/status/2819227421" rel="nofollow"> jfloyd</a> Zoho CRM adds the ability to manage your email from within the application. Only CRM Software that I know has this feature </blockquote>
1222
+ <blockquote><a target="_blank" href="//twitter.com/craigdonnelly/status/13919972011" rel="nofollow">craigdonnelly</a> We just migrated our CRM system from salesforce.com to zoho CRM. Annual cost for Salesforce was $1600. Cost for zoho is $300</blockquote>
1223
+ <blockquote><a target="_blank" href="//twitter.com/#!/jdrumgoole/status/24242928515817472" rel="nofollow">jdrumgoole</a> @paulmwatson if you are using Google Apps I can recommend Zoho CRM for its excellent integration with gmail.</blockquote>
1224
+ <blockquote><a target="_blank" href="http://keyconsulting.ca/" rel="nofollow">Key Consulting</a> I've been using the Zoho CRM software to centralize my email <br>
1225
+ marketing and CRM functions in one place and have found it to be a great and very easy to use system.</blockquote>
1226
+ </div>
1227
+ </div>
1228
+ <p class="more"><a title="More Happy CRM Customers" href=/crm/zohocrm-awards-testimonials.html>More Testimonials</a></p>
1229
+ <div class="aw">
1230
+ <h4>Featured In</h4>
1231
+ <div class="cB"><a href="/awards.html" target="_blank">Zoho Awards</a></div>
1232
+ </div>
1233
+ <div class="fub">
1234
+ <p>Spread the Word:</p>
1235
+ <ul>
1236
+ <li class="face-bk-icon"><a rel="nofollow" href="//www.facebook.com/zohocrm" onClick="_gaq.push(['_trackEvent', 'social', 'crm1middle', 'fb']);" target="_blank" title="Zoho CRM on Facebook"></a></li>
1237
+ <li class="twit-icon"><a rel="nofollow" href="//twitter.com/zohocrm" onClick="_gaq.push(['_trackEvent', 'social', 'crm1middle', 'tw']);" target="_blank" title="Zoho CRM on Twitter"></a></li>
1238
+ <li class="linked-in-icon"><a rel="nofollow" href="http://www.linkedin.com/groups?mostPopular=&amp;gid=52947" onClick="_gaq.push(['_trackEvent', 'social', 'crm1middle', 'ln']);" target="_blank" title="Zoho CRM on Linkedin"></a></li>
1239
+ </ul>
1240
+ </div>
1241
+ </div>
1242
+ </div>
1243
+ <div class=fw>
1244
+ <div class=f>
1245
+ <div class=fl>
1246
+ <ul>
1247
+ <li>
1248
+ <h4>CRM Software | Features</h4>
1249
+ </li>
1250
+ <li><a href=/crm/sales-force-automation.html>Sales Force Automation</a></li>
1251
+ <li><a href=/crm/marketing-automation.html>Marketing Automation</a></li>
1252
+ <li><a href=/crm/web-forms.html>Web Forms</a></li>
1253
+ <li><a href=/crm/order-management.html>Inventory Management</a></li>
1254
+ <li><a href=/crm/contact-manager.html>Contact Management Software</a></li>
1255
+ <li><a href="/crm/integration/add-ons-integrations.html">CRM Add-ons &amp; Integrations</a></li>
1256
+ <li><a href="/crm/call-center/index.html">Call Center CRM Software</a></li>
1257
+ </ul>
1258
+ </div>
1259
+ <div class=fl>
1260
+ <ul>
1261
+ <li>
1262
+ <h4>CRM Resource Center</h4>
1263
+ </li>
1264
+ <li><a title="Online CRM Software Demo" href=/crm/online-demo.html>Online CRM Demo</a></li>
1265
+ <li><a href=/crm/crm-videos.html>CRM Videos</a></li>
1266
+ <li><a href="//zohocrm.wiki.zoho.com/" rel="nofollow">Online CRM Help</a></li>
1267
+ <li><a href="//zohocrmapi.wiki.zoho.com/" rel="nofollow">Developer API</a></li>
1268
+ <li><a href="//crmkbase.zoho.com/" rel="nofollow">FAQ &amp; Knowledge Base</a></li>
1269
+ <li><a href="//forums.zoho.com/Zoho-CRM" rel="nofollow">CRM Forums</a></li>
1270
+ <li><a href="//blogs.zohocrm.com/">CRM Blogs</a></li>
1271
+ </ul>
1272
+ </div>
1273
+ <div class=fl>
1274
+ <ul>
1275
+ <li>
1276
+ <h4>About CRM Software</h4>
1277
+ </li>
1278
+ <li><a href=/crm/what-is-crm.html>What is CRM Software?</a></li>
1279
+ <li><a href="http://lounge.zohocrm.com/link/Who-needs-CRM-software" rel="nofollow">Who needs CRM Software?</a></li>
1280
+ <li><a href=/crm/crm-evaluation.html>How to Evaluate CRM Software?</a></li>
1281
+ <li><a href=/crm/buy-crm.html>How to Buy CRM Software?</a></li>
1282
+ <li><a href=/crm/price-calculator.html>Compare CRM Software</a></li>
1283
+ <li><a href=/crm/new-to-crm.html>New to CRM?</a></li>
1284
+ </ul>
1285
+ </div>
1286
+ <div class="fl la">
1287
+ <ul>
1288
+ <li>
1289
+ <h4>Other Zoho Apps</h4>
1290
+ </li>
1291
+ <li><a href="/support/index.html?src=crm">Customer Support Software</a></li>
1292
+ <li><a href="/recruit/index.html?src=crm">Recruitment Software</a></li>
1293
+ <li><a href="/projects/index.html?src=crm">Project Management Software</a></li>
1294
+ <li><a href="/books/index.html?src=crm">Accounting Software</a></li>
1295
+ <li><a href="/creator/index.html?src=crm">Database App Software</a></li>
1296
+ </ul>
1297
+ <div class="fub">
1298
+ <p class="bot-fl">Follow Us On:</p>
1299
+ <ul>
1300
+ <li class="face-bk-icon"><a title="Zoho CRM on Facebook" target="_blank" onClick="_gaq.push(['_trackEvent', 'social', 'crm1bot', 'fb']);" href="//www.facebook.com/zohocrm" rel="nofollow"></a></li>
1301
+ <li class="twit-icon"><a title="Zoho CRM on Twitter" target="_blank" onClick="_gaq.push(['_trackEvent', 'social', 'crm1bot', 'tw']);" href="//twitter.com/zohocrm" rel="nofollow"></a></li>
1302
+ <li class="linked-in-icon"><a title="Zoho CRM on Linkedin" target="_blank" onClick="_gaq.push(['_trackEvent', 'social', 'crm1bot', 'ln']);" href="http://www.linkedin.com/groups?mostPopular=&gid=52947" rel="nofollow"></a></li>
1303
+ </ul>
1304
+ </div>
1305
+ </div>
1306
+ </div>
1307
+ <div class=cop>
1308
+ <p>&copy; 2011, ZOHO Corp.<span> Affordable On-demand, Web-based <a href="/crm/">Customer Relationship Management (CRM) Software</a></span><br>
1309
+ ZOHO Corporation, 4900 Hopyard Rd, Suite 310, Pleasanton, CA 94588, USA | Support: +1 888 204-3539 | Sales: +1 888-900-9646<br>
1310
+ The names and logos for Zoho are trademarks of Zoho Corp. All other trademarks, brand names, or product names belong to their respective holders.</p>
1311
+ <a href="/">Zoho Home</a> - <a href="/privacy.html" rel="nofollow">Privacy Policy</a> - <a href="/terms.html" rel="nofollow">Terms of Service</a> - <a href="/ipr_complaints.html" rel="nofollow">IPR Complaints</a> - <a href="/policy.html" rel="nofollow">Anti-spam Policy</a>- <a href="/company.html" rel="nofollow"><strong>About Us</strong></a> - <a href=sitemap.html rel="nofollow">Sitemap</a> <a target=_blank class=te href="//clicktoverify.truste.com/pvr.php?page=validate&amp;url=www.Zoho.com&amp;sealid=102" rel="nofollow">TRUSTe<span></span></a></div>
1312
+ </div>
1313
+ <script type="text/javascript" src="/crm/includes/jquery-home.js"></script>
1314
+ <script type="text/javascript" src="https://s3.amazonaws.com/new.cetrk.com/pages/scripts/0010/2590.js"> </script>
1315
+ <script type="text/javascript">$().ready(function() { $('#coda-slider-1').codaSlider({ dynamicArrows: false, dynamicTabs: false, autoSlide: true, autoSlideInterval: 12000, autoSlideStopWhenClicked: true }); }); </script>
1316
+ <script type="text/javascript">
1317
+ var _gaq = _gaq || [];
1318
+ _gaq.push(['_setAccount', 'UA-2544340-2']);
1319
+ _gaq.push(['_setDomainName', '.zoho.com']);
1320
+ _gaq.push(['_trackPageview']);
1321
+ (function() {
1322
+ var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
1323
+ ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') + '.google-analytics.com/ga.js';
1324
+ var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
1325
+ })();
1326
+ </script>
1327
+ </body>
1328
+ </html>
1329
+ http_version: "1.1"