2015-07-02 22:03:57 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
window.onload=function(){
|
|
|
|
var formref=document.getElementById("switchform")
|
|
|
|
indicateSelected(formref.switchcontrol)
|
|
|
|
}
|
|
|
|
</script>
|
2015-07-03 13:53:45 +01:00
|
|
|
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.2/jquery.js" type="text/javascript"></script>
|
|
|
|
<style>
|
|
|
|
.hiddenRow { display: none; }
|
|
|
|
</style>
|
|
|
|
<script>
|
|
|
|
function toggleNextRow(row) {
|
|
|
|
var nextRow = $(row).next();
|
|
|
|
nextRow.toggle();
|
|
|
|
}
|
2015-07-26 08:33:54 +01:00
|
|
|
function togglebody() {
|
|
|
|
$('#drivespace tbody').toggle();
|
|
|
|
}
|
|
|
|
|
2015-07-03 13:53:45 +01:00
|
|
|
</script>
|
2015-07-26 08:33:54 +01:00
|
|
|
<table id='drivespace' width='190' border='0' cellspacing='0' cellpadding='0'>
|
2015-07-03 11:09:33 +01:00
|
|
|
<?php include 'config.php';?>
|
2015-07-10 12:37:53 +01:00
|
|
|
<?php
|
2015-07-10 22:04:32 +01:00
|
|
|
if ($drivespacevisible > "0") {
|
|
|
|
require "drives/head.php";
|
|
|
|
}
|
2015-07-05 09:57:32 +01:00
|
|
|
?>
|
2015-07-26 08:33:54 +01:00
|
|
|
<tbody style= 'display:none'>
|
2015-07-05 09:57:32 +01:00
|
|
|
<?php
|
2015-07-03 14:46:27 +01:00
|
|
|
if ($drive1visible > "0") {
|
2015-07-05 07:52:52 +01:00
|
|
|
require "drives/drive1.php";
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<?php
|
|
|
|
if ($drive2visible > "0") {
|
|
|
|
require "drives/drive2.php";
|
2015-07-02 19:51:14 +01:00
|
|
|
}
|
2015-07-05 07:52:52 +01:00
|
|
|
?>
|
|
|
|
<?php
|
2015-07-05 10:51:00 +01:00
|
|
|
if ($drive3visible > "0") {
|
2015-07-05 07:52:52 +01:00
|
|
|
require "drives/drive3.php";
|
2015-07-02 19:51:14 +01:00
|
|
|
}
|
2015-07-05 07:52:52 +01:00
|
|
|
?>
|
|
|
|
<?php
|
2015-07-05 10:51:00 +01:00
|
|
|
if ($drive4visible > "0") {
|
2015-07-05 07:52:52 +01:00
|
|
|
require "drives/drive4.php";
|
2015-07-02 19:51:14 +01:00
|
|
|
}
|
2015-07-05 07:52:52 +01:00
|
|
|
?><?php
|
2015-07-05 10:51:00 +01:00
|
|
|
if ($drive5visible > "0") {
|
2015-07-05 07:52:52 +01:00
|
|
|
require "drives/drive5.php";
|
2015-07-02 19:51:14 +01:00
|
|
|
}
|
2015-07-05 07:52:52 +01:00
|
|
|
?><?php
|
2015-07-05 10:51:00 +01:00
|
|
|
if ($drive6visible > "0") {
|
2015-07-05 07:52:52 +01:00
|
|
|
require "drives/drive6.php";
|
2015-07-02 19:51:14 +01:00
|
|
|
}
|
2015-07-05 07:52:52 +01:00
|
|
|
?>
|
|
|
|
<?php
|
2015-07-05 10:51:00 +01:00
|
|
|
if ($drive7visible > "0") {
|
2015-07-05 07:52:52 +01:00
|
|
|
require "drives/drive7.php";
|
2015-07-02 19:51:14 +01:00
|
|
|
}
|
2015-07-10 22:04:32 +01:00
|
|
|
?>
|
2015-07-26 08:33:54 +01:00
|
|
|
</tbody>
|
|
|
|
</table>
|