(function(){
// Your URL
var url = 'https://www.paradiseexteriors.com/appt-page-links/win-appt/';
// Delay before the redirect takes place, in seconds
var delay = 30;
window.setTimeout(function() {
window.open(url, '_parent');
}, delay * 1000);
})();