function Share(){

  var html = '';
  html += '  <h2>Compartir esta información con un amigo</h2>';
  html += '  <p>Sed facilisis, odio ac molestie semper, leo purus malesuada est, vitae blandit sapien eros id tortor. Ut nibh orci, blandit ut pulvinar sodales.</p>';
  html += '  <form action="" method="post">';
  html += '  <div>';
  html += '    <label><strong>Tu nombre:</strong> <input type="" name="" /></label>';
  html += '    <label><strong>Tu e-mail:</strong> <input type="" name="" /></label>';
  html += '    <label class="last"><strong>El e-mail de tu amigo:</strong> <input type="" name="" /></label>';
  html += '    <span class="btns"><button type="submit">Enviar</button></span>';
  html += '    <div class="pusher"></div>';
  html += '  </div>';
  html += '  </form>';

  new PopUp(html,'','normal',false,'.close',658);
}