var footer = '';

footer +='<div id="foot">';
if(disclaimer_flag == '1') {
	footer += '<p id="copy">' + disclaimer + '</p>' ;
}
footer +='<p>';
footer +="<p><br>Le informazioni contenute nella presente pagina web sono riservate esclusivamente ai professionisti sanitari<b>.</b></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);

