// build the footer for a mirant.com with relative links
function buildFooter() {
	var footerText = "";
	
	footerText += "<table width='760' border='0' cellpadding='0' cellspacing='0' align='center'>\n";
	footerText += "<tr>\n";
	footerText += "<td height='24' colspan='2' style='border-bottom: 1px solid #0066CC'>\n";
	footerText += "&nbsp;\n"; 
	footerText += "</td>\n";
	footerText += "</tr>\n";
	footerText += "<tr>\n";
	footerText += "<td height='20' valign='bottom'>\n";
	footerText += "<div align='left'><a href='/footer/contact_us.htm' class='graySm'>Contact Us</a>\n"; 
	footerText += "<img src='/images/separator.gif' border='0'>\n";
	footerText += "<a href='/footer/site_directory.htm' class='graySm'>Site Directory</a>\n";
	footerText += "<img src='/images/separator.gif' border='0'>\n";
	footerText += "<a href='/footer/terms_conditions.htm' class='graySm'>Terms &amp; Conditions</a></div>\n";
	footerText += "</td>\n";
	footerText += "<td height='20' valign='bottom'><div align='right' class='graySm'>Copyright 2010 Mirant Corporation. All rights reserved.</div>\n";
	footerText += "</td>\n";
	footerText += "</tr>\n";
	footerText += "</table>\n";
	document.writeln(footerText);
	}