function setPortal(portal)
{
	// Set the portal to the sent-in type:
	if (portal == "NEWS")
	{
		document.getElementById("portalImageID").src="img/main_left_portal_news.gif";
		document.getElementById("portalTextID").innerHTML="The news section is updated on a weekly basis (every Tuesday).  Along with text describing any important events for a given week, a custom image is created for each news post.  Users are allowed to comment on the news item if they wish.";
	}
	else if (portal == "WEBDEV")
	{
		document.getElementById("portalImageID").src="img/main_left_portal_webdev.gif";
		document.getElementById("portalTextID").innerHTML="This section features websites I have created that span almost a decade's work.  Both professional, business websites are featured as well as artistic, personal websites.";
	}
	else if (portal == "GAMESPORT")
	{
		document.getElementById("portalImageID").src="img/main_left_portal_gamesport.gif";
		document.getElementById("portalTextID").innerHTML="Although I have led and worked with several modification teams for Quake 2 and other engines, this section primarily focuses on games I have developed from the ground-up.";
	}
	else if (portal == "RESUME")
	{
		document.getElementById("portalImageID").src="img/main_left_portal_resume.gif";
		document.getElementById("portalTextID").innerHTML="My resumé is viewable online in this section, or it may be downloaded as an Adobe PDF file or as a Microsoft Word file.";
	}
	else if (portal == "CONTACT")
	{
		document.getElementById("portalImageID").src="img/main_left_portal_contact.gif";
		document.getElementById("portalTextID").innerHTML="To get in touch with me, simply send an e-mail to <a href=\"mailto:dbh@davidbhowe.net\">dbh@davidbhowe.net</a>.  I respond to all e-mails sent to that address, typically within 24 hours.";
	}

	return true;
}
