var html='';

html += '<div id="head">';
html += '<p id="monogram"><a href="http://www.gehealthcare.com/index.html"><img src="' + gr + '/' + pgcolor + '/images/monogram.gif" alt="GE logo"/></a></p>';
html +='<h1><img src="' + logo[0] + '" alt="' + logo[1] + '" /></h1>';
html +='<p id="stockTicker">';
/*html +='<a href="' + stock_url +'">';
html += stock;
html +='</a>';
html += '<br/>';*/
for(var i=0 ; i <mastlinks.length ; i++)
      {
 html +='<a href="' + mastlinks[i][1] +'">';
 html += mastlinks[i][0]
 html +='</a>&nbsp;' ;  
  if (i != (mastlinks.length-1))
	 {
 html +=' | ';
	 }
       }
html +='</p>';
html +='<table id ="nav1">';
html +='<tr valign="middle">';
html +='<td id="searchCell">';
html +='<form action="http://globalsearch.gehealthcare.com/globalsearch/gemsredirector.jsp" method="get" id="simplesearch" name="simplesearch">';
html +='<table>';
html +='<tr>';
html +='<td><input title="search" type="text" value="" class="globalInput" id="qt" name="qt" size="15" onblur="setFieldValue(\'document.simplesearch.qt\',\'\')" onfocus="setFieldValue(\'document.simplesearch.qt\',\'\')" /></td>';
html +='<td>&nbsp;&nbsp;&nbsp;<a href="JavaScript:document.simplesearch.submit();">' + search + '</a></td>';
html +='</tr>';
html +='</table>';
html +='</form>';
html +='</td>';
for( var j=0 ; j<menu.length; j++)
        {
if (primary_nav == menu[j][0])
{
html +='<td><img src="' + gr + '/' + pgcolor + '/images/nav1Link_selected.gif" alt="" /></td>';
html +='<td class="selected">';
}
else
{
html +='<td><img src="' + gr + '/' + pgcolor + '/images/nav1Link.gif" alt="" /></td>';
html +='<td>';
}
html +='<a href="' + menu[j][3] + '">';
html +=menu[j][0];
html +='</a></td>';
}
html +='</tr>';
html +='</table>';
html +='</div>';
html += '<!-- ========== END PRIMARY NAVIGATION (A01) ========== -->';
document.write(html);


