// Em script
function dispEm(a)
{
		var em = a;
		em += "@rmstoof";
		em += ".com";
		//document.write(em);
		f = '<a href="mailto:' + em + '?subject=web%20response' + '">' + em + '</a>'
		document.write(f);
}

// Nav highlighting scripts
var pg = "";
function pageOn(p)
{
	var px = document.getElementById(p);
	px.className = "cellDown";	
	pg = px;
}
function mOvr (n)
{
	n.className = "cellDown";
}
function mOut (n)
{
	if (n != pg)
	{
	n.className = "cellUp";
	}
}
