function showEmail(name, address) {
	prompt("Below is the spam-protected e-mail address of " + name + ":", address);
	return false;
}
function pollsub() {
	if (pollform.poll[0].checked) {
		alert("You need to select an option!");
		return false;
	} else {
		return true;
	}
}

function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}

MM_reloadPage(true);

function clearit(what) {
	if (what.value == what.defaultValue) {
		what.value = "";
	}
}

function fillit(what) {
	if (what.value == "") {
		what.value = what.defaultValue;
	}
}

function testshout(what) {
	var ok = true;
	if (what.shoutname.value == "" || what.shoutname.value == "Name") { ok = false; }
	if (what.shoutemail.value == "" || what.shoutemail.value == "Email") { ok = false; }
	if (what.shoutmsg.value == "" || what.shoutmsg.value == "Message") { ok = false; }
	if (!ok) {
		alert("You have errors in your submission. Please check them and resubmit.");
		return false;
	} else {
		return true;
	}
}