// ************************************************************************<BR>
// Last modified and copyright information<BR>
// Copyright 2000 David Salgueiro. All Rights Reserved.<BR>
// <B>Do not modify in design view. Switch to source view.</B><BR>
// ************************************************************************<BR>
// <SCRIPT>
var thisPage = new CopyRite;
function CopyRite()
{
var maillinktext = "Email me";
var postlinktext = "for publishing information.";
var username = "David.Salgueiro";
var domain = "lineone.net";

//var myfontstyle = "<font face='Arial' size='-2'>";
var myfontstyle = "<font align='left' face='Times' size='2'>";

var cpyrtmsg = "All rights reserved.";

var days = new Array(8);
days[1] = "Sunday";
days[2] = "Monday";
days[3] = "Tuesday";
days[4] = "Wednesday";
days[5] = "Thursday";
days[6] = "Friday";
days[7] = "Saturday";

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 wday = days[dateObj.getDay() + 1];
var lmonth = months[dateObj.getMonth() + 1];
var date = dateObj.getDate();
var fyear = dateObj.getFullYear();

// start writing to the document

document.write("<hr align='left' noShade SIZE='1' width='100%'>");

document.write(myfontstyle);
document.write("This site was last updated on " + wday + ", " + lmonth + " " + date + ", " + fyear  + ".<BR></font>");

document.write(myfontstyle + "&copy All photographs copyright David Salgueiro, " + fyear + " " + cpyrtmsg + "</font><BR>");

document.write("<a href='mailto:" + username + "@" + domain + "' ");
document.write("title='Click here to send an e-mail'>" + myfontstyle + maillinktext + "</font></a>");
document.write(myfontstyle + " " + postlinktext + "</font><BR>");
}
