function na_open_window(name, url, left, top, width, height, toolbar, menubar, statusbar, scrollbar, resizable)
{
  toolbar_str = toolbar ? 'yes' : 'no';
  menubar_str = menubar ? 'yes' : 'no';
  statusbar_str = statusbar ? 'yes' : 'no';
  scrollbar_str = scrollbar ? 'yes' : 'no';
  resizable_str = resizable ? 'yes' : 'no';
  window.open(url, name, 'left='+left+',top='+top+',width='+width+',height='+height+',toolbar='+toolbar_str+',menubar='+menubar_str+',status='+statusbar_str+',scrollbars='+scrollbar_str+',resizable='+resizable_str);
}
document.write('<table cellspacing="0" width="750" height="30"  cellpadding="0"><tr><td><div  class="texto_pequeño_gris">Copyright © 2007 Laboratorios Casen Fleet. Todos los derechos reservados.</div></td><td><div class="section"  align="right"><a class="pequeño" href="javascript:na_open_window(\'avisolegal\', \'Aviso_legal.htm\', 0, 0, 600, 400, 0, 0, 0, 1, 0)" target="_self">Aviso legal</></a> | </><a class="pequeño" href="javascript:na_open_window(\'Politica\', \'politica_privacidad.htm\', 0, 0, 600, 400, 0, 0, 0, 1, 0)" target="_self">Política de privacidad</></a></div></td></tr></table>');