

// Function to print out today's date at top of page
function currDate()
{
// Array of day names
var dayNames = new
Array("Sunday","Monday","Tuesday","Wednesday","Thursday","Friday","Saturday");

// Array of month Names
var monthNames = new
Array("January","February","March","April","May","June","July","August","September","October","November","December");

var now = new Date();
year = now.getFullYear();

document.write("Today is " + dayNames[now.getDay()] + ", "+ 
monthNames[now.getMonth()] + " " + now.getDate() + ", " + year);
}


// Function to print out someone's email address on web page given user name and domain
function eaddr(sb_user,sb_domain)
{
	var sb_recipient = sb_user + "@" + sb_domain
	var sb_url = "mailto:" + sb_recipient
	return document.write(sb_recipient.link(sb_url))
}


// Function to print out when page last revised
// Original: Kenneth Preston <drkennan@ionet.net> 
// free online at http://javascript.internet.com 
function footerInfo()
{
	var m = "Page last reviewed on " + document.lastModified;
	var p = m.length-8;
	document.writeln("<center>");
	document.write("This page reflects the views of the West Springfield High School PTA.");
	document.writeln("<br>");
	document.write("Fairfax County Public Schools does not control or guarantee the accuracy,");
	document.writeln(" relevance, timeliness, or completeness of this information.");
	document.writeln("<br>");
	document.write(m.substring(p, 0));
	document.write(" by WSHS Curator ");
	eaddr("wshscurator","fcps.edu");
	document.writeln("</center>");
}


// Function to print out the site navigation menu on each web page
function siteMenu()
{
	document.writeln('<ul class="navbar">');
	document.writeln('<li>'+'<a href="http://www.fcps.edu/westspringfieldhs/ptsa/executive.htm">Executive Board</a>');
	document.writeln('</li>');
	document.writeln('<li>'+'<a href="http://www.fcps.edu/westspringfieldhs/ptsa/ptsacom.htm">Committees</a>');
	document.writeln('</li>');
	document.writeln('<li>'+'<a href="http://www.fcps.edu/westspringfieldhs/ptsa/calendar.htm">Events Calendar</a>');
	document.writeln('</li>');
	document.writeln('<li>'+'<a href="http://www.fcps.edu/westspringfieldhs/ptsa/minlist.htm">Meeting Minutes</a>');
	document.writeln('</li>');
	document.writeln('<li>'+'<a href="http://www.fcps.edu/westspringfieldhs/ptsa/nl.htm">Newsletters</a>');
	document.writeln('</li>');
	document.writeln('<li>'+'<a href="http://www.fcps.edu/westspringfieldhs/ptsa/committees/member.htm">Membership</a>');
	document.writeln('</li>');
	document.writeln('<li>'+'<a href="http://www.fcps.edu/westspringfieldhs/ptsa/ptsavolunteer.htm">Volunteer Opportunities</a>');
	document.writeln('</li>');
	document.writeln('<li>'+
'<a href="http://www.fcps.edu/westspringfieldhs/ptsa/committees/ptsaangp.htm">All Night Grad Party</a>');
	document.writeln('</li>');
	document.writeln('<li>'+'<a href="http://www.fcps.edu/westspringfieldhs/ptsa/refinf.htm">Reflections Information</a>');
	document.writeln('</li>');
	document.writeln('<li>'+'<a href="http://www.fcps.edu/westspringfieldhs/ptsa/ptsalinks.htm">Useful Links </a>');
	document.writeln('</li>');
	document.writeln('<li>'+'<a href="http://www.fcps.edu/westspringfieldhs/">WSHS Home</a>');
	document.writeln('</li>');
	document.writeln('<li>'+'<a href="http://www.fcps.edu/westspringfieldhs/ptsa/ptsa.htm">PTSA Home</a>');
	document.writeln('</li>');
	document.writeln('</ul>');
}
