function Pager(tableName, itemsPerPage) {
    this.tableName = tableName;
    this.itemsPerPage = itemsPerPage;
    this.currentPage = 1;
    this.pages = 0;
    this.inited = false;
    
    this.showRecords = function(from, to) {        
        var rows = document.getElementById(tableName).rows;
        // i starts from 1 to skip table header row
        for (var i = 1; i < rows.length; i++) {
            if (i < from || i > to)  
                rows[i].style.display = 'none';
            else
                rows[i].style.display = '';
        }
    }
    
    this.showPage = function(pageNumber) {
    	if (! this.inited) {
    		alert("not inited");
    		return;
    	}

        var oldPageAnchor = document.getElementById('pg'+this.currentPage);
        oldPageAnchor.className = 'pg-normal';
        
        this.currentPage = pageNumber;
        var newPageAnchor = document.getElementById('pg'+this.currentPage);
        newPageAnchor.className = 'pg-selected';
        
        var from = (pageNumber - 1) * itemsPerPage + 1;
        var to = from + itemsPerPage - 1;
        this.showRecords(from, to);
		
		//estas lineas las agregue para que al final de la página no se muestre el boton de Next y 
		//al comienzo no se muestre Prev
		var pgNext = document.getElementById('pgNext');
		var pgPrev = document.getElementById('pgPrev');
		
		if (pageNumber == this.pages)
		pgNext.style.display = 'none';
		else
		pgNext.style.display = '';
		if (pageNumber == 1)
		pgPrev.style.display = 'none';
		else
		pgPrev.style.display = ''; 
		///////////////////////		
		
    }   
    
    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 rows = document.getElementById(tableName).rows;
        var records = (rows.length - 1); 
        this.pages = Math.ceil(records / itemsPerPage);
        this.inited = true;
    }
	

    this.showPageNav = function(pagerName, positionId) {
    	if (! this.inited) {
    		alert("not inited");
    		return;
    	}
    	var element = document.getElementById(positionId);
    	
    	var pagerHtml = '<a id="pgPrev" onclick="' + pagerName + '.prev();" href="#list" class="pg-normal"> &#171 Prev </a> | ';
        for (var page = 1; page <= this.pages; page++) 
            pagerHtml += '<a id="pg' + page + '" class="pg-normal" onclick="' + pagerName + '.showPage(' + page + ');" href="#list">' + page + '</a> | ';
        pagerHtml += '<a id="pgNext" onclick="'+pagerName+'.next();" class="pg-normal" href="#list"> Next &#187;</a>';            
        
        element.innerHTML = pagerHtml;
    }
}

