/* 
 			<table border="0" width="725" class="header" cellpadding="0" cellspacing="0">
				<tr>
					<td rowspan="2">
						<img src="http://www.edison.com/remote/images/Logo-top.gif" alt="Edison International" />
					</td>
					<td width="100%">
						<table border="0"  cellpadding="0" cellspacing="0">
							<tr>
								<td width="100%"><img src="http://media.corporate-ir.net/media_files/nys/eix/qi/eix_qi.jpg" alt="" id="stockquote"/></td>
								<td nowrap="nowrap">
									<form method="get" action="http://xsrch.sce.com/cgi-bin/edison_search.asp">				
										<a href="http://www.edison.com/global/contact_us.asp">Contact Us</a><img class="verticleBullet" alt=":" src="http://www.edison.com/remote/images/vert_bullet.gif" />						
										<input type="text" name="q1" value="" size="25" />
										<input type="submit" name="search" value="GO" class="eix_search_submit" />
										<input type="hidden" name="ct" value="edison_all" />
									</form>
								</td>
							</tr>
						</table>
					</td>
				</tr>
				<tr>
					<td align="left">
						<object type="application/x-shockwave-flash" 
								  width="558" 
								  height="125" 
								  id="eixtopnavigation" 
								  data="http://www.edison.com/remote/flash/eixtopnavigation.swf">
							<param name="movie" value="http://www.edison.com/remote/flash/eixtopnavigation.swf" />
							<param name="wmode" value="transparent" />
							<param name="quality" value="high" />
							<param name="bgcolor" value="#336699" />
						</object>
					</td>
				</tr>
			</table>



 */

function build_header(ID) {
	return true;
	var _tr = new Array();
	var _td = new Array();
	var _img = new Array();

	_div = document.createElement("div");
	_div.setAttribute("id","eix_topnavigation_div");	

	_img[0] = document.createElement("img");
	_img[0].setAttribute("src", baseHref + "remote/images/logo-top.jpg");
	_img[0].setAttribute("width","180");
	_img[0].setAttribute("height","62");
	
	_table = document.createElement("table");
	_table.setAttribute("border","0");
	_table.setAttribute("width","0");
	_table.setAttribute("class","header");
	_table.setAttribute("cellpadding","0");
	_table.setAttribute("cellspacing","0");
	
	_tr[0] = document.createElement("tr");
	_tr[1] = document.createElement("tr");
	_tr[2] = document.createElement("tr");
	_td[0] = document.createElement("td");
	_td[0].setAttribute("rowspan","2");
	_td[0].setAttribute("width","180");
	_td[0].appendChild(_img[0]);
	_td[1] = document.createElement("td");
	_tr[0].appendChild(_td[0]);
	_tr[0].appendChild(_td[1]);
	_td[2] = document.createElement("td");
	_td[2].appendChild(_div);
	_tr[1].appendChild(_td[2]);
	_td[3] = document.createElement("td");
	_td[3].setAttribute("colspan","2");
	_td[3].setAttribute("width","738");
	_tr[2].appendChild(_td[3]);

	_table.appendChild(_tr[0]);
	_table.appendChild(_tr[1]);
	_table.appendChild(_tr[2]);
	
	_ID = document.getElementById(ID);
	_ID.appendChild(_table);
	
}

 
