customer-support.html
4.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
<!doctype html>
<html lang="en">
<head>
<!-- Required meta tags -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<!-- Bootstrap CSS -->
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/css/bootstrap.min.css" integrity="sha384-MCw98/SFnGE8fJT3GXwEOngsV7Zt27NXFoaoApmYm81iuXoPkFOJwJ8ERdknLPMO" crossorigin="anonymous">
<!-- CUSTOM CSS -->
<link rel="stylesheet" href="css/custom.css">
<title>Customer Support</title>
</head>
<body>
<div class="container-fluid h-100">
<div class="d-block d-md-none showmenu">
<button class="btn btn-block bg-transparent text-white">show Menu</button>
</div>
<div class="row h-100">
<div class="sidebar">
<ul >
<li>
<a href="index.html">01. Introduction to A.D.A.M. Interactive Anatomy</a>
</li>
<li>
<a href="whats-new-in-adam-interactive-anatomy.html">02. What's New in A.D.A.M. Interactive Anatomy?</a>
</li>
<li class="active">
<a href="customer-support.html">03. Customer Support</a>
</li>
<li>
<a href="system-requirements.html">04. System Requirements</a>
</li>
<li>
<a href="getting-started.html">05. Getting Started</a>
</li>
<li>
<a href="working-with-dissectible-anatomy.html">06. Working with Dissectible Anatomy</a>
</li>
<li>
<a href="working-with-atlas-anatomy.html">07. Working with Atlas Anatomy</a>
</li>
<li>
<a href="working-3d-anatomy.html">08. Working with 3D Anatomy</a>
</li>
<li>
<a href="working-curriculum-builder.html">09. Working with Curriculum Builder</a>
</li>
<li>
<a href="working-lab-exercise.html">10. Working with LAB Exercises</a>
</li>
</ul>
</div>
<div class="content">
<h2 class="panel-heading">Customer Support</h2>
<div class="col-12">
<p>For information on technical questions or if you have a problem using A.D.A.M. Interactive Anatomy, you can contact A.D.A.M. Technical Support.</p>
<p>A.D.A.M. Interactive Anatomy has an extensive help section to assist you in using the program. To display the help section of the program, click Help Topics on the Help menu.
If you have technical difficulties with the program (for example, access is denied), contact your system administrator, or for single user licenses, e-mail technical support at <a href="mailto:education.support@ebix.com">education.support@ebix.com</a></p>
<p><strong>Before you contact Technical Support, check:</strong></p>
<ul>
<li>Does your computer meet the product's system requirements? (System Requirements)</li>
<li>Are you accessing AIA from an institution's web site? If so, please contact your system administrator. </li>
</ul>
<p><strong>How to contact A.D.A.M. Technical Support:</strong></p>
<div class="row">
<div class="col-md-4 mb-3 mb-md-0">
<div class="card h-100">
<div class="card-header bg-dark text-white">
Email
</div>
<div class="card-body">
<a href="mailto:EducationSupport@Ebix.com ">EducationSupport@Ebix.com </a>
</div>
</div>
</div>
<div class="col-md-4 mb-3 mb-md-0">
<div class="card h-100">
<div class="card-header bg-dark text-white">
Web
</div>
<div class="card-body">
<a href="http://www.adam.com/product-support" target="_blank">http://www.adam.com/product-support </a>
</div>
</div>
</div>
<div class="col-md-4 mb-3 mb-md-0">
<div class="card h-100">
<div class="card-header bg-dark text-white">
Mail
</div>
<div class="card-body">
A.D.A.M., INC. <br>
C/O Technical Support <br>
1 Ebix Way <br>
Johns Creek, GA 30097 <br>
USA
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<!-- Optional JavaScript -->
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.14.3/umd/popper.min.js" integrity="sha384-ZMP7rVo3mIykV+2+9J3UJ46jBk0WLaUAdn689aCwoqbBJiSnjAK/l8WvCWPIPm49" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>
<script>
$(document).ready(function(){
$('.showmenu button').on('click', function(){
$('.sidebar').toggleClass('show');
});
});
</script>
</body>
</html>