I am currently using the following code to redirect a visitor after a set time.
(function(){
setTimeout(function(){
window.location="http://google.com/";
},3000); /* 1000 = 1 second*/
})();
How would I make this a random time from 10-25 seconds?