function startList(msg, y, m, d) 
{
	
	if (document.all&&document.getElementById) 
	{
		navRoot = document.getElementById("nav");
		for (i=0; i<navRoot.childNodes.length; i++) 
		{
			node = navRoot.childNodes[i];
			if (node.nodeName=="LI") 
			{
				node.onmouseover=function() 
				{
					this.className+=" over";
				}
				node.onmouseout=function() 
				{
					this.className=this.className.replace(" over", "");
				} //node
			}// if
		}// for
	}//if
				
}


function getE(myU, myD, color)
{
	var e1 = "a href=";var e2 = "mai" + "lto";var e3 = "&#64;";
	document.write("<" + e1);document.write('"' + e2);document.write(':');document.write(myU + e3 + myD);
	document.write('"');document.write('style="text-decoration:none;">');
	document.write('<span style="color:#' + color + ';">');
	document.write(myU + e3 + myD);
	document.write('</span>');
	document.write("</a>");

}
