blob: 0584f1dcc433ceaf1ba4a8ac4cfb7c7813d12f7b (
plain)
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
|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Search Results</title>
<link rel="StyleSheet" type="text/css" href="fpdoc.css">
<!-- The following lines are required and must be in the <head> section of your HTML document -->
<script language="JavaScript1.3" type="text/javascript" src="tip_data.js"></script>
<script language="JavaScript1.3" type="text/javascript" src="tip_search.js"></script>
<!-- End of required <head> section -->
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
</head>
<body>
<div>
<!-- The following JavaScript uses the tip_Num variable to return the number of matches found -->
<script language="JavaScript1.3" type="text/javascript">
if (tip_Num == 0) {
document.write('No matches found');
}
if (tip_Num == 1) {
document.write('1 match found');
}
if (tip_Num > 1) {
document.write(tip_Num, ' matches found');
}
</script>
<hr>
<!-- The following line returns the results -->
<script language="JavaScript1.3" type="text/javascript">tip_out()</script>
<hr>
<p>
Return to <a href="index.html">main index page.</a>
<p>
<a href="http://www.tipue.com" target="_parent"><img src="tipue_b1.png" title="Tipue" alt="Tipue" border=0 width=138 height=32></a>
</div>
</body>
</html>
|