function hqPopupScroll(url, name, width, height){
	ScrWidth = 800; ScrHeight = 600;
	if (window.screen) {ScrWidth = window.screen.width; ScrHeight = window.screen.height}
	PosX = Math.round((ScrWidth - width)/2);
	PosY = Math.round((ScrHeight - height)/2);

	Window = window.open(url, name, 'left='+PosX+',top'+PosY+',width='+width+',height='+height+',resizable=0,scrollbars=yes');
	Window.focus();
}

function hqPopupEasy(url){
	Window = window.open(url, 'ekoedukacja');
	Window.focus();
}
function hqAddToBookmark(a,b){
	if(document.all){window.external.AddFavorite(a,b)}
}