<!--
var iExpAprP = 0;
var iExpAprPP = 5;
function fExpAprsPaginacion(sw){
	if(sw==0){
		$('#tblExpAprs tr td:visible').hide();
		$('#tblExpAprs tr td:first').show();
		$('#tblExpAprs tr td:last').show();
		iExpAprP = iExpAprP - 1;
		if(iExpAprP < 0){
			iExpAprP = parseInt(($('#tblExpAprs tr td').length-2)/iExpAprPP);
		}
		$('#tblExpAprs tr td:eq(' + String(iExpAprP * iExpAprPP + 1) + '), #tblExpAprs tr td:eq(' + String(iExpAprP * iExpAprPP + 2) + '), #tblExpAprs tr td:eq(' + String(iExpAprP * iExpAprPP + 3) + '), #tblExpAprs tr td:eq(' + String(iExpAprP * iExpAprPP + 4) + '), #tblExpAprs tr td:eq(' + String(iExpAprP * iExpAprPP + 5) + ')').fadeIn('normal');
	}

	else{
		$('#tblExpAprs tr td:visible').hide();
		$('#tblExpAprs tr td:first').show();
		$('#tblExpAprs tr td:last').show();
		iExpAprP = iExpAprP + 1;
		if(iExpAprP * iExpAprPP >= $('#tblExpAprs tr td').length-2){
			iExpAprP = 0;
		}
		$('#tblExpAprs tr td:eq(' + String(iExpAprP * iExpAprPP + 1) + '), #tblExpAprs tr td:eq(' + String(iExpAprP * iExpAprPP + 2) + '), #tblExpAprs tr td:eq(' + String(iExpAprP * iExpAprPP + 3) + '), #tblExpAprs tr td:eq(' + String(iExpAprP * iExpAprPP + 4) + '), #tblExpAprs tr td:eq(' + String(iExpAprP * iExpAprPP + 5) + ')').fadeIn('normal');
	}
}
//-->