65 lines
1.7 KiB
Plaintext
65 lines
1.7 KiB
Plaintext
<?php
|
|
require_once("../status/inc/session.php");
|
|
?>
|
|
<script language="JavaScript">
|
|
<!--
|
|
function changeVisual()
|
|
{
|
|
fr = document.frm;
|
|
|
|
if(fr.chk.value == 0) {
|
|
fr.chk.value = 1;
|
|
info.style.display="block";
|
|
} else {
|
|
fr.chk.value = 0;
|
|
info.style.display="none";
|
|
}
|
|
}
|
|
|
|
function check_admin_pop()
|
|
{
|
|
window.open("../status/check_admin.html", "_box", "width=200, height=100, scrollbar=yes");
|
|
}
|
|
//-->
|
|
</script>
|
|
<table border="0" align="center" width="1050">
|
|
<tr>
|
|
<td>
|
|
<a href="javascript:check_admin_pop();"><img src="img/bt_rc_admin.gif" border="0"></a>
|
|
<a href="javascript:changeVisual();"><img src="img/bt_contact.gif" border="0"></a>
|
|
</td>
|
|
<td align="right" class="PR40"><img src="img/Dot.gif"><a href="inc/logout_process.html"><img src="img/BtnLogout.gif" border="0" width="36" height="9"></a></td>
|
|
</tr>
|
|
</table>
|
|
<?php
|
|
$monitor_member = array("기술지원팀"=>"031-788-0191",
|
|
"강명균"=>"016-574-5625",
|
|
"홍성업"=>"011-9733-1231",
|
|
"신동호"=>"017-713-4785",
|
|
"이재영"=>"016-560-2290",
|
|
"김태일"=>"010-9600-2211",
|
|
"김석환"=>"010-4714-1749",
|
|
"이현준(KT)"=>"010-9837-5010");
|
|
?>
|
|
<div id="info" style="DISPLAY:none;">
|
|
<table border="1" cellspacing="1" width="530" align="center">
|
|
<tr align="center">
|
|
<td><b> Priority </b></td>
|
|
<td><b> Name </b></td>
|
|
<td><b> Emergency Phone NO. </b> </td>
|
|
</tr>
|
|
<?
|
|
$i = 0;
|
|
while(list($key, $value) = each($monitor_member))
|
|
{
|
|
$i++;
|
|
echo"<tr align=\"center\" align=\"center\">\n";
|
|
echo" <td><b> ".$i.". </b></td>\n";
|
|
echo" <td><b> ".$key." </b></td>\n";
|
|
echo" <td><b> ".$value." </b></td>\n";
|
|
echo"</tr>\n";
|
|
}
|
|
?>
|
|
</table>
|
|
</div>
|