/*
Date Modified script from Coolnerds.com
*/

function lastModified()
	{
	//-- Returns date this page was last modified.
	var modiDate=new Date(document.lastModified);
	var showAs="<font face=\"Verdana, Arial, Helvetica, sans-serif\" size=\"1\" color=\"#000000\">Last modified: " + (modiDate.getMonth()+1)+"/"+modiDate.getDate()+"/"+(modiDate.getYear()+1900);
	return showAs;
	}
