1
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
2
|
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
3
|
<head>
|
4
|
<title>Website Baker Administration - Media</title>
|
5
|
<link href="../interface/stylesheet.css" rel="stylesheet" type="text/css">
|
6
|
<style>
|
7
|
body {
|
8
|
background-color: #FFFFFF;
|
9
|
background-image: none;
|
10
|
margin: 0px;
|
11
|
}
|
12
|
.content {
|
13
|
width: 100%;
|
14
|
height: 100px;
|
15
|
}
|
16
|
</style>
|
17
|
<script language="javascript" type="text/javascript">
|
18
|
function toggle_checkbox(checkbox_id) {
|
19
|
if(document.getElementById(checkbox_id).checked == true) {
|
20
|
document.getElementById(checkbox_id).checked = false;
|
21
|
} else {
|
22
|
document.getElementById(checkbox_id).checked = true;
|
23
|
}
|
24
|
}
|
25
|
</script>
|
26
|
</head>
|
27
|
<body>
|
28
|
|
29
|
<table cellpadding="0" cellspacing="0" border="0" width="100%" align="center">
|
30
|
<tr>
|
31
|
<td class="content">
|