Remove unused files from extras.
This commit is contained in:
parent
e8b20169fa
commit
58b7270b6a
7 changed files with 0 additions and 60 deletions
Binary file not shown.
|
Before Width: | Height: | Size: 114 B |
Binary file not shown.
|
Before Width: | Height: | Size: 291 B |
Binary file not shown.
|
Before Width: | Height: | Size: 116 B |
|
|
@ -1,55 +0,0 @@
|
|||
var a=new Array(22);
|
||||
|
||||
function getFormNum (formName) {
|
||||
var formNum =-1;
|
||||
for (i=0;i<document.forms.length;i++){
|
||||
tempForm = document.forms[i];
|
||||
if (formName == tempForm) {
|
||||
formNum = i;
|
||||
break;
|
||||
}
|
||||
}
|
||||
return formNum;
|
||||
}
|
||||
|
||||
var catsIndex = -1;
|
||||
var itemsIndex;
|
||||
|
||||
function newCat(){
|
||||
catsIndex++;
|
||||
a[catsIndex] = new Array();
|
||||
itemsIndex = 0;
|
||||
}
|
||||
|
||||
function O(txt,value) {
|
||||
a[catsIndex][itemsIndex]=new myOptions(txt,value);
|
||||
itemsIndex++;
|
||||
}
|
||||
|
||||
function myOptions(text,value){
|
||||
this.text = text;
|
||||
this.value = value;
|
||||
}
|
||||
|
||||
function relate(list1,list2) {
|
||||
var j = list1.selectedIndex;
|
||||
for(i=list2.options.length-1;i>0;i--) list2.options[i] = null; // null out in reverse order (bug workarnd)
|
||||
for(i=0;i<a[j].length;i++){
|
||||
list2.options[i] = new Option(a[j][i].text,a[j][i].value);
|
||||
}
|
||||
list2.options[0].selected = true;
|
||||
}
|
||||
|
||||
|
||||
|
||||
function IEsetup(){
|
||||
if(!document.all) return;
|
||||
IE5 = navigator.appVersion.indexOf("5.")!=-1;
|
||||
if(!IE5) {
|
||||
for (i=0;i<document.forms.length;i++) {
|
||||
document.forms[i].reset();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
window.onload = IEsetup;
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
function operateHidden(newId,oldId){
|
||||
document.getElementById(oldId).style.display='none';
|
||||
document.getElementById(newId).style.display='';
|
||||
return newId;
|
||||
}
|
||||
Binary file not shown.
|
Before Width: | Height: | Size: 312 B |
Binary file not shown.
|
Before Width: | Height: | Size: 512 B |
Loading…
Add table
Add a link
Reference in a new issue