function getRandomLink() {
	var pages = 27;
	var newpage = "postit";
	var dt = new Date();
	var hr = dt.getSeconds();
	var ra = hr % pages;
	var re = ++ra;
	if (re == 1) {newpage="postit/1.html"}
	if (re == 2) {newpage="postit/2.html"}
	if (re == 3) {newpage="postit/3.html"}
	if (re == 4) {newpage="postit/4.html"}
	if (re == 5) {newpage="postit/5.html"}
	if (re == 6) {newpage="postit/6.html"}
	if (re == 7) {newpage="postit/7.html"}
	if (re == 8) {newpage="postit/8.html"}
	if (re == 9) {newpage="postit/9.html"}
	if (re == 10) {newpage="postit/10.html"}
	if (re == 11) {newpage="postit/11.html"}
	if (re == 12) {newpage="postit/12.html"}
	if (re == 13) {newpage="postit/13.html"}
	if (re == 14) {newpage="postit/14.html"}
	if (re == 15) {newpage="postit/15.html"}
	if (re == 16) {newpage="postit/16.html"}
	if (re == 17) {newpage="postit/17.html"}
	if (re == 18) {newpage="postit/18.html"}
	if (re == 19) {newpage="postit/19.html"}
	if (re == 20) {newpage="postit/20.html"}
	if (re == 21) {newpage="postit/21.html"}
	if (re == 22) {newpage="postit/22.html"}
	if (re == 23) {newpage="postit/23.html"}
	if (re == 24) {newpage="postit/24.html"}
	if (re == 25) {newpage="postit/25.html"}
	if (re == 26) {newpage="postit/26.html"}
	if (re == 27) {newpage="postit/27.html"}
return newpage;
}

function random() {
	location.href = getRandomLink();
	return true;
}