<!--
// The following javascript code writes the DOE and SC images/links onto each page at the footer.

// The relposition variable (relative position) is defined on the individual webpages in the header.

var footerTable = "<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" width=\"150\">"
	footerTable += "<tr><font color=\"white\"><td width=\"75\" height=\"14\"><a href=\"http://www.energy.gov/\" onmouseover=\"window.status='Department of Energy';return true\" onmouseout=\"window.status=' '; return true\"><img src=\" "
	footerTable += relposition
	footerTable += "images/doe_l.gif\" border=\"0\" alt=\"Department of Energy\" align=\"right\" width=\"46\" height=\"14\"></a></td><td width=\"75\" height=\"14\"><font color=\"white\"><a href=\"http://www.science.doe.gov/\" onmouseover = \"window.status='Office of Science';return true\" onmouseout=\"window.status='';return true\"><img src=\" " 
	footerTable += relposition
	footerTable += "images/sc_l.gif\" border=\"0\" alt=\"Office of Science\" width=\"44\" height=\"14\"></a></font></td></font></tr></table>"

document.write (footerTable)

// -->
