// <!-- OCT 2002 -->
// startup.js

/*
Essentially this is a one line file to set the relative address
from the buying page in which you include load_on_demand.js
to the system startup file.

The point of it is to prevent any necessity of having more than one
copy of load_on_demand.js in use making debugging and maintenance
much more direct and reliable.

// For /pages or another folder at the same level (1 level below the root)
var startup="../index.html";

// For /pages/subfolder or one at the same level (2 levels below the root)
var startup="../../index.html";

// For /pages/subfolder/subfold or one at the same level (3 levels below the root)
var startup="../../../index.html";

etcetera for even deeper structures!

This file is of no use at all here in /js
You need a startup.js file in each and every folder and subfolder
in which you have buying pages including the load_on_demand.js script

*/

var startup="/system/index.html";
