// javascript functions

// function to display the calendar page as a pop up
// parameter list indicates which class of events to display (not yet implemented)

function calendar(event) {
	window.open("calendar.php","","width=854,height=700,scrollbars=yes");
}

// function to display Disclaimer popup page

function disclaimer() {
	window.open("disclaimer.htm","","width=854,height=700,scrollbars=yes");
}

// function to display the photo gallery as a pop up

function photos() {
	window.open("photos.htm","","width=858,height=700,scrollbars=yes");
}

// function to display the tax calculator as a pop up

function taxcalc() {
	window.open("taxcalc.htm","","width=858,height=700,scrollbars=yes");
}

// function to print a page

function printPage() {
	window.print();
}

// function to close a window

function closePage() {
	window.close();
}

// functions to change the color of text to light green.  Used on mouseover.
// Complimentary function returns color to dark green
// param is html element object to change

function hover(el) {
	el.style.color = "#288e36";
}

function out(el) {
	el.style.color = "#046212";
}

