blob: 360cceb3c33b99bed706b1f1a4cfc35ece68f2db (
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
<!--
*********************************************************
* Copyright 2003, CyberTAN Inc. All Rights Reserved *
*********************************************************
This is UNPUBLISHED PROPRIETARY SOURCE CODE of CyberTAN Inc.
the contents of this file may not be disclosed to third parties,
copied or duplicated in any form without the prior written
permission of CyberTAN Inc.
This software should be used as a reference only, and it not
intended for production use!
THIS SOFTWARE IS OFFERED "AS IS", AND CYBERTAN GRANTS NO WARRANTIES OF ANY
KIND, EXPRESS OR IMPLIED, BY STATUTE, COMMUNICATION OR OTHERWISE. CYBERTAN
SPECIFICALLY DISCLAIMS ANY IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS
FOR A SPECIFIC PURPOSE OR NONINFRINGEMENT CONCERNING THIS SOFTWARE
-->
<HTML><HEAD><TITLE>WWAN Status</TITLE>
<meta http-equiv="expires" content="0">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="content-type" content="text/html; charset=iso-8859-1">
<link rel="stylesheet" type="text/css" href="style.css">
<style fprolloverstyle>
A:hover {color: #00FFFF}
.small A:hover {color: #00FFFF}
</style>
<script src="common.js"></script>
<SCRIPT language="javascript" type="text/javascript" src="lang_pack/layout.js"></SCRIPT>
<SCRIPT language="javascript" type="text/javascript" src="lang_pack/gprs.js"></SCRIPT>
<SCRIPT language=JavaScript>
var value=0;
function Refresh()
{
var net_name = "BASE DE";
var refresh_time = "60000";
if(refresh_time == "60000") refresh_time = 20000;
if( ( net_name == "Acquiring" ) && ( refresh_time > "5000") )
{
//refresh_time = "15000";
refresh_time = "3000";
}
if(refresh_time == "") refresh_time = 20000;
if (value>=1)
{
window.location.replace("index_wstatus1.asp");
}
value++;
timerID=setTimeout("Refresh()",refresh_time);
}
</SCRIPT>
</HEAD>
<BODY onload=Refresh();>
<!-- TABLE vlign=top align=left height=90 cellSpacing=0 cellPadding=0 border=0 width=397 style="margin-left: -5" -->
<TABLE vlign=top align=left height=90 cellSpacing=0 cellPadding=0 border=0 width=397>
<TR>
<TD width=102> <script>Capture(GPRS_MSG.WWBEAR)</script> : </TD>
<TD width=295><B><script>Capture(GPRS_MSG.WWBEAR_GPRS)</script></B></TD>
<TR>
<TD width=102> <script>Capture(GPRS_MSG.NNAME)</script> : </TD>
<TD width=295><B>BASE DE</B></TD>
<TR>
<TD width=102> <script>Capture(GPRS_MSG.STRENGTH)</script> : </TD>
<TD width=295><B><script>Capture(GPRS_MSG.EXCELLENT)</script></B></TD>
</TABLE>
</BODY>
</HTML>
|