<html>

<head>
<title>Unete a nuestro Gran proyecto Social 2001 en benefico de los Niños de la Calle de
Cartagena</title>
<meta name="GENERATOR" content="Microsoft FrontPage 3.0">
<script LANGUAGE="JavaScript" FPTYPE="dynamicanimation">
<!--
  // If you want to change this script, you must also make the following
  // changes so that FrontPage will not overwrite your new script.
  // In the script tag, change type="dynamicanimation" to type="mydynamicanimation"
  // In the first script statement, change "dynamicanimation" to "mydynamicanimation"
  // Throughout the HTML content, change dynamicanimation= to mydynamicanimation=
  // Change function dynAnimation to function mydynAnimation
  // In the body tag, change onload="dynAnimation()" to onload="mydynAnimation()"
  dynamicanimAttr = "dynamicanimation"
  animateElements = new Array()
  currentElement = 0
  speed = 0
  stepsZoom = 8
  stepsWord = 8
  stepsFly = 12
  stepsSpiral = 16
  steps = stepsZoom
  step = 0
  outString = ""
  function dynAnimation()
  {
    var ms = navigator.appVersion.indexOf("MSIE")
    ie4 = (ms>0) && (parseInt(navigator.appVersion.substring(ms+5, ms+6)) >= 4)
    if(!ie4)
    {
      if((navigator.appName == "Netscape") &&
         (parseInt(navigator.appVersion.substring(0, 1)) >= 4))
      {
        for (index=document.layers.length-1; index >= 0; index--)
        {
            layer=document.layers[index]
            if (layer.left==10000)
                layer.left=0
        }
      }
      return
    }
    for (index=document.all.length-1; index >= document.body.sourceIndex; index--)
    {
      el = document.all[index]
      animation = el.getAttribute(dynamicanimAttr, false)
      if(null != animation)
      {
        if(animation == "dropWord" || animation == "flyTopRightWord" || animation == "flyBottomRightWord")
        {
          ih = el.innerHTML
          outString = ""
          i1 = 0
          iend = ih.length
          while(true)
          {
            i2 = startWord(ih, i1)
            if(i2 == -1)
              i2 = iend
            outWord(ih, i1, i2, false, "")
            if(i2 == iend)
              break
            i1 = i2
            i2 = endWord(ih, i1)
            if(i2 == -1)
              i2 = iend
            outWord(ih, i1, i2, true, animation)
            if(i2 == iend)
              break
            i1 = i2
          }
          document.all[index].innerHTML = outString
          document.all[index].style.posLeft = 0
          document.all[index].setAttribute(dynamicanimAttr, null)
        }
        if(animation == "zoomIn" || animation == "zoomOut")
        {
          ih = el.innerHTML
          outString = "<SPAN " + dynamicanimAttr + "=\"" + animation + "\" style=\"position: relative; left: 10000;\">"
          outString += ih
          outString += "</SPAN>"
          document.all[index].innerHTML = outString
          document.all[index].style.posLeft = 0
          document.all[index].setAttribute(dynamicanimAttr, null)
        }
      }
    }
    i = 0
    for (index=document.body.sourceIndex; index < document.all.length; index++)
    {
      el = document.all[index]
      animation = el.getAttribute(dynamicanimAttr, false)
      if (null != animation)
      {
        if(animation == "flyLeft")
        {
          el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
          el.style.posTop = 0
        }
        else if(animation == "flyRight")
        {
          el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
          el.style.posTop = 0
        }
        else if(animation == "flyTop" || animation == "dropWord")
        {
          el.style.posLeft = 0
          el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
        }
        else if(animation == "flyBottom")
        {
          el.style.posLeft = 0
          el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
        }
        else if(animation == "flyTopLeft")
        {
          el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
          el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
        }
        else if(animation == "flyTopRight" || animation == "flyTopRightWord")
        {
          el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
          el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
        }
        else if(animation == "flyBottomLeft")
        {
          el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
          el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
        }
        else if(animation == "flyBottomRight" || animation == "flyBottomRightWord")
        {
          el.style.posLeft = 10000-offsetLeft(el)+document.body.offsetWidth
          el.style.posTop = document.body.scrollTop-offsetTop(el)+document.body.offsetHeight
        }
        else if(animation == "spiral")
        {
          el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
          el.style.posTop = document.body.scrollTop-offsetTop(el)-el.offsetHeight
        }
        else if(animation == "zoomIn")
        {
          el.style.posLeft = 10000
          el.style.posTop = 0
        }
        else if(animation == "zoomOut")
        {
          el.style.posLeft = 10000
          el.style.posTop = 0
        }
        else
        {
          el.style.posLeft = 10000-offsetLeft(el)-el.offsetWidth
          el.style.posTop = 0
        }
        el.initLeft = el.style.posLeft
        el.initTop = el.style.posTop
        animateElements[i++] = el
      }
    }
    window.setTimeout("animate();", speed)
  }
  function offsetLeft(el)
  {
    x = el.offsetLeft
    for (e = el.offsetParent; e; e = e.offsetParent)
      x += e.offsetLeft;
    return x
  } 
  function offsetTop(el)
  {
    y = el.offsetTop
    for (e = el.offsetParent; e; e = e.offsetParent)
      y += e.offsetTop;
    return y
  } 
  function startWord(ih, i)
  {
    for(tag = false; i < ih.length; i++)
    {
      c = ih.charAt(i)
      if(c == '<')
        tag = true
      if(!tag)
        return i
      if(c == '>')
        tag = false
    }
    return -1
  }
  function endWord(ih, i)
  {
    nonSpace = false
    space = false
    while(i < ih.length)
    {
      c = ih.charAt(i)
      if(c != ' ')
        nonSpace = true
      if(nonSpace && c == ' ')
        space = true
      if(c == '<')
        return i
      if(space && c != ' ')
        return i
      i++
    }
    return -1
  }
  function outWord(ih, i1, i2, dyn, anim)
  {
    if(dyn)
      outString += "<SPAN " + dynamicanimAttr + "=\"" + anim + "\" style=\"position: relative; left: 10000;\">"
    outString += ih.substring(i1, i2)
    if(dyn)
      outString += "</SPAN>"
  }
  function animate()
  {
    el = animateElements[currentElement]
    animation = el.getAttribute(dynamicanimAttr, false)
    step++
    if(animation == "spiral")
    {
      steps = stepsSpiral
      v = step/steps
      rf = 1.0 - v
      t = v * 2.0*Math.PI
      rx = Math.max(Math.abs(el.initLeft), 200)
      ry = Math.max(Math.abs(el.initTop),  200)
      el.style.posLeft = Math.ceil(-rf*Math.cos(t)*rx)
      el.style.posTop  = Math.ceil(-rf*Math.sin(t)*ry)
    }
    else if(animation == "zoomIn")
    {
      steps = stepsZoom
      el.style.fontSize = Math.ceil(50+50*step/steps) + "%"
      el.style.posLeft = 0
    }
    else if(animation == "zoomOut")
    {
      steps = stepsZoom
      el.style.fontSize = Math.ceil(100+200*(steps-step)/steps) + "%"
      el.style.posLeft = 0
    }
    else
    {
      steps = stepsFly
      if(animation == "dropWord" || animation == "flyTopRightWord" || animation == "flyBottomRightWord")
        steps = stepsWord
      dl = el.initLeft / steps
      dt = el.initTop  / steps
      el.style.posLeft = el.style.posLeft - dl
      el.style.posTop = el.style.posTop - dt
    }
    if (step >= steps) 
    {
      el.style.posLeft = 0
      el.style.posTop = 0
      currentElement++
      step = 0
    }
    if(currentElement < animateElements.length)
      window.setTimeout("animate();", speed)
  }
//-->
</script></head>

<body link="#927345" vlink="#927345" alink="#FFFFFF" onload="dynAnimation()">
<div align="center"><center>

<table border="0" width="1000" height="622">
  <tr>
    <td valign="top" width="733" height="191"><strong>&nbsp;&nbsp;&nbsp;&nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp; &nbsp;
    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
    </strong><img align="left" alt="Es usted solidario" height="120" hspace="0"
    src="http://www.ninosdepapel.org/solidarios/Eres1.gif" width="395"></td>
    <td align="center" valign="top" width="115" height="191"></td>
    <td align="center" valign="top" width="80" height="191"></td>
    <td width="43" height="191"></td>
    <td valign="top" width="10" height="191"></td>
  </tr>
  <tr>
    <td valign="top" rowspan="5" width="733" height="423"><p align="center"
    dynamicanimation="dropWord" style="position: relative !important; left: 10000 !important"><font
    face="Trek" size="4" color="#9D6F02"><span style="font-size: 23pt"><strong>Unete a nuestro
    Gran proyecto Social 2001 en beneficio de los Niños de la Calle de Cartagena</strong></span></font></p>
    <table border="0" width="100%">
      <tr>
        <td width="14%"></td>
        <td width="86%"><img align="left" alt="proyecto fachada" height="225" hspace="0"
        src="http://www.ninosdepapel.org/solidarios/Q.casaBlanca.500.jpg" width="514"></td>
      </tr>
    </table>
    <p align="center"><font face="Trek" size="4" color="#9D6F02"><strong>La construccion del
    centro de Atención, <br style="margin-right: 11px">
    Recepción, Diagnostico, y remisión de los Niños y Niñas de la calle de Cartagena</strong></font></p>
    <table border="0" width="100%" height="129">
      <tr>
        <td width="100%" bgcolor="#FBE79F" height="125"><p align="left">&nbsp;</p>
        <font face="Arial" size="2"><p></font><font face="Times New Roman" size="3"
        color="#800040"><strong>La construcción de este centro tiene 3 etapas:</strong></font></p>
        <p><font face="Arial" size="2" color="#7E4001">1.- Coordinación de todo el trabajo de
        Calle y atención a la Población Callejera en el campo de la Salud Primaria,
        alimentación y Aseo, es un trabajo asitenciál.</font></p>
        <font face="Arial" size="2"><p><font color="#7E4001">2.- Recepción y Diagnóstico de los
        Niños que dejan el medio callejero. Aquí se ubicaran&nbsp; mientras se realiza el
        diagnóstico de los 500 (quinientos) niños que sacarémos anualmente de la Calle.</font></font></p>
        <font face="Arial" size="2"><p><font color="#7E4001">3.- Remisión de los Niños a otros
        puntos de la red y Prevención del medio comunitario. Dirigido a comunidades en Alto
        riesgo</font></font></p>
        <p><font face="Arial" size="2">.</font></td>
      </tr>
    </table>
    <p align="center"><font face="Times New Roman" size="4" color="#9D6F02"><strong>Tenemos a
    la venta 1700 acciones Solidarias*, de 100 dolares cada una, de las cuales ya estan
    financiadas 1300 acciones, las 400 acciones que faltan dependeran de gente generosa como
    usted.</strong></font></p>
    <table border="0" width="100%">
      <tr>
        <td width="34%" bgcolor="#FBE79F"><font size="3" color="#800000"><strong>Primera Parte </strong></font><p><font
        size="2" color="#408080"><strong>Comunidad de Madrid:</strong></font></p>
        <p><font size="2" color="#7E4001">La comunidad ha asignado al proyecto 500 acciones,
        50.000 dolares, concretado</font></p>
        <p><font size="2" color="#008080"><strong>ANESVAD</strong></font><font size="2"
        color="#7E4001"> 80 acciones, 8.000 dolares, concretado</font></p>
        <p><font size="2" color="#008080"><strong>Mundo Cooperante</strong></font><font size="2"
        color="#7E4001"> Junto con Los Comites de apoyo </font><font size="2" color="#008080"><strong>CANICA</strong></font><font
        size="2" color="#7E4001">, 300 acciones ,&nbsp; 30.000 dolares, concretado</font></p>
        <p><font size="2" color="#008080"><strong>La Generalitat Valenciana</strong></font><font
        size="2" color="#7E4001">, 500 acciones 50.000 dolares, concretado</font></p>
        <p><font size="2" color="#008080"><strong>Ayuntamiento de Valencia</strong></font><font
        size="2" color="#7E4001">, 70 acciones, 7.000 dolares, concretado</font></td>
        <td width="66%"><p align="center"><font size="6" color="#F9BE35"><strong>Ya tenemos
        financiado el 83 % de nuestro proyecto</strong></font></p>
        <p align="center"><font size="5" color="#F9BE35"><strong><img border="0" height="80"
        src="http://www.ninosdepapel.org/logo.jpg" width="157"></strong></font></p>
        <p align="center"><font size="6" color="#F9BE35"><strong>Solo falta usted&nbsp; </strong></font></p>
        <p align="center"><font size="6" color="#F9BE35"><strong>Con su apoyo lo lograremos</strong></font></td>
      </tr>
    </table>
    <p align="center"><font color="#9D6F02"><strong>* una accion solidaria es un aporte en el
    cual invertimos para devolverle la sonrisa a los niños de la calle.</strong></font></p>
    <table border="0" width="100%">
      <tr>
        <td width="100%" bgcolor="#FCEAA0"><p align="center"><font color="#7E4001"><strong>Si
        quiere conocernos mas, visite nuestra Pagina Web: <a href="http://www.ninosdepapel.org">www.ninosdepapel.org</a>
        &nbsp; o contactese con alguno de los Comites de Apoyo que encontrara en nuestra Pagina
        web</strong></font></p>
        <p align="center"><font color="#7E4001"><strong>o si desea escribirnos, y recibir mas
        información puede hacerlo a: <a href="mailto:solidaridad@ninosdepapel.org">solidaridad@ninosdepapel.org</a>
        </strong></font></p>
        <p align="center"><font color="#7E4001"><strong>Para hacer sus aportes lo puede hacer
        directamente a la cuenta del:<font size="4"> City Bank </font><font size="2">Numero de
        cuenta</font>: 0551-971-023 o con tarjeta de credito en nuestra tienda solidaria:&nbsp; <a
        href="http://www.tiendasolidaria.org">www.tiendasolidaria.org</a>&nbsp; proyecto
        trimestral</strong></font></td>
      </tr>
    </table>
    <p align="center">&nbsp;</p>
    <p align="center">--------------------------------------------</p>
    <p align="center"><font color="#7E4001" face="Times New Roman" size="3"><strong>Si no
    desea seguir recibiendo mas información sobre nuestro trabajo por los niños de las
    calles colombianas por favor envienos un e-mail con asunto REMOVER a: <a
    href="mailto:info@ninosdepapel.org">info@ninosdepapel.org</a> </strong></font></p>
    <p align="center">--------------------------------------------</p>
    <p align="center">&nbsp;</td>
    <td align="center" valign="top" rowspan="5" width="115" height="423"></td>
    <td align="center" valign="top" width="80" height="1286">&nbsp;<p align="left">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</p>
    <p>&nbsp;</td>
    <td rowspan="5" width="43" height="423"></td>
    <td valign="top" rowspan="5" width="10" height="423"></td>
  </tr>
  <tr>
    <td align="center" valign="top" width="80" height="118"></td>
  </tr>
  <tr>
    <td align="center" valign="top" width="80" height="286"></td>
  </tr>
  <tr>
    <td align="center" valign="top" width="80" height="261"></td>
  </tr>
  <tr>
    <td align="center" valign="top" width="80" height="1"></td>
  </tr>
</table>
</center></div>
</body>
</html>