// LAST MODIFIED

function showLastUpdate() 
{
document.write("Last Update: ")
document.write(document.lastModified);

}



// Copyright Function

function showCopyright() 
{

var d = new Date()
document.write("&copy; ");
document.write(d.getFullYear())
document.write(" St. Katherine Greek Orthodox Church");

}




//ROLLOVER FUNCTION

<!--

if (document.images) {

button1on = new Image();
button1on.src = "../Images/pict_calendar_ro.jpg";
button1off = new Image();
button1off.src = "../Images/pict_calendar.jpg";

button2on = new Image();
button2on.src = "../Images/pict_contactus_ro.jpg";
button2off = new Image();
button2off.src = "../Images/pict_contactus.jpg";

button3on = new Image();
button3on.src = "../Images/pict_donations_ro.jpg";
button3off = new Image();
button3off.src = "../Images/pict_donations.jpg";

button4on = new Image();
button4on.src = "../Images/pict_search_ro.jpg";
button4off = new Image();
button4off.src = "../Images/pict_search.jpg";

button5on = new Image();
button5on.src = "../Images/pict_sitemap_ro.jpg";
button5off = new Image();
button5off.src = "../Images/pict_sitemap.jpg";

}

function turnOn(imageName) {

 if (document.images) {

 document[imageName].src = eval(imageName + "on.src");

 }

}


function turnOff(imageName) {
 if (document.images) {
 document[imageName].src = eval(imageName + "off.src");

 }

}


function Start(page) {
OpenWin = this.open(page, "CtrlWindow", "toolbar=yes,menubar=yes,location=yes,scrollbars=yes,resize=yes");

}
// -->

