function chgimg(obj,source,desc)
{
    obj.src = 'images/'+source;
    window.status = desc;
}

function link(destination)
{
    window.location.href = destination;
}

function newWindow()
{
    NewWindow = window.open("help.html","NewWin",
    "scrollbars=no,width=500,height=250");

    NewWindow.focus();
}

function lastModified()
{
    var months = new Array(13);
	months[1] = "Jan";
	months[2] = "Feb";
	months[3] = "Mar";
	months[4] = "Apr";
	months[5] = "May";
	months[6] = "Jun";
	months[7] = "Jul";
	months[8] = "Aug";
	months[9] = "Sep";
	months[10] = "Oct";
	months[11] = "Nov";
	months[12] = "Dec";

     var moddate = new Date(document.lastModified)
     var month = months[moddate.getMonth() + 1]
     var date = moddate.getDate()
     var year = moddate.getFullYear()
     document.write('Last Updated: ' + month + " " + date + ", " + year);
}

function bookmark()
{
      netscape="First push OK and then hit CTRL+D to add a bookmark to this site.  Thank You!"

	if (navigator.appName=='Microsoft Internet Explorer')
        {
	    window.external.AddFavorite('http://www.leipjax.org','L.E.I.P. Jacksonville');
        }
	else if (navigator.appName=='Netscape')
        {
	    alert(netscape);
        }
}
	
    
