function redirect (url,timeout) 
{ 
	setTimeout("go_now('" + url + "')", timeout);
}

function go_now (url)
{
	window.location.href = url;
}