// JavaScript Document

p = [
		"http://www.istheseaangry.com/yes.html",
		"http://www.istheseaangry.com/no.html",
		];
		function randomLink(list) {
		location.href=p[Math.floor(Math.random()*p.length)];
		 }
		 
