function redirect(url, timeout)
{
	if( typeof timeout == 'undefined' ) {
		timeout = 2000;
	}
	setTimeout(function() { window.location = url }, timeout);
}