function timedRedirect(url , delay) {
	setTimeout("location.href = '" + url + "';",delay);
}
