I need a script thats redirects the user to a second side, when the mainpage need to long to load.
I did this:
setTimeout("location.replace('contact.html')",10000);
Instead, you can try
setTimeout(function(){window.location='contact.html'},10000);