// JavaScript Document
function redirect(val, timeout)
{
	setTimeout("location.href='"+val+"'", timeout);
}
