window.onloadAdd = function(what){
		if (!this.onLoadArr){ this.onLoadArr = new Array; }
		this.onLoadArr.push(what);
	}
	
window.onload = function(){
	try{
	if (this.onLoadArr.length >0){
		for (onLoadArrIterator=0; onLoadArrIterator<this.onLoadArr.length; onLoadArrIterator++){
			eval(this.onLoadArr[onLoadArrIterator]);
		}
	}}catch(e){}
}