function redirect(list) {
	var chosenIndex = list.selectedIndex;
	var redirectURL = list.options[chosenIndex].value;
	location.href = redirectURL;
	return true;
}

//E-Mail this page
function mailpage() {
	mail_str = "mailto:?subject=Check out the " + document.title;
	mail_str += "&body=I thought you might be interested in the " + document.title;
	mail_str += ". You can view it at, " + location.href; 
	location.href = mail_str;
}

function popopen(thePage) {
	window.open('/Content/'+thePage+'.php','mywin',
'width=700,toolbar=0,resizable=1,menubar=0,directories=0,location=0,status=0,scrollbars=1');
	return false;
}
