-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathfaq.html
51 lines (50 loc) · 1.51 KB
/
faq.html
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<script type="text/javascript" src="//ajax.googleapis.com/ajax/libs/jquery/1.3.2/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.url.packed.js"></script>
<script type="text/javascript">
<!--
$(function () {
var anchor = jQuery.url.attr("anchor");
var utm_source = jQuery.url.param("utm_source");
var utm_medium = jQuery.url.param("utm_medium");
if (!anchor) {
if (utm_source && utm_medium) {
location.href='help.html?utm_source=' + utm_source + '&utm_medium=' + utm_medium;
}
else {
location.href='help.html';
}
}
else if (anchor.search(/sms/i) != -1) {
if (utm_source && utm_medium) {
location.href='help_real_time_info.html?utm_source=' + utm_source + '&utm_medium=' + utm_medium + '#sms-alert';
}
else {
location.href='help_real_time_info.html#sms-alert';
}
}
else if (anchor.search(/database/i) != -1) {
if (utm_source && utm_medium) {
location.href='help_real_time_info.html?utm_source=' + utm_source + '&utm_medium=' + utm_medium + '#new-database';
}
else {
location.href='help_real_time_info.html#new-database';
}
}
else {
if (utm_source && utm_medium) {
location.href='help.html?utm_source=' + utm_source + '&utm_medium=' + utm_medium;
}
else {
location.href='help.html';
}
}
});
-->
</script>
</head>
<body>
</body>
</html>