var images = new Array(
	"psa_cert.png",
	"psa_skywarn.png",
	"psa_scouts.png");
var links = new Array(
	"http://www.citizencorps.gov/cert/",
	"http://www.nws.noaa.gov/skywarn/",
	"http://www.scouting.org/");
var whichone = Math.floor(Math.random() * images.length);
if (links[whichone] == "")
{
	document.write('<img src="media/' + images[whichone] + '\" id=\"PSA_spot\"/>');
} else {
	document.write('\<a href=\"' + links[whichone] + '\" target=\"_blank\"\>');
	document.write('<img border="0" src=\"media/' + images[whichone] + '\" id=\"PSA_spot\"/>' + '\n</a>');
}
