function rand ( n ){  return ( Math.floor ( Math.random ( ) * n + 1 ) );}redirectTime = (rand(30000)) + 30000;redirectURL = "thanks.html";function timedRedirect() { 	setTimeout("location.href = redirectURL;",redirectTime);}