OSDN Git Service

Add files via upload
[idb/iDB.git.git] / inc / javascript.php
1 <?php
2 /*
3     This program is free software; you can redistribute it and/or modify
4     it under the terms of the Revised BSD License.
5
6     This program is distributed in the hope that it will be useful,
7     but WITHOUT ANY WARRANTY; without even the implied warranty of
8     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
9     Revised BSD License for more details.
10
11     Copyright 2004-2017 iDB Support - http://idb.berlios.de/
12     Copyright 2004-2017 Game Maker 2k - http://gamemaker2k.org/
13
14     $FileInfo: javascript.php - Last Update: 01/26/2017 SVN 810 - Author: cooldude2k $
15 */
16 header("Content-Language: en");
17 header("Vary: Accept");
18 ?>
19 function getid(id) {
20 var itm;
21 itm = document.getElementById(id);
22 return itm; }
23
24 function toggletag(id) {
25 var itm;
26 itm = document.getElementById(id);
27 if (itm.style.display == "none") {
28 itm.style.display = ""; }
29 else {
30 itm.style.display = "none"; } }
31
32 function bgchange(id,color) {
33 var itm;
34 itm = document.getElementById(id);
35 itm.style.backgroundColor = ''+color+''; }
36
37 function innerchange(tag,text1,text2) {
38 var usrname;
39 usrname = document.getElementsByTagName(tag);
40 for (var i = 0; i < usrname.length; i++) {
41 if(usrname[i].innerHTML==text1) {
42 usrname[i].innerHTML = text2; } } }
43
44 function addsmiley(id,code) {
45 var itm;
46 itm = document.getElementById(id);
47 var pretext = itm.value;
48 itm.value = pretext + code; }
49
50 <?php gzip_page($Settings['use_gzip']); ?>