<!--
function InsertFooter(){
// set up table for top banner.
var	code = '<table width="100%" border="0" cellspacing="0" cellpadding="0"';
	code+='<tr><td><a href="http://www.eia.doe.gov/">';
    code+='<font face="verdana, ms sans serif, arial" color="#0000ff" size="-2"><strong> ';
	code+='EIA Home</strong></font></a><br>';
	code+='<a href="http://www.eia.doe.gov/NEIAcontactus3.htm" >';
	code+='<font face="verdana, ms sans serif, arial" color="#0000ff" size="-2"><strong> ';
    code+='Contact EIA</strong></font></a><br> ';
    code+='<a href="http://www.eia.doe.gov/contacts/multifc.htm" >';
	code+='<font face="verdana, ms sans serif, arial" color="#0000ff" size="-2"><strong> ';
	code+='Contact for this page</strong></font></a><br>';
//bottom feeder navigation
	code+='<P align="center"><FONT face="Arial, Sans-Serif" color="#000000" size="1"><A href="http://www.eia.doe.gov">';
	code+='Home</A> | <A href="http://www.eia.doe.gov/oil_gas/petroleum/info_glance/petroleum.html">';
	code+='Petroleum</A> | <A href="http://www.eia.doe.gov/oil_gas/petroleum/info_glance/gasoline.html">';
	code+='Gasoline</A> | <A href="http://www.eia.doe.gov/oil_gas/petroleum/info_glance/distillate.html">';
	code+='Diesel</A> | <A href="http://www.eia.doe.gov/oil_gas/petroleum/info_glance/propane.html">';
	code+='Propane</A> | <A href="http://www.eia.doe.gov/oil_gas/natural_gas/info_glance/natural_gas.html">';
	code+='Natural Gas</A> | <A href="http://www.eia.doe.gov/fuelelectric.html">';
	code+='Electricity</A> | <A href="http://www.eia.doe.gov/fuelcoal.html">';
	code+='Coal</A> | <A href="http://www.eia.doe.gov/fuelnuclear.html">';
	code+='Nuclear</A><br>  <A href="http://www.eia.doe.gov/fuelrenewable.html">';
	code+='Renewables</A> | <A href="http://www.eia.doe.gov/fuelalternate.html">';
	code+='Alternative Fuels</A> | <A href="http://www.eia.doe.gov/price.html">Prices</A>';
	code+=' | <A href="http://www.eia.doe.gov/emeu/states/_states.html">States</A>';
    code+=' | <A href="http://www.eia.doe.gov/emeu/international/contents.html">International</A>';
    code+=' | <A href="http://www.eia.doe.gov/emeu/cabs/contents.html">Country Analysis Briefs</A>';
    code+='<br><A href="http://www.eia.doe.gov/environment.html">Environment</A>';
    code+=' | <A href="http://www.eia.doe.gov/analysis.html">Analyses</A> | ';
	code+='<A href="http://www.eia.doe.gov/oiaf/forecasting.html"> ';
	code+='Forecasts</A> | <A href="http://www.eia.doe.gov/process.htm">';
	code+='Processes</A> | <A href="http://www.eia.doe.gov/allsectors.html">';
	code+='Sectors</A><br>'
	code+='<A href="http://www.eia.doe.gov/industrial.html">'
	code+='Industrial</A> | <A href="http://www.eia.doe.gov/commercial.html">'
	code+='Commercial</A> | <A href="http://www.eia.doe.gov/transportation.html">'
	code+='Transportation</A> | <A href="http://www.eia.doe.gov/residential.html">'
	code+='Residential</A></font></P>';
	code+='<font face="verdana, ms sans serif, arial" color="#000000" //size="-2"><strong>';
//
// begin date code.
// Get docment 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);
}


