/*
Team 706 Content Managment System (Cms)
Please contact the webmaster at arrowheadrobotics.org for copying permision.

Team 706 editors please comment your code!

*/
//This CMS is for the footer of the page//
function foot(){
document.write('Team 706 Arrowhead Robotics - Updated') 
var currentTime = new Date()
var month = currentTime.getMonth() + 1
var day = currentTime.getDate()
var year = currentTime.getFullYear()
document.write(month + '/' + day + '/' + year)
document.write(' - <a href="contact.html">Contact Info </a>- <a href="http://www.usfirst.org/">First Robotics </a>-<a href="Sponsors.html"> Sponsors</a> - <a href="http://www.dynamicdrive.com"><img src="dhtml-scripts.png"></a>')
}