// ====================================================
// javascript.js	-	version 1.00
// Joseph Bartlett	-	05/13/2004
// ====================================================
// Javascript functions for use in site.
// ====================================================
// END OF DESCRIPTION
// ====================================================


// ====================================================
// Common functions
// ====================================================
	// Function to alter height of go_bar according
	// to its contents. Called from within go_bar.
	function bar_load() {
		parent.document.getElementById('go_bar').style.height = document.body.scrollHeight;
	}

	function calendar_change_date(gc_location, gc_bar, gn_year, gn_month) {
		location.href = gc_location + '?gn_month=' + gn_month + '&gn_year=' + gn_year + '&gc_bar=' + gc_bar;
	}


// ====================================================
// END OF JAVASCRIPT
// ====================================================
