function Pager(id, tags, itemsPerPage) {
    this.id = id;
    this.tags = tags;
    this.itemsPerPage = itemsPerPage;
    this.currentPage = 1;
    this.pages = 0;
    this.inited = false;
    
    this.showRecords = function(from, to) {        
        var el = document.getElementById(id).getElementsByTagName(tags);
        // i starts from 1 to skip table header row
        for (var i = 0; i < el.length; i++) {
            if (i < from || i > to)  
                el[i].style.display = 'none';
            else
                el[i].style.display = '';
        }
    }
    
    this.showPage = function(pageNumber) {
    	if (! this.inited) {
    		alert("not inited");
    		return;
    	}

        var oldPageAnchor = document.getElementById(id+'pg'+this.currentPage);
        oldPageAnchor.className = 'pg-normal';
        
        this.currentPage = pageNumber;
        var newPageAnchor = document.getElementById(id+'pg'+this.currentPage);
        newPageAnchor.className = 'pg-selected';
        
        var from = (pageNumber - 1) * itemsPerPage;
        var to = from + itemsPerPage - 1;
        this.showRecords(from, to);
    }   
    
    this.prev = function() {
        if (this.currentPage > 1)
            this.showPage(this.currentPage - 1);
    }
    
    this.next = function() {
        if (this.currentPage < this.pages) {
            this.showPage(this.currentPage + 1);
        }
    }                        
    
    this.init = function() {
        var el = document.getElementById(id).getElementsByTagName(tags);
        var records = (el.length - 1); 
        this.pages = Math.ceil(records / itemsPerPage);
        this.inited = true;
    }

    this.showPageNav = function(pagerName, positionId) {
    	if (! this.inited) {
    		alert("not inited");
    		return;
    	}
     	if (this.pages > 1) {
	    	var element = document.getElementById(positionId);
	    	
	    	var pagerHtml = '<span onclick="' + pagerName + '.prev();" class="pg-normal"> &#171 Poprzednia </span> | ';
	        for (var page = 1; page <= this.pages; page++) 
	            pagerHtml += '<span id="'+id+'pg' + page + '" class="pg-normal" onclick="' + pagerName + '.showPage(' + page + ');">' + page + '</span> | ';
	        pagerHtml += '<span onclick="'+pagerName+'.next();" class="pg-normal"> Następna &#187;</span>';            

        	element.innerHTML = pagerHtml;
	}
    }
}



