-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathleft-head.html
74 lines (66 loc) · 3.17 KB
/
left-head.html
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
73
74
<html>
<head>
<!-- This script was originally developed for
phpMyAdmin (phpmyadmin.sourceforge.net)
See tools/left.js in this directory for a complete
list of authors. -->
<!-- Collapsable user list scripts -->
<script type="text/javascript" language="javascript"><!--
var isDOM = (typeof(document.getElementsByTagName) != 'undefined'
&& typeof(document.createElement) != 'undefined')
? 1 : 0;
var isIE4 = (typeof(document.all) != 'undefined'
&& parseInt(navigator.appVersion) >= 4)
? 1 : 0;
var isNS4 = (typeof(document.layers) != 'undefined')
? 1 : 0;
var isOpera = (navigator.userAgent.indexOf('Opera') >= 0)
? 1 : 0;
var capable = (isDOM || isIE4 || isNS4)
? 1 : 0;
// Uggly fix for Opera and Konqueror 2.2 that are half DOM compliant
if (capable) {
if (typeof(window.opera) != 'undefined') {
capable = 0;
}
else if (typeof(navigator.userAgent) != 'undefined') {
var browserName = ' ' + navigator.userAgent.toLowerCase();
if (browserName.indexOf('konqueror') > 0) {
capable = 0;
}
} // end if... else if...
} // end if
var fontFamily = 'verdana, helvetica, arial, geneva, sans-serif';
var fontSize = 'small';
var fontBig = 'medium';
var fontSmall = 'x-small';
var isServer = true; //-->
</script>
<script src="tools/frames.js" type="text/javascript" language="javascript1.2"></script>
<script src="tools/left.js" type="text/javascript" language="javascript1.2"></script>
<?php if($_SESSION["opera"]) { ?>
<script src="tools/opera.js" type="text/javascript" language="javascript1.2"></script>
<?php } ?>
<base target="pqlmain">
<noscript>
<style type="text/css"><!--
div {color: #000000}
.heada {font-family: verdana, helvetica, arial, geneva, sans-serif; font-size: small; color: #000000}
.headaCnt {font-family: verdana, helvetica, arial, geneva, sans-serif; font-size: x-small; color: #000000}
.parent {font-family: verdana, helvetica, arial, geneva, sans-serif; color: #000000; text-decoration: none}
.child {font-family: verdana, helvetica, arial, geneva, sans-serif; font-size: x-small; color: #333399; text-decoration: none}
.item, .item:active, .item:hover, .tblItem, .tblItem:active {color: #333399; text-decoration: none}
.tblItem:hover {color: #FF0000; text-decoration: underline} //-->
</style>
</noscript>
<style type="text/css"><!-- body { font-family: Arial, Helvetica, sans-serif; font-size: 10pt} //--></style>
</head>
<?php // Sometimes this file is included to get folding stuff. Only show
// the ugly blueish color if it's called from left*.php
$left_head_uri = preg_replace('/.*\//', '', $_SERVER["PHP_SELF"]);
if(preg_match('/^left/i', $left_head_uri)) {
?>
<body bgcolor="#D0DCE0">
<?php } else { ?>
<body bgcolor="#e7e7e7" background="images/bkg.png">
<?php } ?>