"use strict"; //2024-11-24: //the function below starts the: //Central Processing System //------------------------------ //creating a central control system within the //page that is responsible for handling actions //that need a document-wide ability to operate. //for example, to allow one window to send and //recieve data from another window. function start_central_processing_system() { create_cps_unit(); } function create_cps_unit() { var cps_container = null; cps_container = document.getElementById("cps"); if (cps_container !== null) { } else { cps_container = document.createElement("div"); cps_container.setAttribute("id", "cps"); cps_container.setAttribute("name", "central_processing_system"); cps_container.style.display = "none;"; if (document.body.hasChildNodes() === true) { document.body.insertBefore(cps_container, document.body.childNodes[0]); } else { document.body.appendChild(cps_container); } } return cps_container; }