var footer = '';

footer +='<div id="document" class="ln07">';
footer +='<table cellpadding="0" cellspacing="0" id="layout">';
footer +='<tr valign="top">';
footer +='<td colspan="3">';
footer +='<div id="foot">';
footer +='<p>';
for(var i=0; i <sect1_links.length; i++)
{      	
  if(IsAbsolute(sect1_links[i][1]))
  {      	 
		footer +='<a style="font-size:10px; line-height:8px;font-family: Arial, Helvetica, san-serif;" href="' + sect1_links[i][1] + '">';
	}else
	{
			footer +='<a style="font-size:10px; line-height:8px;font-family: Arial, Helvetica, san-serif;" href="' + sr + sect1_links[i][1] + '">';
	}
	
footer +=sect1_links[i][0];
footer +='</a>';
if (i != (sect1_links.length-1))
    {
footer +=' | ';
    }
   }
footer +='</p>';
footer +='<p>';
for(var i=0; i <sect2_links.length; i++)
{          	 
	if(IsAbsolute(sect2_links[i][1]))
	{
		footer +='<a style="font-size:10px; line-height:8px;font-family: Arial, Helvetica, san-serif;" href="' + sect2_links[i][1] + '">';
	}else
	{
		footer +='<a style="font-size:10px; line-height:8px;font-family: Arial, Helvetica, san-serif;" href="' + sr + sect2_links[i][1] + '">';
	}
	
footer +=sect2_links[i][0];
footer +='</a>';
if (i != (sect2_links.length-1))
    {
footer +=' | ';
    }
  }
footer +='</p>'
footer +='<p id="copy" style="font-family: Arial, Helvetica, san-serif;font-size:10px;line-height: 8px;">' + copy_text + '</p>';
footer +='</div>';
footer +='</td>';
footer +='</tr>';
footer +='</table>';
footer +='</div>';
document.write(footer);
