You are on page 1of 1

function loadNextPage()

{
window.location.href = 'NextPage.html';
// Any other page you wish to call
// You can also use form.submit() method here.
}
setTimeout("loadNextPage()",60*1000);

You might also like