function displayYear(){
		var theDate = new Date;
		var myYear = theDate.getFullYear();
		document.write("Copyright " + myYear + " Washington State Society for Clinical Social Work")

}


function writeFooter(){
	var open1 = '<a href="';
	var open2 = '">';
	var close = '</a>';
	var open3 = '<br><a href="';
			//document.write(open1 + 'index.htm' + open 2 + 'Washington State Society for Clinical Social Work' + close)
	document.write(open1 + 'index.php' + open2 + 'Home' + close + ' | ' + 
				   open1 + 'membership.php'+ open2 + 'Membership' + close + ' | ' + 
				   open1 + 'roster.php'+ open2 + 'Member Roster' + close + ' | ' + 
				   open1 + 'education.php'+ open2 + 'Educational Offerings' + close + ' | ' + 
				   open1 + 'calendar.php'+ open2 + 'Calendar' + close + ' | ' + 
				   open1 + 'student.php'+ open2 + 'Students' + close + ' | ' + 
				   open1 + 'newprof.php'+ open2 + 'New Professionals' + close + ' | ' + 
				   open1 + 'legislation.php'+ open2 + 'Legislation' + close + ' | ' + 
				   open1 + 'licensure.php'+ open2 + 'Licensure' + close + ' | ' +
		           open1 + 'vop.php'+ open2 + 'Veterans Outreach' + close + ' | ' +
				   open1 + 'aboutus.php' + open2 + 'About Us' + close
					);		
	document.write(open3 + 'http://www.katewitt.com/' + open2 + 'Site built and maintained by Kate Witt Web Consulting' + close);
	
	//var showtag="@";
	//var showlink="Contact WSSCSW";
	//var showname="admin";
	//var showhost="wsscsw.org";
	//document.write("<br><a href="+"mail"+"to:"+showname+showtag+showhost+">"+showlink+"</a>")
	
	
}

function writeContactUs(){
	
	var showtag="@";
	var showlink="Contact WSSCSW";
	var showname="admin";
	var showhost="wsscsw.org";
	document.write("<a href="+"mail"+"to:"+showname+showtag+showhost+">"+showlink+"</a>")
}