2015-07-02 19:33:06 +01:00
|
|
|
<!--Force IE6 into quirks mode with this comment tag-->
|
|
|
|
<!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" lang="en" xml:lang="en">
|
|
|
|
<head>
|
|
|
|
<link rel="stylesheet" type="text/css" href="css/white.css" />
|
|
|
|
<link rel="alternate stylesheet" type="text/css" media="screen" title="black" href="css/black.css" />
|
|
|
|
<link rel="alternate stylesheet" type="text/css" media="screen" title="white" href="css/white.css" />
|
|
|
|
<link rel="alternate stylesheet" type="text/css" media="screen" title="blue" href="css/blue.css" />
|
2015-07-10 22:04:32 +01:00
|
|
|
<link rel="alternate stylesheet" type="text/css" media="screen" title="red" href="css/red.css" />
|
2015-07-03 10:19:06 +01:00
|
|
|
<script type="text/javascript">
|
|
|
|
window.onload=function(){
|
|
|
|
var formref=document.getElementById("switchform")
|
|
|
|
indicateSelected(formref.switchcontrol)
|
|
|
|
}
|
|
|
|
</script>
|
2015-07-02 19:33:06 +01:00
|
|
|
<!--This script should appear below your LINK stylesheet tags -->
|
|
|
|
|
|
|
|
<script src="styleswitch.js" type="text/javascript">
|
|
|
|
|
2015-07-26 08:33:54 +01:00
|
|
|
|
2015-07-02 19:33:06 +01:00
|
|
|
/***********************************************
|
|
|
|
* Style Sheet Switcher v1.1- © Dynamic Drive DHTML code library (www.dynamicdrive.com)
|
|
|
|
* This notice MUST stay intact for legal use
|
|
|
|
* Visit Dynamic Drive at http://www.dynamicdrive.com/ for this script and 100s more
|
|
|
|
***********************************************/
|
|
|
|
|
|
|
|
</script>
|
2015-07-10 12:37:53 +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 togglebodytheme() {
|
|
|
|
$('#themetable tbody').toggle();
|
|
|
|
}
|
|
|
|
|
2015-07-10 12:37:53 +01:00
|
|
|
</script>
|
2015-07-02 19:33:06 +01:00
|
|
|
</head>
|
2015-07-26 08:33:54 +01:00
|
|
|
<body>
|
2015-07-03 11:56:33 +01:00
|
|
|
<?php include 'config.php';?>
|
2015-07-02 19:33:06 +01:00
|
|
|
<div id="style">
|
|
|
|
<div class="innertube">
|
2015-07-03 11:56:33 +01:00
|
|
|
|
2015-07-02 19:33:06 +01:00
|
|
|
<?php
|
2015-07-03 14:46:27 +01:00
|
|
|
if ($clockvisible > "0") {
|
2015-07-03 11:56:33 +01:00
|
|
|
require "clock.php";
|
|
|
|
} else {
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|
2015-07-10 12:37:53 +01:00
|
|
|
</p>
|
2015-07-03 11:56:33 +01:00
|
|
|
<?php
|
2015-07-03 14:46:27 +01:00
|
|
|
if ($kknowledgefeedvisible > "0") {
|
2015-07-11 20:34:36 +01:00
|
|
|
require "/feeds/kknowledgefeed.php";
|
2015-07-03 11:56:33 +01:00
|
|
|
} else {
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|
2015-07-10 12:37:53 +01:00
|
|
|
</p>
|
2015-07-03 11:56:33 +01:00
|
|
|
<?php
|
2015-07-03 14:46:27 +01:00
|
|
|
if ($webclipfeedvisible > "0") {
|
2015-07-11 20:34:36 +01:00
|
|
|
require "/feeds/webclipfeed.php";
|
|
|
|
} else {
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</p>
|
|
|
|
<?php
|
|
|
|
if ($customfeed1visible > "0") {
|
|
|
|
require "/feeds/custom1.php";
|
|
|
|
} else {
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</p><?php
|
|
|
|
if ($customfeed2visible > "0") {
|
|
|
|
require "/feeds/custom2.php";
|
|
|
|
} else {
|
|
|
|
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
</p>
|
|
|
|
<?php
|
|
|
|
if ($customfeed3visible > "0") {
|
|
|
|
require "/feeds/custom3.php";
|
2015-07-03 11:56:33 +01:00
|
|
|
} else {
|
|
|
|
|
|
|
|
}
|
2015-07-02 19:33:06 +01:00
|
|
|
?>
|
|
|
|
</p>
|
2015-07-26 08:33:54 +01:00
|
|
|
<table id='themetable' width='275' border="0" cellpadding="1" cellspacing="0">
|
|
|
|
<thead>
|
|
|
|
<tr onclick='togglebodytheme()'>
|
2015-07-08 12:06:20 +01:00
|
|
|
<td bgcolor="#0066FF" style="text-align: left;"><font color="white">Theme</font></td>
|
|
|
|
<td bgcolor="#0066FF"> </td>
|
|
|
|
<td bgcolor="#0066FF"> </td>
|
2015-07-10 22:04:32 +01:00
|
|
|
<td bgcolor="#0066FF"> </td>
|
2015-07-08 12:06:20 +01:00
|
|
|
</tr>
|
2015-07-26 08:33:54 +01:00
|
|
|
</thead>
|
|
|
|
<tbody style= 'display:none'>
|
|
|
|
<tr>
|
2015-07-08 12:06:20 +01:00
|
|
|
<td bgcolor="#ffffff"><a checked="checked" href="javascript:chooseStyle('white', 60)" onclick="parent.left.location.reload(); parent.main.location.reload()">White</a></td>
|
|
|
|
<td bgcolor="#ffffff"><a href="javascript:chooseStyle('black', 60)" onclick="parent.left.location.reload(); parent.main.location.reload()">Black</a></td>
|
|
|
|
<td bgcolor="#ffffff"><a href="javascript:chooseStyle('blue', 60)" onclick="parent.left.location.reload(); parent.main.location.reload()">Blue</a></td>
|
2015-07-10 22:04:32 +01:00
|
|
|
<td bgcolor="#ffffff"><a href="javascript:chooseStyle('red', 60)" onclick="parent.left.location.reload(); parent.main.location.reload()">Red</a></td>
|
2015-07-08 12:06:20 +01:00
|
|
|
</tr>
|
2015-07-26 08:33:54 +01:00
|
|
|
<tr>
|
|
|
|
<td colspan="3" bgcolor="#ffffff"><script type="text/javascript" src="jscolor/jscolor.js"></script>Custom: <input class="color" onchange="document.getElementsByTagName('BODY')[0].style.backgroundColor = '#'+this.color"></td>
|
|
|
|
<td bgcolor="#ffffff"><a href="javascript:chooseStyle('red', 60)" onclick="document.getElementsByTagName('BODY')[0].style.backgroundColor = '#'+this.color">Set</a></td>
|
|
|
|
</tr>
|
|
|
|
|
2015-07-08 12:06:20 +01:00
|
|
|
</tbody>
|
2015-07-02 19:33:06 +01:00
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html>
|
|
|
|
|
|
|
|
|
2015-07-03 10:39:35 +01:00
|
|
|
|