// External JavaScript Library for Tom's Website 
// Last Update: 10.12.2004
// Thanks for reading my source 



// Description   :	Display a spam-proof e-mail address
function displayEMail(text1, text2, text3)
{
	document.write("<A href=" + "mail" + "to:" + text1 + "@" + text2 + "." + text3 + ">" + "e-mail" + "</a>")
}

function displayEMailMenu(text1, text2, text3)
{
	document.write("<A href=" + "mail" + "to:" + text1 + "@" + text2 + "." + text3 + "><SPAN>&nbsp;</SPAN>" + "e-mail" + "</a>")
}

//Print out the file date:
function fileDate()
{
	modified = new Date(document.lastModified);
	year = modified.getYear();
	month = modified.getMonth() + 1;
	// Handle browser specific bugs:
	if (year < 100) year += 2000;
	if (year < 2000 && year >= 1900) year += 100; //Explorer 4
	if (year > 2050) year -= 70; //Navigator 4.5
	document.write(modified.getDate() + "." + month + "." + year); 
}
