-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmodal.php
57 lines (40 loc) · 2.1 KB
/
modal.php
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
<!-- /*************************************************/ -->
<link rel="stylesheet" href="modal/windowfiles/dhtmlwindow.css" type="text/css" />
<script type="text/javascript" src="modal/windowfiles/dhtmlwindow.js">
</script>
<link rel="stylesheet" href="modal/modalfiles/modal.css" type="text/css" />
<script type="text/javascript" src="modal/modalfiles/modal.js"></script>
<!-- /*************************************************/ -->
<!-- /*************************************************/ -->
<script type="text/javascript">
/**
* @System HP-pc Rax
* @author Rakshit shah <[email protected]>
* @copyright 2015-2017 |Rakshit shah
* @license http://rakshit.in/license/license.php | PHP License 3.0
* @version 1.1
* @since File available since Release 1.0.0
*/
function opennewsletter(){
emailwindow=dhtmlmodal.open('EmailBox', 'iframe', 'courseinsert.php', 'Insert Course Details', 'width=550px,height=350px,center=1,resize=0,scrolling=1')
} //End "opennewsletter" function
function opensubject(){
emailwindow=dhtmlmodal.open('EmailBox', 'iframe', 'subjectxx.php', 'Insert Subject', 'width=550px,height=450px,center=1,resize=0,scrolling=1')
}
function openleture(){
emailwindow=dhtmlmodal.open('EmailBox', 'iframe', 'lecture.php', 'Insert Lectures detail', 'width=550px,height=450px,center=1,resize=0,scrolling=1')
}
function openstudent(){
emailwindow=dhtmlmodal.open('EmailBox', 'iframe', 'studentins.php', 'Insert Student detail', 'width=550px,height=520px,center=1,resize=0,scrolling=1')
}
function openadmin(){
emailwindow=dhtmlmodal.open('EmailBox', 'iframe', 'addadmin.php', 'Insert admin detail', 'width=550px,height=520px,center=1,resize=0,scrolling=1')
}
function openattendance(){
emailwindow=dhtmlmodal.open('EmailBox', 'iframe', 'attendance.php', 'Insert Attendance detail', 'width=1000px,height=750px,center=1,resize=0,scrolling=1')
}
function openexam(){
emailwindow=dhtmlmodal.open('EmailBox', 'iframe', 'exam.php', 'Insert Marks detail', 'width=1000px,height=750px,center=1,resize=0,scrolling=1')
}
</script>
<!-- /*************************************************/ -->