The timer is supposed to forward after 10,000 milliseconds, and right now it's forwarding after about 5,000. The whole purpose of this is to forward people to the forum from the splash page.
Here is the code.
<meta charset="UTF-8">
<meta http-equiv="refresh" content="3;url=forumlink.php">
<script language="javascript">
function.delayer(){
window.location.href = "url.html"
/* ... */
}
<body onLoad="setTimeout('delayer()', 10000)">
/* CSS and HTML */
</body>