// JavaScript Document
/*  js_window_onload_multiple_actions.js */
//
// Set up function to perform actions when a JS event occurs
//
function WindowLoad(event) {
	//
	// Set up function to count down and then block actions
	// if they are not completed within reasonable time (eg. 5 minutes)
	// Used for update forms where access has been locked for a limited time.
	//
	ActivateCountDown("CountDownPanel", 10*60);
	ActivateCountDownExit("CountDownPanelExit", 10*60);
	//
	// ActivateCountDown & ActivateCountDownExit require presence of  
	// <span id='CountDownPanel'></span>
	// in the page
	//
	// on loading window:
	// Verify javascript active:
	//
	document.getElementById('settored').style.display = 'none';
	//
	// this hides javascript needed warning if js active
}
//
// Call the function on loading the web page
window.onload=WindowLoad;

