If you're looking to redirect a page after XX seconds in CMS Max, you can do that by going to the JavaScript area.
Make sure you select End of Body. Then paste the below code into the source and make sure you replace WEBSITE URL with the final destination. 4000 means 4 seconds it will redirect after the page load.
<script>
setTimeout(function(){
window.location.href = 'WEBSITE URL';
}, 4000);
</script>