<!--
// 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 += " " + "Jan"
	}
	if (monthval == "1") {
		showAs += " " + "Feb"
	}
	if (monthval == "2") {
		showAs += " " + "Mar"
	}
	if (monthval == "3") {
		showAs += " " + "Apr"
	}
	if (monthval == "4") {
		showAs += " " + "May"
	}
	if (monthval == "5") {
		showAs += " " + "Jun"
	}
	if (monthval == "6") {
		showAs += " " + "Jul"
	}
	if (monthval == "7") {
		showAs += " " + "Aug"
	}
	if (monthval == "8") {
		showAs += " " + "Sep"
	}
	if (monthval == "9") {
		showAs += " " + "Oct"
	}
	if (monthval == "10") {
		showAs += " " + "Nov"
	}
	if (monthval == "11") {
		showAs += " " + "Dec"
	}
	setBrowser2();
	if (is_NS) 
	{
		yearval = yearval + 1900;
	}	
	showAs += " " + yearval; 
	return showAs;
}

//-->