Is it feasible to incorporate a click button cycle URL function that alternates between URLs in a specified order to this script?
<script type="text/javascript>
var urls = new Array();
urls[0] = "google.com";
urls[1] = "amazon.com";
var random = Math.floor(Math.random()*urls.length);
window.location = urls[random];
</script>