



























	
	
	

	
	
	
	
	
	
	

	function destacado(titulo, resumen, urlDetalle, conFoto, urlFoto, antetitulo, subtitulo) {
  this.titulo = titulo;
  this.resumen = resumen;
  this.urlDetalle = urlDetalle;
  this.conFoto = conFoto
  this.urlFoto = urlFoto;
  this.antetitulo = antetitulo;
  this.subtitulo = subtitulo;
}

function comillas(que) {
  var i = que.indexOf('~');
  while (i >= 0) {
    que = que.replace('~',"'");
    i = que.indexOf('~')
  }
  return que;
}

var destacados = new Array();
// Hijas:




  
        urlDetalle = null;
        
        

        
          
            

          

        

        antetitulo = '';
        subtitulo = '';
        
            subtitulo = 'Registre o actualice sus datos / Register, Update your information '
          
        destacados['sinzona'] = new destacado('Proveedores / Suppliers ', '<p>Use this area for creation / maintenance of your company & personal information as a supplier of the Healthcare Industry in Latin America.  </p>  Use esta área para crear y actualizar su información personal y la de su compañía, como proveedor del sector de la salud en América Latina.', urlDetalle, false, '/eh/formas/29597/', antetitulo, subtitulo);
  


var elDestacado = null;
if (esDestacadoConZona) {
  elDestacado = destacados[laZona.toUpperCase()];
  if (elDestacado == null) {
    elDestacado = destacados['ZONADEFECTO']
  }
} else {
  elDestacado = destacados['sinzona'];
}
if (elDestacado != null) {
  document.write('  <TABLE WIDTH="100%" BORDER=0 CELLSPACING=0 CELLPADDING=0>');
  document.write('<TR><TD CLASS="txTDarkBlue12">');
  if (elDestacado.conFoto) {
    document.write('<TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 ALIGN="LEFT">');
    document.write('<TR><TD><IMG SRC="')
    document.write(elDestacado.urlFoto)
    document.write('"></TD><TD WIDTH=10><IMG SRC="/b2bportales/img/dot.gif" WIDTH=1 HEIGHT=1></TD>  </TR><TR><TD COLSPAN=2 HEIGHT=5><IMG SRC="/b2bportales/img/dot.gif" WIDTH=1 HEIGHT=1></TD></TR></TABLE>')
  }
  document.write('<P>');
  if (elDestacado.antetitulo != '') {
      document.write('<span STYLE="FONT-family: Arial, Helvetica, sans-serif; FONT-size: 12px; FONT-weight: bold; color: #32426A">');
      document.write(comillas(elDestacado.antetitulo));
      document.write('</span><BR>');
  }

  document.write('<SPAN CLASS="featuredTitle">');
  document.write(comillas(elDestacado.titulo));
  document.write('</SPAN>');

  if (elDestacado.subtitulo != '') {
    document.write('<BR><SPAN CLASS="subTitle">');
    document.write(comillas(elDestacado.subtitulo))
    document.write('</SPAN>');
  }
  document.write('</P><P>')
  document.write(comillas(elDestacado.resumen))
  if (elDestacado.urlDetalle != null) {
    document.write('&nbsp;<A CLASS="linkDarkBlueUnderline12" HREF="')
    document.write(elDestacado.urlDetalle)
    document.write('"> Vea en detalle</A>');
      
  }
  document.write('</P></TD></TR></TABLE>');
}


