-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex_php
More file actions
72 lines (63 loc) · 2.35 KB
/
index_php
File metadata and controls
72 lines (63 loc) · 2.35 KB
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
<!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=iso-8859-1" />
<!--dibawah ini diperlukan untuk menampilkan popup-->
<script src="billing/theme/jquery-ui/js/jquery-1.8.3.js"></script>
<link rel="stylesheet" type="text/css" href="billing/theme/popup.css" />
<script type="text/javascript" src="billing/theme/prototype.js"></script>
<script type="text/javascript" src="billing/theme/effects.js"></script>
<script type="text/javascript" src="billing/theme/popup.js"></script>
<!--diatas ini diperlukan untuk menampilkan popup-->
<!-- untuk ajax-->
<script type="text/javascript" src="billing/theme/js/ajax.js"></script>
<link rel="shortcut icon" href="billing/icon/favicon.ico" />
<link rel="stylesheet" type="text/css" href="portal/css/index-css.css" /></head>
<title>[SIMULASI]Portal SIMRS Tangerang</title>
</head>
<body>
<?
include "portal/pop_apotek.php";
include "portal/pop_aset.php";
include "portal/pop_billing.php";
//include "portal/pop_keuangan.php";
?>
<div id="sangkar_portal">
<div id="judul"><img src="portal/images/index-judul.jpg" /></div>
<div id="isi">
<div id="modul" onclick="popup_apotek();"><img src="portal/images/apotek.png" /></div>
<div id="modul" onclick="popup_aset();"><img src="portal/images/aset.png" /></div>
<div id="modul" onclick="popup_billing();"><img src="portal/images/billing.png" /></div>
<!--<div id="modul" onclick="popup_keuangan();"><img src="portal/images/keuangan.png" /></div>-->
<div style="clear:both;"></div>
</div>
<div id="footer">Powered By : <a href="htpp://www.digital-sense.net">Digital Sense</a> </div>
</div>
</body>
</html>
<script>
function buka(modul)
{
window.location=modul+'/index.php';
}
function popup_apotek()
{
new Popup('popup_apotek',null,{modal:true,position:'center',duration:0.5})
$('popup_apotek').popup.show();
}
function popup_aset()
{
new Popup('popup_aset',null,{modal:true,position:'center',duration:0.5})
$('popup_aset').popup.show();
}
function popup_billing()
{
new Popup('popup_billing',null,{modal:true,position:'center',duration:0.5})
$('popup_billing').popup.show();
}
function popup_keuangan()
{
new Popup('popup_keuangan',null,{modal:true,position:'center',duration:0.5})
$('popup_keuangan').popup.show();
}
</script>