<!--
// Returns date this page was last modified.
function setBrowser2()
{
	is_NS = navigator.appName=="Netscape";
	is_Ver = parseFloat(navigator.appVersion);
	is_NS4 = is_NS&&is_Ver>=4.0&&is_Ver<5.0;
	is_GNS4 = is_NS&&is_Ver>=5.0;
}

function lastModified() 
{
   	var modiDate=new Date(document.lastModified);
  	var showAs = modiDate.getDate();
	var monthval = modiDate.getMonth();
	var yearval = modiDate.getYear();
	if (monthval == "0") {
		showAs += " day of " + "January"
	}
	if (monthval == "1") {
		showAs += " day of " + "February"
	}
	if (monthval == "2") {
		showAs += " day of " + "March"
	}
	if (monthval == "3") {
		showAs += " day of " + "April"
	}
	if (monthval == "4") {
		showAs += " day of " + "May"
	}
	if (monthval == "5") {
		showAs += " day of " + "June"
	}
	if (monthval == "6") {
		showAs += " day of " + "July"
	}
	if (monthval == "7") {
		showAs += " day of " + "August"
	}
	if (monthval == "8") {
		showAs += " day of " + "September"
	}
	if (monthval == "9") {
		showAs += " day of " + "October"
	}
	if (monthval == "10") {
		showAs += " day of " + "November"
	}
	if (monthval == "11") {
		showAs += " day of " + "December"
	}
	

	if (navigator.appName == "Netscape"){
		yearval= 1900 + yearval;
	}else if (yearval < 2000){
		yearval= 1900 + yearval;
	}
			
	showAs += " in the year " + yearval ; 
	return showAs;
}

//-->