var footer = '';

footer +='<div id="foot">';
footer +="<p><br>The information on this web page is intended for healthcare professionals only<b>.</b></p>";
if(disclaimer_flag == '1') {
	footer += '<p id="copy">' + disclaimer + '</p>' ;
}
footer +='<p>';
//////////////// Add rating fucntion by Victor.

//footer += formString();
for(var i=0; i <sect1_links.length; i++)
  {          	 
footer +='<a href="' + 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++)
  {          	 
footer +='<a href="' + sect2_links[i][1] + '">';
footer +=sect2_links[i][0];
footer +='</a>';
if (i != (sect2_links.length-1))
    {
footer +=' | ';
    }
  }
footer +='</p>'
footer +='<p id="copy">' + copy_text + '</p>';
footer +='</div>';

document.write(footer);

