Direct script with no time delay _______________________________________________________ Using Time Delay

Prepare to be redirected!

This page is a time delay redirect, please update your bookmarks to our new location!

Explaination: Time Delay Redirect The most important part of getting the delay to work is being sure to use the JavaScript function setTimeout. We want the delayer() function to be used after 5 seconds or 5000 milliseconds (5 seconds), so we pass the setTimeout() two arguments. 'delayer()' - The function we want setTimeout() to execute after the specified delay. 5000 - the number of millisecods we want setTimeout() to wait before executing our function. 1000 miliseconds = 1 second. ------------------------------