//
// @(#)pagegoodies.js   1.00: D. R. Stumpenhorst - 12/31/2005
//
// LIBRARY:     pagegoodies.js
// TYPE:        JavaScript
//
// FUNCTIONS:
//
// DESCR:       Generic java script page formatting goodies
//
// Revision history
// REV:		DATE:  		WHO:	COMMENT:
// 1.00		12/31/2005	drs	Original Version
//
//
// Display Standardized signature
//

function display_signature() {
	
	document.writeln("<br><div align=\"right\">");
	document.writeln("<font class=\"note\">");
	document.writeln("St. John's Outreach Committee");
	document.writeln("</font></div>");
}	

// Display the St. Johns Contact
//

function display_contacts() {
	document.writeln("<br><br><div align=\"right\">");
	document.writeln("<font class=\"date\">");
	document.writeln("Questions? Contact St. John's");
	document.writeln("</font></div>");
}

// Display Standardized Web Site contact information
//

function display_webcontact() {
	
	document.writeln("<div align=\"left\">");
	document.writeln("<font class=\"menu\">");
	document.writeln("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Site Comments?<br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Send mail to..<br>");
	document.writeln("&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a href=\"mailto:drstumpy@verizon.net\">");
	document.writeln("Webmaster</a>");
	document.writeln("</font></div>");
}
