﻿// JScript File

function irapagina(numpag,totalpags)
{
    for (i=1;i<=totalpags;i++)
    {
        document.getElementById("pagina_" + i).style.display="none";
        document.getElementById("paginacionSup_" + i).className = "";
        document.getElementById("paginacionInf_" + i).className = "";
    }
    document.getElementById("pagina_" + numpag).style.display = "block";
    document.getElementById("paginacionSup_" + numpag).className = "selected";
    document.getElementById("paginacionInf_" + numpag).className = "selected";
   
}
