blob: f2e3deb225a18ee32a9f2db1fb9c455577b7d746 (
plain)
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
|
<script language="JavaScript">
function setActiveStyleSheet(title) {
var i, a, main;
for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
if(a.getAttribute("rel").indexOf("style") != -1
&& a.getAttribute("title")) {
a.disabled = true;
if(a.getAttribute("title") == title) a.disabled = false;
}
}
if (title!="") {
writeCookie(title);
}
}
function getInactiveStyleSheet() {
var i, a;
for(i=0; (a = document.getElementsByTagName("link")[i]); i++) {
if(a.getAttribute("rel").indexOf("style") != -1 && a.getAttribute("title") && a.disabled) return a.getAttribute("title");
}
return null;
}
function readCookie() {
var theme = document.cookie;
var theme = unescape(theme);
return theme;
}
function writeCookie(theme) {
//FIXME - set expires
var original_cookie = "theme=" + escape(theme);
document.cookie = original_cookie;
}
function checkForTheme() {
var theme = readCookie();
//alert(theme);
if (theme=="undefined") {
var theme = "none";
}
}
// what a kludge. Luckily I found a clean way
function alignForGorilla() {
var image_preview = document.getElementById('preview');
image_preview.style.marginLeft = "-" + (image_preview.width/2 + 16) + "px";
}
</script>
|