· 8 years ago · Aug 05, 2018, 02:10 PM
1<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
2 "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml">
4<head>
5<title style="color: #990000;">AcuityLogic Optical Software Suite</title>
6<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
7<meta name="description" content="AcuityLogic Optical Software Suite" />
8<style type="text/css">
9
10body {
11 background: #f2f2f2;
12 font: small verdana, helvetica, arial, sans-serif;
13}
14
15#wrapper {
16 width: 400px;
17}
18
19h1 {
20 clear: left;
21 font: bold 180% Arial, Helvetica, sans-serif;
22 margin-top: 20px;
23 color: #ff0000;
24}
25
26#links {
27 margin-top: 20px;
28 float: left;
29}
30
31#links ul {
32 list-style-type: none;
33 width: 200px;
34}
35
36#links li {
37 border: 1px dotted #999;
38 border-width: 1px 0;
39 margin: 5px 0;
40}
41
42#links li a {
43 color: #990000;
44 display: block;
45 font: bold 120% Arial, Helvetica, sans-serif;
46 padding: 5px;
47 text-decoration: none;
48}
49
50* html #links li a {
51 width: 200px;
52}
53
54#links li a:hover {
55 background: #ffffdd;
56}
57
58#links a em {
59 color: #333;
60 display: block;
61 font: normal 85% Verdana, Arial, Helvetica, sans-serif;
62 line-height: 125%;
63}
64
65#links a span {
66 color: #125F15;
67 font: normal 70% Verdana, Arial, Helvetica, sans-serif;
68 line-height: 150%;
69}
70
71</style>
72</head>
73<body>
74<script language="javascript" type="text/javascript">
75 var WindowObjectReference = null; // global variable
76 var WindowObjectReferenceBilling = null; // global variable
77 var WindowObjectReferenceXLink = null; // global variable
78 var WindowObjectReferenceAdmin = null; // global variable
79 var WindowObjectReferenceBackOffice = null; // global variable
80 var WindowObjectReferenceDC = null; // global variable
81
82
83 function OpenBlink()
84 {
85 //alert('Blink: ' + WindowObjectReference);
86 if(WindowObjectReference == null || WindowObjectReference.closed)
87 /* if the pointer to the window object in memory does not exist
88 or if such pointer exists but the window was closed */
89 {
90 WindowObjectReference = window.open('POS','BlinkWindow','fullscreen=yes,scrollbars=1,toolbar=0,menubar=0,location=no');
91 /* then create it. The new window will be created and
92 will be brought on top of any other window. */
93 }
94 else
95 {
96 alert('A AcuityLogic Session is already open.');
97 WindowObjectReference.focus();
98 /* else the window reference must exist and the window
99 is not closed; therefore, we can bring it back on top of any other
100 window with the focus() method. There would be no need to re-create
101 the window or to reload the referenced resource. */
102 }
103 }
104
105 function OpenBilling()
106 {
107 if(WindowObjectReferenceBilling == null || WindowObjectReferenceBilling.closed)
108 {
109 WindowObjectReferenceBilling = window.open
110
111('billing','BillingWindow','fullscreen=yes,scrollbars=1,toolbar=0,menubar=0,location=no');
112 }
113 else
114 {
115 WindowObjectReferenceBilling.focus();
116 }
117 }
118
119 function OpenAdmin()
120 {
121 if(WindowObjectReferenceAdmin == null || WindowObjectReferenceAdmin.closed)
122 {
123 WindowObjectReferenceAdmin = window.open('admin','AdminWindow','fullscreen=yes,scrollbars=1,toolbar=0,menubar=0,location=no');
124
125
126 }
127 else
128 {
129 WindowObjectReferenceAdmin.focus();
130 }
131 }
132
133 function OpenBackOffice()
134 {
135 if(WindowObjectReferenceBackOffice == null || WindowObjectReferenceBackOffice.closed)
136 {
137 WindowObjectReferenceBackOffice = window.open
138
139('backoffice','BackOfficeWindow','fullscreen=yes,scrollbars=1,toolbar=0,menubar=0,location=no');
140 }
141 else
142 {
143 WindowObjectReferenceBackOffice.focus();
144 }
145 }
146
147 function OpenDC()
148 {
149 if(WindowObjectReferenceDC == null || WindowObjectReferenceDC.closed)
150 {
151 WindowObjectReferenceDC = window.open('dc','DCWindow','fullscreen=yes,scrollbars=1,toolbar=0,menubar=0,location=no');
152
153
154 }
155 else
156 {
157 WindowObjectReferenceDC.focus();
158 }
159 }
160
161</script>
162<table align="center"><tr><td>
163<div id="wrapper">
164 <h1>DO NOT ENTER NEW ORDERS OR PROCESS REMAKES HERE</h1>
165<h1>YOU MAY CHANGE THE ORDER STATUS HERE FOR JOBS YOU ARE DISPENSING. DO NOT EDIT ANY OTHER ITEM</h1>
166
167 <div id="links">
168 <ul>
169 <li>
170
171 <a href="#" onclick="OpenBlink()" title="POS">POS
172 <em>Point of Sale</em>
173 </a>
174 </li>
175 <li>
176 <a href="#" onclick="OpenAdmin()" title="Admin">Admin
177 <em>Admin</em>
178 </a>
179 </li>
180 <li>
181 <a href="#" onclick="OpenBackOffice()" title="BackOffice">BackOffice
182 <em>BackOffice</em>
183 </a>
184
185 </li>
186 <li>
187 <a href="#" onclick="OpenBilling()" title="Billing">Billing
188 <em>Billing</em>
189 </a>
190 </li>
191 <li>
192 <a href="#" onclick="OpenDC()" title="DC">DC
193 <em>DC</em>
194 </a>
195 </li>
196 </ul>
197 </div>
198</div>
199</td></tr></table>
200</body>
201</html>