if (typeof window.onload=="function") { 
	getOnLoads();
	function callOnLoads() {
		var cntLocal = 0;
		for ( cntLocal=0; cntLocal<onloads.length; cntLocal++ ) {
			onloads[cntLocal](); // this reasserts the old onloads, if present
		}
		onloads = void 0; // returning the array to its natural, free-range state
	}
	window.onload = function() {callOnLoads();};
}
