// JavaScript Document //

<!-- spiffy expanable menu script begins here.  //-->

window.onload=montre;
function montre(id) {
var d = document.getElementById(id);
for (var i = 1; i<=13; i++) {
		if (document.getElementById('smenu'+i)) {document.getElementById('smenu'+i).style.display='none';}
	}
if (d) {d.style.display='block';}
}

function protectAddress( name, account, domain )	{
	var tag1 = "mai"
	var tag2 = "lto:" 
	document.write("<a h" + "ref=" + tag1 + tag2 + account + "@" + domain + ">"+name +"</a>");
	}

function modifyDate() {
	
var months = new Array();
months[1] = "January";
months[2] = "February";
months[3] = "March";
months[4] = "April";
months[5] = "May";
months[6] = "June";
months[7] = "July";
months[8] = "August";
months[9] = "September";
months[10] = "October";
months[11] = "November";
months[12] = "December";

dateObj = new Date(document.lastModified);
lmonth = months[dateObj.getMonth() + 1];

date = dateObj.getDate();
year = dateObj.getYear();
if (year < 1000) year += 1900;

pagemod = document.write ("&nbsp;&nbsp;Last updated:" + " " + lmonth + " " + date + ", " + year);

return pagemod;
}