//dodaje helpa do tablicy
function addhelp(nazwa){
	if(typeof window.onload=='function'){
 		if(typeof helptab=='undefined')helptab=new Array();
 		helptab.push(window.onload);
 	}
 	if(nazwa!=null){
	 	window.onload = function(){
	 		new Control.Modal("helplink_"+nazwa,{hover: true,position: "relative",offsetLeft: -290, offsetTop: 20});
	 		Control.Modal.close();
	 	}
 	}
}

//inicjalizuje tablice helpów
function showhelps(){
	if(typeof helptab!='undefined'){
		addhelp(null);
		window.onload=function(){
			for(i=0;i<helptab.length;i++){
				helptab[i](); 
			} 
		}
	}
}


