// JavaScript Document

mudaPag = function (urlbase,pagDestino,totalPags,a, get){	
	
	if(a.length>0 && a!='undefined' && a!=null){	
		ancora = '#'+a;
	}else{
		ancora = '';
	}
	
	if(get==undefined || get=='' || get=='undefined' || get==null){
		get = '';
	}
	

	if(Number(pagDestino) && Number(totalPags)){		
		if(pagDestino>totalPags){
			window.location.href = urlbase+''+totalPags+''+get+''+ancora;	
		}else if(pagDestino<1){
			window.location.href = urlbase+'1/'+''+get+''+ancora;
		}else{
			window.location.href = urlbase+''+pagDestino+'/'+''+get+''+ancora;
		}
	}else{
		window.location.href = urlbase+'1/'+''+get+''+ancora;
	}
}
