68 lines
1.8 KiB
Plaintext
68 lines
1.8 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, scrollbars=yes");
|
|
}
|
|
|
|
function disk_check()
|
|
{
|
|
window.open("../status/check_storage_report.html","_box", 'height=' + screen.height + ',width=' + screen.width + 'fullscreen=yes, scrollbars=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>
|
|
<a href="javascript:disk_check();"><img src="img/bt_storage_amount.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( "Á¤±â¿í(¼Ö¹Ú½º)"=>"010-9496-4373"
|
|
);
|
|
|
|
?>
|
|
<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>
|