function Share(){
  var action = 'colocar-aca-direccion-resuelve-compartir';
  var currentUrl = location.href;
  var html = '';
      html+= '<div class="share">';
      html+= ' <h3>Compartir esta información con un amigo</h3>';
      html+= ' <p>raesent interdum, massa at lobortis euismod, odio erat vehicula libero, a ullamcorper tellus ante in neque.</p>';
      html+= ' <form action="'+action+'" method="post">';
      html+= '   <fieldset>';
      html+= '   <ol>';
      html+= '     <li class="first"><label><strong>Tu nombre:</strong> <input type="text" name="name" class="v_required" /></label></li>';
      html+= '     <li><label><strong>Tu e-mail:</strong> <input type="text" name="email" class="v_required v_mail" /></label></li>';
      html+= '     <li><label><strong>E-mail de tu amigo:</strong> <input type="text" name="friendEmail" class="v_required v_mail" /></label></li>';
      html+= '   </ol>';
      html+= '   <div class="btns">';
      html+= '    <input type="hidden" name="url" value="'+currentUrl+'" />';
      html+= '    <button type="submit">Enviar</button>';
      html+= '   </div>';
      html+= '   </fieldset>';
      html+= ' </form>';
      html+= '<div>';
  PopUp(html,'ActiveFormShare();','normal',false,'.close',500);
}

function ActiveFormShare(){
  // Activar sumbit
  $('.share form').submit(function(){
   var form = $(this);
   var frmVal = new FormValidate(form,false);
   if(!frmVal.Validate())
     return false;
  });
}