version 1.30, 2001/05/01 15:23:40
|
version 1.31, 2001/05/28 19:22:45
|
Line 2312 function condense() {
|
Line 2312 function condense() {
|
function load() { |
function load() { |
message("Loading"); |
message("Loading"); |
schedule('load'); |
schedule('load'); |
checkdef(); |
|
} |
} |
|
|
function finishload() { |
function finishload() { |
Line 2422 function wheelswitch() {
|
Line 2421 function wheelswitch() {
|
// --------------------------------------------- Checks if server frame defined |
// --------------------------------------------- Checks if server frame defined |
|
|
function checkdef() { |
function checkdef() { |
// if (parent.server!=undefined) { |
|
// if (parent.server.document!=undefined) { |
|
// if (parent.server.document.forms.storage.output.value!=undefined) { |
|
// srvloaded(); |
|
// } |
|
// } |
|
// } |
|
if (parent.flag==1) { |
if (parent.flag==1) { |
srvloaded(); |
srvloaded(); |
} |
} |
Line 2459 function schedule(action) {
|
Line 2451 function schedule(action) {
|
reqaction=action; |
reqaction=action; |
tim=0; |
tim=0; |
finishdone=0; |
finishdone=0; |
canceltim=setTimeout('tim=1;',20000) |
canceltim=setTimeout('tim=1;',20000); |
|
checkdef(); |
wait(); |
wait(); |
} |
} |
|
|
Line 2467 function schedule(action) {
|
Line 2460 function schedule(action) {
|
|
|
function storechange() { |
function storechange() { |
var k; |
var k; |
|
parent.flag=0; |
parent.server.document.forms.storage.submit(); |
parent.server.document.forms.storage.submit(); |
schedule('save'); |
schedule('save'); |
} |
} |