// go to the special url
function goToURL(URL)
{
 eval(window.location.replace(URL));
}

// go to the special url with countdown
var timeurl = "http://www.siteforum.com";
function goToTimeURL(URL2,TIMESET)
{
 timeurl = URL2;
 setTimeout('location.href = timeurl',TIMESET);
}