function Pager(tableName, itemsPerPage) {
    this.tableName = tableName;
    this.itemsPerPage = itemsPerPage;
    this.currentPage = 1;
    this.pages = 0;
    this.inited = false;
    
    //
    // Visualizzo i record della tabella
    // @from - numero record iniziale
    // @to - numero record finale
    //
    this.showRecords = function(from, to) {        
        var rows = document.getElementById(tableName).rows;
        for (var i = 1; i < rows.length; i++) {
            if (i < from || i > to)  
                rows[i].style.display = 'none';
            else
                rows[i].style.display = '';
        }
    }
    
    //
    // Visualizzo la pagina corrente
    // @pageNumber - la pagina corrente da visualizzare
    //
    this.showPage = function(pageNumber) {
    	if (! this.inited) {
    		alert("L'oggetto non è stato inizializzato.");
    		return;
    	}
        
        // metto normale la pagina 
        var oldPageAnchor = document.getElementById('pg'+this.currentPage);
        oldPageAnchor.className = 'pg-normal';
        
        // setto la pagina corrente
        this.currentPage = pageNumber;
     
        // in base alla selezione della pagina 
        // riscrivo il pagenav
        this.showPageNav('pager', 'pageNavPosition');
        
        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);
    }   
    
    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("L'oggetto non è stato inizializzato.");
    		return;
    	}
       
        // se ci sono almeno due pagine
        if(this.pages > 1){ 
            var element = document.getElementById(positionId);
            var pagerHtml = '<span onclick="' + pagerName + '.prev();" class="pg-normal"> &#171 Indietro </span>';
            
            if(this.pages <= 5){ // se le pagine sono inferiori a 15
                for (var page = 1; page <= this.pages; page++)
                    pagerHtml += '<span id="pg' + page + '" class="pg-normal" onclick="' + pagerName + '.showPage(' + page + ');">' + page + '</span>';
            }else{
                inizio = this.currentPage;
                if(inizio == 2) inizio--;
                if(inizio > 2) inizio-=2; // imposto la pagina iniziale
                
                fine = inizio + 5;
                if (fine >= this.pages){
                    rapp = fine - this.pages;
                    fine = this.pages;
                    inizio = inizio - rapp;
                }

                for (var page = inizio; page <= fine; page++)
                    pagerHtml += '<span id="pg' + page + '" class="pg-normal" onclick="' + pagerName + '.showPage(' + page + ');">' + page + '</span>';
            }
            
             pagerHtml += '<span onclick="'+pagerName+'.next();" class="pg-normal"> Avanti &#187;</span>';
                                
        }else{ // ci sono più di 5 pagine
            
        }

        element.innerHTML = pagerHtml;
    }
    
    /* ORIGINALE
    this.showPageNav = function(pagerName, positionId) {
        if (! this.inited) {
            alert("L'oggetto non è stato inizializzato.");
            return;
        }

        if(this.pages > 1){ // se c'è più di una pagina
            var element = document.getElementById(positionId);
            var pagerHtml = '<span onclick="' + pagerName + '.prev();" class="pg-normal"> &#171 Indietro </span>';

            if(this.pages <= 25){ // se le pagine sono inferiori a 15
                for (var page = 1; page <= this.pages; page++)
                    pagerHtml += '<span id="pg' + page + '" class="pg-normal" onclick="' + pagerName + '.showPage(' + page + ');">' + page + '</span>';
            }

            pagerHtml += '<span onclick="'+pagerName+'.next();" class="pg-normal"> Avanti &#187;</span>';            

        }
        // scrivo la barra
        element.innerHTML = pagerHtml;
    }
    */
}

