// JavaScript Document
function writeFooter(){
	var txt;
	txt = '<p>';
	txt += '&copy; 2008 <a href="http://www.southeastmn.edu/" target="_blank" class="footer_link">Minnesota State College Southeast Technical</a>';
	txt += ' | ';
	txt += '<a href="http://www.southeastmn.edu/aboutus/location.html" target="_blank" class="footer_link">Campus Maps &amp; Locations</a>';
	//txt += ' | ';
//	txt += '<a href="/contact.html" class="footer_link">Contact Us</a>';
	txt += ' | ';
	txt += '<a href="http://www.southeastmn.edu/contact.html" target="_blank" class="footer_link">Contact the College</a>';
	txt += ' | ';
	txt += '<a href="http://www.southeastmn.edu/aboutus/policiesProcedures/index.html" target="_blank" class="footer_link">College Policies</a>';
	txt += '<br />';
	txt += 'Southeast Technical is an affirmative action/equal opportunity educator and employer. ADA accessible.';
	txt += '<br />';
	txt += 'A member of the Minnesota State Colleges and Universities System.';
	txt += '<br />';
	txt += '</p>';
	document.write(txt);
}