// Created: 8/21/2006
// Modified: See Line 10

// Called when page loads to display the date of the last update:
function genHTML()
{
	var html = "";
	
	html += "Last Updated: ";
	html += "August 29, 2006";
	
	var outP = document.getElementById( "updateP" );
	outP.innerHTML = html;
}

// Called by "onmouseover" and "onmouseout" to change bgcolor of the table cell:
function change(cellID)
{
	document.getElementById(cellID).bgColor = "#990000";
}
function changeBack(cellID)
{
	document.getElementById(cellID).bgColor = "#999999";
}

function enlarge(num)
{
	document.getElementById( num ).size = "+1";
}

function shrink(num)
{
	document.getElementById( num ).size = "";
}

// Called by link that reads "E-mail Me"
function sendMail()
{
	var emailID = "dancaps";
	var domain = "gmail.com";
	
	window.location = "mailto:" + emailID + "@" + domain;
}
