<!--
function InsertFooter(){
// set up table for top banner.
var	code = '<table width="100%" border="0" cellspacing="0" cellpadding="0"';
	code+='<tr><td><p><a href="http://eia.doe.gov">';
	code+='<font face="verdana, ms sans serif, arial" color="#0000a0" size="-2"><strong>'; 
    code+='EIA Home</strong></font></a>&nbsp;<br> <a href="http://eia.doe.gov/NEIAcontactus3.htm" >';
	code+='<font face="verdana, ms sans serif, arial" color="#0000a0" size="-2"><strong> ';
    code+='Contact Us</strong></font></a></p>';
	code+='<font face="verdana, ms sans serif, arial" color="#0000a0" size="-2"><strong> Page last modified on ';
// begin date code.
// Get document last modified date.
var now = new Date(document.lastModified);


// Array list of days.
var days = new Array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');


// Array list of months.
var months = new Array('January','February','March','April','May','June','July','August','September','October','November','December');


// Calculate the number of the current day in the week.
var date = ((now.getDate()<10) ? "0" : "")+ now.getDate();


// Calculate four digit year.
function fourdigits(number)	{
	return (number < 1000) ? number + 1900 : number;
								}


// Join it all together
// today =  days[now.getDay()] + ", " +   ---> no days
today =   months[now.getMonth()] + " " +
               date + ", " +
                (fourdigits(now.getYear())) ;


// Print out the data.
//	code+="" +today+ ".";
	code+="" +now+ ".";
	code+='<br>URL:  &nbsp;&nbsp;' + location.href ;
//  End -->
	code+=' </strong></font></td></tr></table>'; 
	document.writeln(code);
}


