function waitToGo(url)
{
	setTimeout("redirect('" + url + "')", 10000);
}

function redirect(url)
{
	window.location = url;
}