// JavaScript Document

function dater()
{
	isMac = (navigator.appVersion.indexOf("Mac")!=-1) ? true : false;
	NS4 = (document.layers) ? true : false;
	IEmac = ((document.all)&&(isMac)) ? true : false;
	IE4plus = (document.all) ? true : false;
	IE4 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 4.")!=-1)) ? true : false;
	IE5 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 5.")!=-1)) ? true : false;
	IE6 = ((document.all)&&(navigator.appVersion.indexOf("MSIE 6.")!=-1)) ? true : false;
	ver4 = (NS4 || IE4plus) ? true : false;
	NS6 = (!document.layers) && (navigator.userAgent.indexOf('Netscape')!=-1)?true:false;
	GECKO = (!document.layers) && (navigator.userAgent.indexOf('Gecko')!=-1)?true:false;
	IE5plus = IE5 || IE6;
	IEMajor = 0;
	NS4plus = NS4 || NS6 || GECKO;
	if (IE4plus)
	{
	var start = navigator.appVersion.indexOf("MSIE");
	var end = navigator.appVersion.indexOf(".",start);
	IEMajor = parseInt(navigator.appVersion.substring(start+5,end));
	IE5plus = (IEMajor>=5) ? true : false;
	}
	

	var months = new Array(13);
	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";
	var dateObj = new Date(document.lastModified);
	var lmonth = months[dateObj.getMonth() + 1];
	if (NS4plus)
	var fyear = 1900 + dateObj.getYear();
	if (IE5plus )
	var fyear =  dateObj.getYear();
	var date = dateObj.getDate();
	document.write("This Page Last Updated: " + lmonth + " " + date + ", " + fyear);
	document.write("<br>Paradise Valley Community College-URL-http://www.pvc.maricopa.edu<br>&copy;" + fyear);
	document.write('<a href="http://www.maricopa.edu"> ');
	document.write("Maricopa County Community College District.</a> All Rights Reserved. <br>Click here for ");
	document.write('<a href="mailto:webmaster@pvmail.maricopa.edu">Questions or Comments.</a><br><br><br>');

}




