From dongarra@CS.UTK.EDU Fri Apr 12 16:50:11 1996
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id QAA07592; Fri, 12 Apr 1996 16:50:11 -0400
Received: from mail.cs.utexas.edu (root@mail.cs.utexas.edu [128.83.139.10]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id QAA19509; Fri, 12 Apr 1996 16:53:27 -0400
Received: from daffy.cs.utexas.edu (rvdg@daffy.cs.utexas.edu [128.83.143.203]) by mail.cs.utexas.edu (8.7.1/8.7.1) with ESMTP id PAA09872; Fri, 12 Apr 1996 15:45:34 -0500 (CDT)
From: Robert van de Geijn <rvdg@cs.utexas.edu>
Received: by daffy.cs.utexas.edu (8.7.1/Client-1.4)
	id PAA27599; Fri, 12 Apr 1996 15:45:33 -0500
Date: Fri, 12 Apr 1996 15:45:33 -0500
Message-Id: <199604122045.PAA27599@daffy.cs.utexas.edu>
To: blast-core@CS.UTK.EDU, blast-parallel@CS.UTK.EDU, blast-ob@CS.UTK.EDU
CC: plapackers@cs.utexas.edu, rvdg@cs.utexas.edu, stewart@cs.umd.edu
Subject: Recent advances

Folks,

we at UT-Austin have been playing with a number of issues that may be
of interest to the BLAST forum.

As part of the PLAPACK project, we have implemented a Simple Library
(SL_library) which uses Physically Based Matrix Distribution (PBMD),
Object Based Programming (OBP), and recent advances in parallel linear
algebra algorithms.  The results are quite encouraging:

* We currently have about 1200 lines of code, primarily providing
the infrastructure for the object based library.  

* With this we should be able to implement all parallel blas in
another 1200 lines of code, 

* and the rest of "core" LAPACK in yet another 1200 lines.  

* What is also interesting is that we are getting the same high
performance as our hand coded parallel level 3 BLAS, on the Intel
Paragon.

For more information, the webpage for the SL_library can be accessed
through my home page:

        http://www.cs.utexas.edu/users/rvdg

A more direct path to the reference manual, example of matrix-matrix
multiplication, and performance data, you can access

        http://www.cs.utexas.edu/users/gunnels/SL_Library/library.html

We would welcome comments

Robert




From dongarra@CS.UTK.EDU Tue Jan 28 16:04:47 1997
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id QAA03566; Tue, 28 Jan 1997 16:04:47 -0500
Received: from mail.cs.utexas.edu (root@mail.cs.utexas.edu [128.83.139.10]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id QAA13240; Tue, 28 Jan 1997 16:09:35 -0500
From: <rvdg@cs.utexas.edu>
Received: from daffy.cs.utexas.edu (rvdg@daffy.cs.utexas.edu [128.83.143.203])
	by mail.cs.utexas.edu (8.8.5/8.8.5) with ESMTP id PAA06570;
	Tue, 28 Jan 1997 15:09:16 -0600 (CST)
Received: by daffy.cs.utexas.edu (8.8.5/Client-1.5)
	id PAA16250; Tue, 28 Jan 1997 15:09:15 -0600
Date: Tue, 28 Jan 1997 15:09:15 -0600
Message-Id: <199701282109.PAA16250@daffy.cs.utexas.edu>
To: blast-parallel@CS.UTK.EDU
CC: blast-comm@CS.UTK.EDU
Subject: Parallel BLAS standard prototype

Dear Forum participants,

we have been busy with our PLAPACK package, which we believe can be
used as at least an example of how standardization can proceed.

The PLAPACK project represents an effort to provide an infrastructure
for implementing application friendly high performance linear algebra
algorithms.  The package uses a more application-centric data
distribution, which we call Physically Based Matrix Distribution, as
well as an object based (MPI-like) style of programming.  It is this
style of programming that allows for highly compact codes, written in
C but usable from FORTRAN, that more closely reflect the underlying
blocked algorithms.  We show that this can be attained without
sacrificing high performance.

The following example shows how PLAPACK code reflects the natural
description of a linear algebra algorithm. Consider the Cholesky
factorization of matrix A using a level-2 right-looking variant.  One
can explain this algorithm as follows: Partition

          / a_11    *   \   / l_11    0  \ / l_11  l_21^T \
    A =   \ a_21   A_22 / = \ l_21  L_22 / \   0   L_22^T /  

where a_11 and l_11 are scalars.  Then the algorithm can be
described as given below on the left, which translate to PLAPACK code
given on the right:

let A_cur = A                     PLA_Obj_all_view( a, &acur );
do until done                     while ( TRUE ){     
                                    PLA_Obj_global_length( a, &size );
                                    if ( 0 == size ) break;
  - partition 
      A_cur = / a_11  *   \         PLA_Obj_split_4( a, 1, 1, &a11, &a12,
              \ a_21 A_22 /                                   &a21, &acur );
  -  a_11 <- sqrt( a_11 )           Take_sqrt( a11 );
  -  a_21 = 1/a_11 * a_21           PLA_Inv_Scal( a11, a_21 );
  -  A_22 <- A_22 - l_21 l_21^T     PLA_Syr(PLA_LOW_TRIAN, min_one, a21, acur);
  -  let A_cur = A_22               
enddo                             }

Here A_cur becomes a reference into the original matrix, rather than a
copy.  Level-3 BLAS versions can be coded similarly, and achieve
within 30% of peak on most parallel architectures.

The web page for PLAPACK is

http://www.cs.utexas.edu/users/plapack

The web page for the Users' Guide is 

http://www.cs.utexas.edu/users/plapack/Guide

Unfortunately, we cannot give out postscript, since we have signed a
contract with The MIT Press.

Hopefully this material will provide food for discussion before the
meeting.

Best Regards
Robert

======================================================================
Robert A. van de Geijn              Taylor Hall 4.115C
Associate Professor                 (512) 471-9720 (office)
Department of Computer Sciences     (512) 471-8885 (fax)
The University of Texas             rvdg@cs.utexas.edu
Austin, Texas 78712                 http://www.cs.utexas.edu/users/rvdg



From dongarra@CS.UTK.EDU Wed Nov 26 02:39:12 1997
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id CAA02367; Wed, 26 Nov 1997 02:39:12 -0500
Received: from sgi1.ccrl-nece.technopark.gmd.de (sgi1.ccrl-nece.technopark.gmd.de [193.175.160.69]) 
        by CS.UTK.EDU with SMTP (cf v2.9s-UTK)
	id CAA26261; Wed, 26 Nov 1997 02:46:00 -0500 (EST)
From: <petitet@ccrl-nece.technopark.gmd.de>
Received: from laplace.ccrl-nece.technopark.gmd.de by sgi1.ccrl-nece.technopark.gmd.de via ESMTP (950413.SGI.8.6.12/940406.SGI.AUTO)
	 id HAA17818; Wed, 26 Nov 1997 07:36:23 +0100
Received: by laplace.ccrl-nece.technopark.gmd.de (950413.SGI.8.6.12) id IAA23008; Wed, 26 Nov 1997 08:30:13 +0100
Date: Wed, 26 Nov 1997 08:30:13 +0100
Message-Id: <199711260730.IAA23008@laplace.ccrl-nece.technopark.gmd.de>
To: blast-parallel@CS.UTK.EDU
Subject: In preparation for the coming meeting ...
Cc: petitet@ccrl-nece.technopark.gmd.de


  Dear BLAST participant,

  Please find enclosed a draft introduction/layout to the 
Distributed-memory Dense BLAS chapter. I will present its
contents at the coming meeting. Please feel free to send
me comments/suggestions.

  See you in Knoxville next week,

  Best Regards,

  Antoine


\chapter{Distributed-memory Dense BLAS Interface}            \label{chap:dmblas}

%%%%%%%%%%%%%%%%%%%%%%%%%% Introduction to Distributed-memory Dense BLAS %%%%%%%

\section{Introduction to Distributed-memory Dense BLAS} \label{sec:dmblas_intro}

\subsection{Overview and Goals}                   \label{subsec:dmblas_overview}

There has been much
interest in the past
few years in developing
versions of the BLAS 
for distributed-memory
computers\cite{cmssl90a,
elster90a, aboelaze91a,
falgout93a,brent93a,
choi94a,lawn100,chtchelkanova95a,
bangalore95a,geijn97a}.
Some of this research
proposed parallelizing
the BLAS\cite{velde87a,
cmssl90a,choi94a,lawn100,
slug,chtchelkanova95a,
strazdins96a,geijn97a},
and some implemented a
few important BLAS 
routines\cite{cmssl90a,
lichtenstein93a,choi94a,
lawn100,slug,chtchelkanova95a,
strazdins96a,geijn97a},
such as matrix-matrix
multiplication\cite{fox87a,
agarwal94a,huss94a,mathur94a,
agarwal95a,lawn57,lawn96}
or triangular system solve
\cite{heath88a,li88a,li89a,
bisseling91b}. This document
has been inspired to a 
large extent by these
research initiatives.

This document proposes
to reuse the interface
design of the dense part
of the ScaLAPACK project
\cite{lawn100,slug} as
a basis for the 
distributed-memory
dense BLAS interface.
This choice is motivated
by the following reasons.
\begin{itemize}
 \item The simplicity of this interface allows for ease-of-use
       and similar calling sequence definitions in all targeted 
       programming languages.
 \item This interface has been shown\cite{slug} to be effective
       for the developement of large and high-quality dense linear
       algebra software for distributed-memory computers.
 \item The broad functionality permitted by this interface enables,
       facilitates and encourages the development of current and
       related research projects such as the Distributed BLAS
       project\cite{strazdins96a}, the Multicomputer Toolbox
       project\cite{falgout93a,bangalore95a} and the
       PLAPACK project\cite{geijn97a}.
 \item The publically available implementation containing source
       code, testing and timing programs considerably facilitate
       the task of providing a reference implementation of the
       distributed-memory dense BLAS interface.
 \item A large number of machine and software vendors such as
       Fujitsu, Hewlett-Packard/Convex, Hitachi, IBM Parallel ESSL,
       NAG Numerical PVM and MPI library, NEC Scientific Software
       Library, SGI Cray Scientific Library, SUN Scientific Software
       Library and Visual Numerics (IMSL) have already adopted this
       interface design for their own products.
\end{itemize}

The distributed-memory
dense BLAS standardization
effort involved about
30 people from 20 
organizations mainly
from the United States
and Europe. Most of
the major vendors of
concurrent computers
were involved in this
work, along with
researchers from
universities, government
laboratories, and industry.
The standardization
process began with 
the BLAS Technical
Workshop, sponsored
by the University of
Tennessee Knoxville,
held November 13-14,
1995, in Knoxville,
Tennessee. At this 
workshop the basic
features essential
to a standard 
distributed-memory
dense BLAS interface
were discussed, and
a working group 
established to
continue the 
standardization
process.

The main advantages
of establishing a 
distributed-memory
dense BLAS standard
are portability and
ease-of-use.  In a
distributed-memory
environment in which
the higher level 
routines and/or 
abstractions are
built upon lower
level message-passing
and computational
routines the benefits
of standardization
are particularly
apparent. Furthermore,
the definition of
distributed-memory
dense basic linear
algebra subprograms,
such as those proposed
here, provides vendors
with a clearly defined
base set of routines 
that they can implement 
efficiently, or in some
cases provide hardware
support for, thereby
enhancing scalability.

The goal of the
distributed-memory
dense BLAS interface
simply stated is
to develop a widely
used standard for
writing message-passing
programs performing
dense basic linear
algebra operations.
As such the interface
should establish a 
practical, portable,
efficient and flexible
standard for
distributed-memory
dense basic linear
algebra operations.

A complete list of goals follows.
\begin{itemize}
 \item Design an Application Programming Interface
       (API) (not necessarily for compilers or a
       system implementation library) well suited
       for distributed-memory dense basic linear
       algebra computations.
 \item Allow efficient communication and computation:
       minimizing communication startup overhead and
       volume, while maximizing load balance and local
       computational performance.
 \item Allow for re-use of existing message-passing
       interface standard\cite{mpi94a} as well as local
       basic linear algebra computational kernels such
       as the {\em de facto} standard BLAS.
 \item Allow for implementations that can be used in a
       heterogeneous environment.
 \item Allow convenient Fortran~77, Fortran~90, High
       Performance Fortran (HPF), C and C++ bindings
       for the interface.
 \item Define an interface that is not too different
       from current practice and provide extensions 
       that allow greater flexibility.
 \item Define an interface that can be implemented on
       many vendors' platforms, with no significant 
       changes in the underlying system software.
 \item Semantics of the interface should be language-
       and data-distribution independent.
 \item The interface should be designed to allow for
       thread-safety.
\end{itemize}

\subsection{Who Should Use This Standard ?}

This standard is intended
for use by all those who
want to write portable 
programs performing dense
linear algebra operations
in Fortran~77, Fortran~90,
High Performance Fortran
(HPF), C or C++.  This
includes individual
application programmers,
developers of dense
linear algebra software
designed to run on parallel
machines, and creators of
computational environment
and tools. In order to be
attractive to this wide
audience, the standard
must provide a simple,
easy-to-use interface
for the basic user while
not semantically precluding
the high-performance 
computation and 
communication operations
available on advanced
machines.

\subsection{What Platforms Are Targets for Implementation ?}

The attractiveness of the 
distributed-memory dense BLAS
at least partially stems from
its wide portability as well 
as the common occurence of
dense linear algebra operations
in numerical simulations.
These programs may run on
distributed-memory multiprocessors,
networks of workstations, and
combinations of all of these.
In addition, shared-memory 
implementations are possible.
The message passing paradigm
will not be made obsolete by
architectures combining the
shared- and distributed- memory
views, or by increases in network
speeds.  It thus should be both
possible and useful to implement
this standard on a great variety
of machines, including those
"machines", parallel or not,
connected by a communication
network.

The distributed-memory dense BLAS
interface provides many features
intended to improve performance
on scalable parallel computers 
with specialized interprocessor
communication hardware. Thus, we
expect that native, high-performance
implementations of this interface
will be provided on such machines.
At the same time, implementations
of this standard on top of MPI or
PVM will provide portability to
workstation clusters and heterogeneous
networks of workstations.

\subsection{What Is Included in the Standard ?}

The standard includes:
\begin{itemize}
 \item A set of basic dense linear algebra computational operations
 \item Data-redistribution operations
 \item Environmental management and inquiry
 \item Bindings for Fortran~77 and C that can also be used in 
       respectively Fortran~90 and C++ programs
 \item Bindings for High Performance Fortran (HPF)
\end{itemize}

\subsection{What Is Not (Yet ?) Included in the Standard ?}

The standard does not (yet) specify:
\begin{itemize}
 \item Debugging facilities
 \item Specific I/O and data generation operations
 \item Out-of-core computational routines
 \item Packed and banded storage computational routines
 \item Extended precision computational routines
\end{itemize}

There are many features
and interface variants
that have been considered
and not included in this
standard.  This happened
for a number of reasons,
one of which is the time
constraint that was 
self-imposed in finishing
the standard. Features
that are not included
can always be offered
as extensions by specific
implementations. Perhaps
future version of the 
distributed-memory dense
BLAS interface will 
address some of these
issues.

\subsection{Organization of This Chapter}     \label{subsec:dmblas_organization}

The following is a list
of the remaining sections
in this chapter, along 
with a brief description
of each.
\begin{itemize}
 \item Section~\ref{sec:dmblas_terminology},
       Terminology and Conventions, explains
       notational terms and conventions used
       throughout this chapter.
 \item Section~\ref{sec:dmblas_functionality},
       Functionality, describes the operations
       performed by the distributed-memory
       dense BLAS functions,
 \item Section~\ref{sec:dmblas_lis},
       Language and Data-distribution
       Independent Specifications,
       defines the operations of
       the distributed-memory dense
       BLAS independently from the 
       data-decomposition scheme
       used for distributing the
       operands.  Matrix-matrix
       multiply, matrix-vector
       multiply and dot-product
       are found there, along
       with many associated
       functions designed to
       make the basic linear
       algebra computational
       operation powerful, easy
       to use and efficient.
 \item Section~\ref{sec:dmblas_lds},
       Language- and Data-Distribution
       Dependent Specifications, defines
       the Fortran~77 and C bindings of
       the distributed-memory dense BLAS
       functions for the two-dimensional
       block-cyclic and block-cartesian
       data decomposition schemes.
 \item Section~\ref{sec:dmblas_ref_impl},
       A Reference Implementation, describes
       a model implementation of the 
       distributed-memory dense BLAS
       as well as testing and timing
       programs for the two-dimensional
       block-cyclic mapping that aims
       at supporting and encouraging
       the use of the distributed-memory 
       dense BLAS. 
 \item Section~\ref{sec:dmblas_lang_bindings},
       Language Bindings, gives specific 
       syntax in Fortran~77 and C, for all
       distributed-memory dense BLAS functions
       for the two-dimensional block-cyclic
       and block-cartesian data-decomposition
       schemes.
 \item The distributed-memory dense BLAS
       Index is a simple index showing the
       location of the precise definition
       of each function defined by this 
       chapter, together with both C and
       Fortran~77 bindings.
\end{itemize}


From dongarra@CS.UTK.EDU Fri Dec  5 10:57:23 1997
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id KAA09292; Fri, 5 Dec 1997 10:57:22 -0500
Received: from concorde.inria.fr (concorde.inria.fr [192.93.2.39]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id LAA17761; Fri, 5 Dec 1997 11:04:08 -0500 (EST)
Received: from arte.inria.fr (arte.inria.fr [128.93.12.53])
	by concorde.inria.fr (8.8.7/8.8.5) with ESMTP id RAA02474;
	Fri, 5 Dec 1997 17:04:06 +0100 (MET)
Received: from localhost (scott@localhost) by arte.inria.fr (8.7.6/8.7.3) with SMTP id RAA19777; Fri, 5 Dec 1997 17:04:05 +0100 (MET)
Date: Fri, 5 Dec 1997 17:04:04 +0100 (MET)
From: Tony Scott <Tony.Scott@inria.fr>
To: blast-comm@CS.UTK.EDU
cc: blast-sparse@CS.UTK.EDU, blast-parallel@CS.UTK.EDU
Subject: Maple/BLAS link
Message-ID: <Pine.OSF.3.96.971205165243.19714J-100000@arte.inria.fr>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII

Dear Sirs,

	My name is Tony Scott and I am one of the developers of
the Maple Computer Algebra System.  I am currently working on
a project which attempts to link Maple with Scilab (a fast
numerical software package which is similar to MATLAB).  In
particular, we are also interested in the links between Maple
and Scilab with FORTRAN, C and BLAS (Scilab is freeware BTW
and it can be accessed via anonymous ftp and is partly based on the
BLAS routines).  This project has started here at INRIA-Rocquencourt
(which is in the Paris region of France).

	For this reason, I would like to communicate with you
so as to exchange information that could benefit the outcome of 
this project.

	Dr. Claude Gomez has started a package called transfor which
transforms Matrix operations into BLAS routines.  So far it works
but it is based on the standard routines. We are also 
interested in SPARSE BLAS routines and routines which exploit
parallel processing.  However, keeping freewarein our minds,
we want to make sure that the conversion into BLAS is done in
terms of standard available (and free) routines.

	I know that the CRAY has a huge directory of SPARSE
BLAS routines and in the past few years, there has been some
intensive work on SPARSE BLAS routines.  However, I don't
know if these SPARSE BLAS routines are now "standard" and
available.  Can anyone tell me if they are?  and where a
directory of such routines are available?

Thank you for your time.

Best Wishes,

Tony Scott
Editor-in-Chief
MapleTech


From dongarra@CS.UTK.EDU Sat Dec  6 02:35:16 1997
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id CAA20279; Sat, 6 Dec 1997 02:35:16 -0500
Received: from timbuk.cray.com (timbuk-anet.cray.com [128.162.19.7]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id CAA11338; Sat, 6 Dec 1997 02:42:06 -0500 (EST)
Received: from ironwood.cray.com (root@ironwood-fddi.cray.com [128.162.21.36]) by timbuk.cray.com (8.8.7/CRI-gate-news-1.3) with ESMTP id BAA27165; Sat, 6 Dec 1997 01:42:05 -0600 (CST)
Received: from [204.73.50.35] (eagan-rip17 [204.73.50.17]) by ironwood.cray.com (8.8.4/CRI-ironwood-news-1.0) with ESMTP id BAA01658; Sat, 6 Dec 1997 01:42:00 -0600 (CST)
X-Sender: mamh@ironwood.cray.com
Message-Id: <v0300780eb0aeae1e465b@[204.73.50.35]>
In-Reply-To: <Pine.OSF.3.96.971205165243.19714J-100000@arte.inria.fr>
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Date: Sat, 6 Dec 1997 01:28:28 -0600
To: Tony Scott <Tony.Scott@inria.fr>, blast-comm@CS.UTK.EDU
From: Mike Heroux <mike.heroux@cray.com>
Subject: Re: Maple/BLAS link
Cc: blast-sparse@CS.UTK.EDU, blast-parallel@CS.UTK.EDU

Tony,

The sparse BLAS are not standard at this point.  There is ongoing
discussion about it, and progress is being made.  There are reference
implementations of a Toolkit and User level sparse BLAS.  The best starting
point is probably to visit the website http://math.nist.gov/spblas  This
page is maintained by Karin Remington and Roldan Pozo.  The reference
implementation of the Toolkit is there and pointers to Iain Duff's work on
the User Level sparse BLAS are there.

Best regards,

Mike

At 5:04 PM +0100 12/5/97, Tony Scott wrote:
>Dear Sirs,
>
>	My name is Tony Scott and I am one of the developers of
>the Maple Computer Algebra System.  I am currently working on
>a project which attempts to link Maple with Scilab (a fast
>numerical software package which is similar to MATLAB).  In
>particular, we are also interested in the links between Maple
>and Scilab with FORTRAN, C and BLAS (Scilab is freeware BTW
>and it can be accessed via anonymous ftp and is partly based on the
>BLAS routines).  This project has started here at INRIA-Rocquencourt
>(which is in the Paris region of France).
>
>	For this reason, I would like to communicate with you
>so as to exchange information that could benefit the outcome of
>this project.
>
>	Dr. Claude Gomez has started a package called transfor which
>transforms Matrix operations into BLAS routines.  So far it works
>but it is based on the standard routines. We are also
>interested in SPARSE BLAS routines and routines which exploit
>parallel processing.  However, keeping freewarein our minds,
>we want to make sure that the conversion into BLAS is done in
>terms of standard available (and free) routines.
>
>	I know that the CRAY has a huge directory of SPARSE
>BLAS routines and in the past few years, there has been some
>intensive work on SPARSE BLAS routines.  However, I don't
>know if these SPARSE BLAS routines are now "standard" and
>available.  Can anyone tell me if they are?  and where a
>directory of such routines are available?
>
>Thank you for your time.
>
>Best Wishes,
>
>Tony Scott
>Editor-in-Chief
>MapleTech




From dongarra@CS.UTK.EDU Wed Mar  4 15:07:28 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id PAA25817; Wed, 4 Mar 1998 15:07:27 -0500
Received: from mail.cs.utexas.edu (root@mail.cs.utexas.edu [128.83.139.10]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id PAA25480; Wed, 4 Mar 1998 15:07:47 -0500 (EST)
Received: from bigbird.cs.utexas.edu (rvdg@bigbird.cs.utexas.edu [128.83.143.202])
	by mail.cs.utexas.edu (8.8.5/8.8.5) with ESMTP id OAA21180;
	Wed, 4 Mar 1998 14:07:10 -0600 (CST)
Received: by bigbird.cs.utexas.edu (8.8.5/Client-1.5)
	id OAA10616; Wed, 4 Mar 1998 14:07:08 -0600
Date: Wed, 4 Mar 1998 14:07:08 -0600
Message-Id: <199803042007.OAA10616@bigbird.cs.utexas.edu>
From: Robert van de Geijn <rvdg@cs.utexas.edu>
To: blast-parallel@CS.UTK.EDU
CC: blast-comm@CS.UTK.EDU, morrow@cs.utexas.edu
Subject: Distributed BLAS standardization

Folks,

I would like to start by stating that in my personal opinion, we who
are strictly in academia should stay out of the standardization
business.  We should prototype ideas and give advice.  Ultimately, the
mission of standardization is better met by the government labs and
industry.

As you are all well aware, we at Texas have long held the opinion that
standardization of the distributed BLAS along the lines of the
ScaLAPACK PBLAS should not be done in haste.  Thus, we are quite
surprised to see that a first reading of the chapter on distributed
BLAS is planned at the next meeting, and that that chapter essentially
proposes to use the PBLAS interface as the standard.

Thus, a few years ago, we started the PLAPACK project to investigate
the merits of raising the abstraction for programming parallel BLAS
and codes that use parallel BLAS.  All along we agreed that this may
incur a certain overhead, but maintained that this could be overcome
by the fact that the simplicity of the programming interface would
allow for more sophisticated algorithms to be programmed.  We are
finally at a stage where we can report on our experiences.

The following performance comparison between PLAPACK and the
equivalent ScaLAPACK routine on a 16 node Cray T3E-600 demonstrates
our point:

            Performance of dense linear solve 
             (in MFLOPS/sec/processor)

               n       PLAPACK         ScaLAPACK
                     (PLA_Gesv)        (PSGESV)
            2000          66             101
            5000         174             168 
            7500         228             201
           10000         268             209

The ScaLAPACK performance numbers were derived from those reported in
the ScaLAPACK Users' Guide.  We conducted our own experiments on the
T3E used to collect the PLAPACK numbers and found the ScaLAPACK
numbers to be representative.  Of course, 16 nodes is too small to
prove a point, however, we have incomplete data to show that the same
behavior can be observed on other platforms and larger systems.

Since performance is sometimes a determining factor in whether or
not people pay attention to research, we hope that the above 
numbers will encourage people to look beyond the ScaLAPACK PBLAS,
and consider alternatives.  Our advice is that a more comprehensive
interface to an infrastructure be considered, along the line of MPI.
In particular, indices are evil.

More information on PLAPACK:
      http://www.cs.utexas.edu/users/plapack
      plapack@cs.utexas.edu 

The PLAPACK Users' Guide is available from The MIT Press:
       Robert van de Geijn, 
       "Using PLAPACK: Parallel Linear Algebra Package",
       The MIT Press, 1997
       http://mitpress.mit.edu/

Best Regards
Greg Morrow and Robert van de Geijn
for the PLAPACK team

======================================================================
Robert A. van de Geijn              Taylor Hall 4.115C
Associate Professor                 (512) 471-9720 (office)
Department of Computer Sciences     (512) 471-8885 (fax)
The University of Texas             rvdg@cs.utexas.edu
Austin, Texas 78712                 http://www.cs.utexas.edu/users/rvdg




From dongarra@CS.UTK.EDU Wed Mar  4 16:03:13 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id QAA26240; Wed, 4 Mar 1998 16:03:13 -0500
Received: from cupid.cs.utk.edu (CUPID.CS.UTK.EDU [128.169.94.221]) 
        by CS.UTK.EDU with SMTP (cf v2.9s-UTK)
	id QAA29446; Wed, 4 Mar 1998 16:04:39 -0500 (EST)
From: R Clint Whaley <rwhaley@CS.UTK.EDU>
Received:  by cupid.cs.utk.edu (cf v2.11c-UTK)
          id QAA04618; Wed, 4 Mar 1998 16:04:33 -0500
Date: Wed, 4 Mar 1998 16:04:33 -0500
Message-Id: <199803042104.QAA04618@cupid.cs.utk.edu>
To: blast-parallel@CS.UTK.EDU, rvdg@cs.utexas.edu
Subject: Re:  Distributed BLAS standardization
Cc: blast-comm@CS.UTK.EDU, morrow@cs.utexas.edu

>The following performance comparison between PLAPACK and the
>equivalent ScaLAPACK routine on a 16 node Cray T3E-600 demonstrates
>our point:
>
>            Performance of dense linear solve 
>             (in MFLOPS/sec/processor)
>
>               n       PLAPACK         ScaLAPACK
>                     (PLA_Gesv)        (PSGESV)
>            2000          66             101
>            5000         174             168 
>            7500         228             201
>           10000         268             209
>
>The ScaLAPACK performance numbers were derived from those reported in
>the ScaLAPACK Users' Guide.  We conducted our own experiments on the
>T3E used to collect the PLAPACK numbers and found the ScaLAPACK
>numbers to be representative.  Of course, 16 nodes is too small to
>prove a point, however, we have incomplete data to show that the same
>behavior can be observed on other platforms and larger systems.

I'm a little confused.  The numbers in the SLUG (which are you are using),
are for a 300Mhz T3E; i.e., the hardware is running half as fast as the
hardware for your plapack timings.  I don't have access to a 600Mhz T3E,
but I do have access to a 450Mhz T3E.  Here are the numbers, as you've plotted
them:
                       
                         600Mhz         450Mhz
               n       PLAPACK         ScaLAPACK
                     (PLA_Gesv)        (PSGESV)
            2000          66             122
            5000         174             257 
            7500         228             315
           10000         268             344

Taken at face value, these numbers seem to indicate that ScaLAPACK is strikingly
faster . . .

Cheers,
Clint

From dongarra@CS.UTK.EDU Wed Mar  4 16:27:52 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id QAA26570; Wed, 4 Mar 1998 16:27:51 -0500
Received: from mail.cs.utexas.edu (root@mail.cs.utexas.edu [128.83.139.10]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id QAA01348; Wed, 4 Mar 1998 16:29:06 -0500 (EST)
Received: from bigbird.cs.utexas.edu (morrow@bigbird.cs.utexas.edu [128.83.143.202])
	by mail.cs.utexas.edu (8.8.5/8.8.5) with ESMTP id PAA24265;
	Wed, 4 Mar 1998 15:28:24 -0600 (CST)
From: Greg Morrow <morrow@cs.utexas.edu>
Received: by bigbird.cs.utexas.edu (8.8.5/Client-1.5)
	id PAA22566; Wed, 4 Mar 1998 15:28:23 -0600
Message-Id: <199803042128.PAA22566@bigbird.cs.utexas.edu>
Subject: Re: Distributed BLAS standardization
To: rwhaley@CS.UTK.EDU
Date: Wed, 4 Mar 1998 15:28:22 -0600 (CST)
Cc: blast-parallel@CS.UTK.EDU, blast-comm@CS.UTK.EDU,
        rvdg@cs.utexas.edu (Robert van de Geijn)
In-Reply-To: <199803042104.QAA04618@cupid.cs.utk.edu> from "rwhaley@cs.utk.edu" at Mar 4, 98 04:04:33 pm
X-Mailer: ELM [version 2.4 PL25]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit

rwhaley@cs.utk.edu wrote :
> 
> >The following performance comparison between PLAPACK and the
> >equivalent ScaLAPACK routine on a 16 node Cray T3E-600 demonstrates
> >our point:
> >
> >            Performance of dense linear solve 
> >             (in MFLOPS/sec/processor)
> >
> >               n       PLAPACK         ScaLAPACK
> >                     (PLA_Gesv)        (PSGESV)
> >            2000          66             101
> >            5000         174             168 
> >            7500         228             201
> >           10000         268             209
> >

...

> 
> I'm a little confused.  The numbers in the SLUG (which are you are using),
> are for a 300Mhz T3E; i.e., the hardware is running half as fast as the
> hardware for your plapack timings.  I don't have access to a 600Mhz T3E,
> but I do have access to a 450Mhz T3E.  Here are the numbers, as you've plotted
> them:
>                        
>                          600Mhz         450Mhz
>                n       PLAPACK         ScaLAPACK
>                      (PLA_Gesv)        (PSGESV)
>             2000          66             122
>             5000         174             257 
>             7500         228             315
>            10000         268             344
> 
> Taken at face value, these numbers seem to indicate that ScaLAPACK is strikingly
> faster . . .
> 
> Cheers,
> Clint
> 

Clint,

There is a bit of confusion here.  The T3E 600 is the 
model number for the 300 MHz machine.  The T3E 900 is 
the 450 MHz machine.  The PLAPACK numbers are from
the 300 Mhz machine, so the comparison is fair.

Thanks,
Greg 

--
Greg Morrow                          morrow@cs.utexas.edu
Texas Institute for Computational and Applied Mathematics
University of Texas at Austin                  









From dongarra@CS.UTK.EDU Wed Mar  4 16:59:03 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id QAA26845; Wed, 4 Mar 1998 16:58:59 -0500
Received: from antares.mcs.anl.gov (mcs.anl.gov [140.221.9.6]) 
        by CS.UTK.EDU with SMTP (cf v2.9s-UTK)
	id RAA03672; Wed, 4 Mar 1998 17:00:25 -0500 (EST)
Received: from eagle.mcs.anl.gov (eagle.mcs.anl.gov [140.221.3.47]) by antares.mcs.anl.gov (8.6.10/8.6.10)  with SMTP
	id QAA17923; Wed, 4 Mar 1998 16:00:20 -0600
Date: Wed, 4 Mar 1998 16:00:18 -0600 (CST)
From: Barry Smith <bsmith@mcs.anl.gov>
To: blast-parallel@CS.UTK.EDU, blast-comm@CS.UTK.ED
Subject: Re: Distributed BLAS standardization
In-Reply-To: <199803042007.OAA10616@bigbird.cs.utexas.edu>
Message-ID: <Pine.SUN.3.95.980304153926.21090Y-100000@eagle.mcs.anl.gov>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII


  It would be very unfortunate if a standard were implemented 
just because "any standard is better than no standard". Clearly
the research community is still exploring various approaches to 
parallelizing dense matrix computations, good new ideas are still
emerging, they should be fostered not crushed.

  I withdraw from the BLAST Forum because it was clear to me that
it would never have the community-wide participation required to 
foster the best possible approaches and standards (that for example, 
MPI did have). Unless the BLAST Forum has the wide participation,
it will always be irrelevent to the end users.

  I hope that Robert can propose the PLAPACK approach as an alternative
to the PBLAS as a chapter in the distributed BLAS. The technical
discussions and learning as one compares and contrasts the two 
approaches are fundamental to developing any standards; no one loses
and everyone wins if you can select the best parts of several proposals.
This was the great success of MPI.

  Barry Smith


On Wed, 4 Mar 1998, Robert van de Geijn wrote:

> Folks,
> 
> I would like to start by stating that in my personal opinion, we who
> are strictly in academia should stay out of the standardization
> business.  We should prototype ideas and give advice.  Ultimately, the
> mission of standardization is better met by the government labs and
> industry.
> 
> As you are all well aware, we at Texas have long held the opinion that
> standardization of the distributed BLAS along the lines of the
> ScaLAPACK PBLAS should not be done in haste.  Thus, we are quite
> surprised to see that a first reading of the chapter on distributed
> BLAS is planned at the next meeting, and that that chapter essentially
> proposes to use the PBLAS interface as the standard.
> 
> Thus, a few years ago, we started the PLAPACK project to investigate
> the merits of raising the abstraction for programming parallel BLAS
> and codes that use parallel BLAS.  All along we agreed that this may
> incur a certain overhead, but maintained that this could be overcome
> by the fact that the simplicity of the programming interface would
> allow for more sophisticated algorithms to be programmed.  We are
> finally at a stage where we can report on our experiences.
> 
> The following performance comparison between PLAPACK and the
> equivalent ScaLAPACK routine on a 16 node Cray T3E-600 demonstrates
> our point:
> 
>             Performance of dense linear solve 
>              (in MFLOPS/sec/processor)
> 
>                n       PLAPACK         ScaLAPACK
>                      (PLA_Gesv)        (PSGESV)
>             2000          66             101
>             5000         174             168 
>             7500         228             201
>            10000         268             209
> 
> The ScaLAPACK performance numbers were derived from those reported in
> the ScaLAPACK Users' Guide.  We conducted our own experiments on the
> T3E used to collect the PLAPACK numbers and found the ScaLAPACK
> numbers to be representative.  Of course, 16 nodes is too small to
> prove a point, however, we have incomplete data to show that the same
> behavior can be observed on other platforms and larger systems.
> 
> Since performance is sometimes a determining factor in whether or
> not people pay attention to research, we hope that the above 
> numbers will encourage people to look beyond the ScaLAPACK PBLAS,
> and consider alternatives.  Our advice is that a more comprehensive
> interface to an infrastructure be considered, along the line of MPI.
> In particular, indices are evil.
> 
> More information on PLAPACK:
>       http://www.cs.utexas.edu/users/plapack
>       plapack@cs.utexas.edu 
> 
> The PLAPACK Users' Guide is available from The MIT Press:
>        Robert van de Geijn, 
>        "Using PLAPACK: Parallel Linear Algebra Package",
>        The MIT Press, 1997
>        http://mitpress.mit.edu/
> 
> Best Regards
> Greg Morrow and Robert van de Geijn
> for the PLAPACK team
> 
> ======================================================================
> Robert A. van de Geijn              Taylor Hall 4.115C
> Associate Professor                 (512) 471-9720 (office)
> Department of Computer Sciences     (512) 471-8885 (fax)
> The University of Texas             rvdg@cs.utexas.edu
> Austin, Texas 78712                 http://www.cs.utexas.edu/users/rvdg
> 
> 
> 
> 


From dongarra@CS.UTK.EDU Wed Mar  4 17:09:59 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id RAA26952; Wed, 4 Mar 1998 17:09:59 -0500
Received: from timbuk.cray.com (timbuk-fddi.cray.com [128.162.8.102]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id RAA04272; Wed, 4 Mar 1998 17:08:23 -0500 (EST)
Received: from ironwood.cray.com (root@ironwood-fddi.cray.com [128.162.21.36]) by timbuk.cray.com (8.8.8/CRI-gate-news-1.3) with ESMTP id QAA16328; Wed, 4 Mar 1998 16:08:07 -0600 (CST)
Received: from song.cray.com (song [128.162.174.153]) by ironwood.cray.com (8.8.4/CRI-ironwood-news-1.0) with ESMTP id QAA20911; Wed, 4 Mar 1998 16:08:05 -0600 (CST)
From: Guangye Li <gli@cray.com>
Received: by song.cray.com (8.8.0/btd-b3)
          id WAA14728; Wed, 4 Mar 1998 22:08:04 GMT
Message-Id: <199803042208.WAA14728@song.cray.com>
Subject: Re: Distributed BLAS standardization
To: rwhaley@CS.UTK.EDU (R Clint Whaley)
Date: Wed, 4 Mar 1998 16:08:03 -0600 (CST)
Cc: blast-parallel@CS.UTK.EDU, rvdg@cs.utexas.edu, blast-comm@CS.UTK.EDU,
        morrow@cs.utexas.edu
In-Reply-To: <199803042104.QAA04618@cupid.cs.utk.edu> from "R Clint Whaley" at Mar 4, 98 04:04:33 pm
X-Mailer: ELM [version 2.4 PL24-CRI-d]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit

Just a clarification on the T3E speed. 
The naming of the T3E series is based on the peak mega flop rate 
of the processor instead of mega hertz. So a 300 Mhz T3E is called the 
T3E600, The 450 Mhz T3E and 600 Mhz T3E are called the T3E900 and 
T3E1200 respectively. 

Guangye Li
Cray Research, a Silicon Graphics Company

> 
> >The following performance comparison between PLAPACK and the
> >equivalent ScaLAPACK routine on a 16 node Cray T3E-600 demonstrates
> >our point:
> >
> >            Performance of dense linear solve 
> >             (in MFLOPS/sec/processor)
> >
> >               n       PLAPACK         ScaLAPACK
> >                     (PLA_Gesv)        (PSGESV)
> >            2000          66             101
> >            5000         174             168 
> >            7500         228             201
> >           10000         268             209
> >
> >The ScaLAPACK performance numbers were derived from those reported in
> >the ScaLAPACK Users' Guide.  We conducted our own experiments on the
> >T3E used to collect the PLAPACK numbers and found the ScaLAPACK
> >numbers to be representative.  Of course, 16 nodes is too small to
> >prove a point, however, we have incomplete data to show that the same
> >behavior can be observed on other platforms and larger systems.
> 
> I'm a little confused.  The numbers in the SLUG (which are you are using),
> are for a 300Mhz T3E; i.e., the hardware is running half as fast as the
> hardware for your plapack timings.  I don't have access to a 600Mhz T3E,
> but I do have access to a 450Mhz T3E.  Here are the numbers, as you've plotted
> them:
>                        
>                          600Mhz         450Mhz
>                n       PLAPACK         ScaLAPACK
>                      (PLA_Gesv)        (PSGESV)
>             2000          66             122
>             5000         174             257 
>             7500         228             315
>            10000         268             344
> 
> Taken at face value, these numbers seem to indicate that ScaLAPACK is strikingly
> faster . . .
> 
> Cheers,
> Clint
> 


From dongarra@CS.UTK.EDU Fri Mar 13 16:03:09 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id QAA10979; Fri, 13 Mar 1998 16:03:09 -0500
Received: from mail.cs.utexas.edu (root@mail.cs.utexas.edu [128.83.139.10]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id QAA00522; Fri, 13 Mar 1998 16:06:26 -0500 (EST)
Received: from bigbird.cs.utexas.edu (rvdg@bigbird.cs.utexas.edu [128.83.143.202])
	by mail.cs.utexas.edu (8.8.5/8.8.5) with ESMTP id PAA18524;
	Fri, 13 Mar 1998 15:05:23 -0600 (CST)
Received: by bigbird.cs.utexas.edu (8.8.5/Client-1.5)
	id PAA37802; Fri, 13 Mar 1998 15:05:21 -0600
Date: Fri, 13 Mar 1998 15:05:21 -0600
Message-Id: <199803132105.PAA37802@bigbird.cs.utexas.edu>
From: Robert van de Geijn <rvdg@cs.utexas.edu>
To: blast-parallel@CS.UTK.EDU
CC: blast-comm@CS.UTK.EDU, plapackers@cs.utexas.edu
In-reply-to: <199803042007.OAA10616@bigbird.cs.utexas.edu> (message from
	Robert van de Geijn on Wed, 4 Mar 1998 14:07:08 -0600)
Subject: Re: Distributed BLAS standardization

Folks,

just to show that high level abstraction can be achieved from FORTRAN
as well, we have just completed an initial stab at a PLAPACK FORTRAN
interface.  As for the C PLAPACK interface itself, the FORTRAN
interface has an MPI-like feel to it, which is also what made the
interface quite simple to implement.  Comments are of course welcome.

For details, see http://www.cs.utexas.edu/users/plapack/FORTRAN

Best Regards
Robert

======================================================================
Robert A. van de Geijn              Taylor Hall 4.115C
Associate Professor                 (512) 471-9720 (office)
Department of Computer Sciences     (512) 471-8885 (fax)
The University of Texas             rvdg@cs.utexas.edu
Austin, Texas 78712                 http://www.cs.utexas.edu/users/rvdg

From dongarra@CS.UTK.EDU Tue Apr 14 04:05:13 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id EAA12187; Tue, 14 Apr 1998 04:05:12 -0400
Received: from sky.fit.qut.edu.au (rajkumar@sky.fit.qut.edu.au [131.181.2.4]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id EAA07245; Tue, 14 Apr 1998 04:15:07 -0400 (EDT)
Received: (from rajkumar@localhost)
	by sky.fit.qut.edu.au (8.8.8/8.8.8/tony) id SAA10846;
	Tue, 14 Apr 1998 18:14:58 +1000 (EST)
Date: Tue, 14 Apr 1998 18:14:58 +1000 (EST)
From: Rajkumar Bunya <rajkumar@fit.qut.edu.au>
Message-Id: <199804140814.SAA10846@sky.fit.qut.edu.au>
To: blast-comm@CS.UTK.EDU, blast-parallel@CS.UTK.EDU
Subject:  CFP for PDCP Journal special issue

                              Special Issue on

                   High Performance Computing on Clusters

          Parallel and Distributed Computing Practices (PDCP) Journal

          February 1999 (Vol 2, No 2), Nova Science Publishers, USA

                              Call for Papers
----------------------------------------------------------------------------

In the recent years, high speed network and improved microprocessor
performance are making network of workstations an appealing vehicle for
parallel computing. Cluster/network of computers (workstations/PCs) built
using commodity hardware or software is playing a major role in redefining
the concept of Supercomputing. As a whole, Clusters are becoming
compromising solution to MPPs and Supercomputers. The focus of this special
issue will be on both hardware and software aspects of computing on
clusters. Topics of interest include, but are not limited to:

   * Cluster Hardware (Cluster of Workstations or PCs)
   * Active Messages and Light Weight Protocols
   * Cluster Operating System
   * Single System Image
   * Network Capabilities for Fast Communication
   * Message Passing Systems such as MPI and PVM for Clusters
   * Characterization of Communication and Synchronization Traffic
   * Operating Environments
   * Data Distribution and Load Balancing
   * Programming Paradigms/Environment for Clusters
   * HPCC Models for Graphics and Multimedia
   * Problem Solving Environment for Clusters
   * Tools for Operating and Managing Clusters
   * Parallel and Distributed Computing/HPC in Java
   * Algorithms for Solving Problems on Clusters
   * Building Applications on Clusters
   * Large Scale System Administration
   * Issues in Building Scalable Services
   * Fault Tolerance Issues for Clusters

Submission should include authors names, affiliations, addresses, fax and
phone numbers, email addresses, on the cover page. Please submit full paper
(not exceeding 10 single spaced pages in length) to one of the guest editors
electronically. Email postscript file of the paper (preferably viewable by
ghostview); also send a separate email with authors' names, addresses, title
and abstract of the paper. Hard copies should be sent only if electronic
submission is not possible.

Please submit full paper for consideration to this special issue to one of
the guest editors by September 15, 1998.

Guest Editors:

 RAJKUMAR                             Clemens Szyperski
 School of Computing Science          School of Computing Science
 Faculty of Information Technology    Faculty of Information Technology
 Queensland University of Technology  Queensland University of Technology
 825a, Level 8, ITE Building          735, Level 7, ITE Building
 Gardens Point Campus                 Gardens Point Campus
 Brisbane,, Australia, QLD 4001       Brisbane, Australia, QLD 4001
 Office phone: +61 7 3864 1290        Phone: +61 7 3864 2132
 Office fax: +61 7 3864 1801          Fax: +61 7 3864 1801
 Email: rajkumar@fit.qut.edu.au       Email: szypersk@fit.qut.edu.au

Important Dates:

 Draft Papers due on:                  15th September, 1998
 Notification of acceptance:           15th November, 1998
 Final paper in LaTeX format due on:   15th December, 1998

Important URLs:

PDCP Journal: http://orca.st.usm.edu/pdcp
CFP: http://www.fit.qut.edu.au/~rajkumar/pdcp.html
CFP: http://www.fit.qut.edu.au/~szypersk/pdcp.html
Instructons for
Contributors: http://orca.st.usm.edu/pdcp/InstructionsForContributors.html
Nova Science Publishers: http://www.nexusworld.com/nova
----------------------------------------------------------------------------

From dongarra@CS.UTK.EDU Thu Apr 16 15:43:53 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id PAA02022; Thu, 16 Apr 1998 15:43:53 -0400
Received: from mail.cs.utexas.edu (root@mail.cs.utexas.edu [128.83.139.10]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id PAA24407; Thu, 16 Apr 1998 15:43:35 -0400 (EDT)
Received: from bigbird.cs.utexas.edu (rvdg@bigbird.cs.utexas.edu [128.83.143.202])
	by mail.cs.utexas.edu (8.8.5/8.8.5) with ESMTP id OAA29473;
	Thu, 16 Apr 1998 14:42:32 -0500 (CDT)
Received: by bigbird.cs.utexas.edu (8.8.5/Client-1.5)
	id OAA18392; Thu, 16 Apr 1998 14:42:31 -0500
Date: Thu, 16 Apr 1998 14:42:31 -0500
Message-Id: <199804161942.OAA18392@bigbird.cs.utexas.edu>
From: Robert van de Geijn <rvdg@cs.utexas.edu>
To: blast-comm@CS.UTK.EDU
CC: blast-parallel@CS.UTK.EDU, rvdg@cs.utexas.edu
Subject: Distributed BLAS standardization


Folks,

We recently reported performance numbers for PLAPACK vs. ScaLAPACK on
our Cray T3E-600.  In compiling numbers for ScaLAPACK, we measured
performance of the ScaLAPACK library that is part of the Cray
scientific library.  We were not aware that the Cray scientific
library is compiled with "streams" turned off.  The default for our
system is to have streams turned on for both compilation and
execution, and thus PLAPACK was compiled and executed with streams
turned on.

Corrected performance numbers (for the LU factorization based
solvers) are given below.  

	    Cray T3E-600 (300 MHz)  16 nodes

          PLAPACK    ScaLAPACK      ScaLAPACK (Empirical)
size    streams on    Guide     streams off     streams on
--------------------------------------------------------------
 2000       66         101          91              110
 5000      174         168         169              215
 7500      228         201         202              259
10000      268         209         225              285

Version information:

PLAPACK                Release 1.1
ScaLAPACK	       as part of Cray Scientific Library
Standard C compiler    Cray Standard C Version
Cray Assembler         CAM Version 2.3.0.0
f90                    Cray CF90
CrayLibs               Version 3.0.0.0
CrayTools              Version 3.0.0.0
Compiler Options       -O3

While the performance numbers we quoted for the ScaLAPACK version
included in the Cray scientific library were not measured under
optimal circumstances, the conclusion that high performance can be
attained by raising the level of abstraction is nonetheless correct.
We had merely stopped optimizing PLAPACK at the point where we felt
there was a comfortable gap between PLAPACK performance and ScaLAPACK
performance.

After measuring ScaLAPACK with streams turned on, I implemented a few
minor optimizations to PLAPACK to demonstrate this point.  So far, we
have only done this for the Cholesky factorization.  The following
table reports a number of different versions for each of ScaLAPACK and
PLAPACK

           Cray T3E-600 (300 MHz) 16 processors

                PLAPACK                         ScaLAPACK
         Previously   Optimized     Cray Sci Library     netlib version
          Reported                 streams off   on       streams on
    n                                   
 1000                   49              83      98           85             
 2000       104        115             137     165          149
 3000                  168             164     199          191
 4000                  200             184     226          222
 5000       219        232             198     243          240
 7500       268        283             220     269          273
10000       302        315             234     287          292
12500                  334             245     299          306
14000                  348


A comment on what was measured:
Performance for PLAPACK and for the Cray Sci Library were performed
by ourselves on the Cray T3E-600 at UT-Austin.  The compiler versions
etc. are given above.  The numbers in the last column were sent to
us by Jack Dongarra, and were collected on the NERSC Cray T3E-600.
Version info for that machine:

     UNICOS/mk 2.0.2.18
     LIBSCI 3.0.1.4
     C compiler = cc
     C flags    = -O3
     F77 compiler = f90
     F77 flags = -dp -O3 -X m
     Cray MPI (mpt 1.2.0.1)
   The ScaLAPACK code was what is available on netlib:
   ScaLAPACK, version 1.5 + update1.6 + t3epatch 
   The Default Programming Environment on the Cray was:
     craylibs     3.0.1.4         craytools      3.0.1.1
     cf90         3.0.1.4         scc            6.0.1.3
     CC           3.0.1.3         CCmathlib      3.0.1.0
     CCtoollib    3.0.1.0         cam            2.3.0.1
     mpt          1.2.0.1

A few comments about performance: 
Notice that the asymptotic performance of PLAPACK is better than the
current version of ScaLAPACK.  We be (speculatively) attributed to 
two things:

1) we use an algorithmic block size that is larger than our distribution
blocksize, which appears to improve performance.

2) The local symmetric rank-k update performed as part of the Cholesky
is inherently tricky: Locally on one node, the matrix is not a clean
rectangle nor a clean triangle, and thus the matrix is generally
updated panel at a time (where the panel width equals the distribution
block size).  Our implementation instead uses a recursive approach,
which recreates a clean rectangle for the bulk of the computation,
thereby improving performance of the local BLAS calls.

Notice that for smaller matrices, PLAPACK clearly still carries a large
overhead.  With some effort this can still be improved.

Limitations of the reported experiment: The data is for one machine,
one mesh size, and one algorithm.

Conclusion (as before): There is still much research to be done in
this area.  It thus continues to be our view that standardization of
the distributed BLAS is premature, regardless of the interface being
proposed.

Regards
Robert

From dongarra@CS.UTK.EDU Thu Apr 16 16:35:10 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id QAA02537; Thu, 16 Apr 1998 16:35:08 -0400
Received: from Aurora.CS.MsState.Edu (aurora.cs.msstate.edu [130.18.209.4]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id QAA28634; Thu, 16 Apr 1998 16:25:29 -0400 (EDT)
Received: from localhost (tony@localhost);
           by Aurora.CS.MsState.Edu using SMTP (8.8.8/7.0m-FWP-MsState);
           id PAA20697; Thu, 16 Apr 1998 15:34:49 -0500 (CDT)
Date: Thu, 16 Apr 1998 15:34:48 -0500 (CDT)
From: Tony Skjellum <tony@Aurora.CS.MsState.Edu>
To: Robert van de Geijn <rvdg@cs.utexas.edu>
cc: blast-comm@CS.UTK.EDU, blast-parallel@CS.UTK.EDU
Subject: Re: Distributed BLAS standardization
In-Reply-To: <199804161942.OAA18392@bigbird.cs.utexas.edu>
Message-ID: <Pine.GSO.3.95.980416152645.20330M-100000@aurora.cs.msstate.edu>
MIME-Version: 1.0
Content-Type: TEXT/PLAIN; charset=US-ASCII

Folks,

Aren't we just comparing how clever Robert is vs. how clever Cray is here,
on a given day, or how many minion hours have been applied to a specific
solver in specific situations in either academia or industry?   

I see no way to draw scientific inteferences (new word) other than for
dense linear algebra on 1 CPU, modulo overheads, the right abstracton
levels work pretty well (subject to all the neat issues we have learned
from each other over the years about involving caches, prefetching, pages,
TLBs etc), and there are important issues (like poly-algorithms)  that
come into play, particularly in parallel. I think most people involved in
BLAST share these values, so I am not sure that the letter argues for
anything in terms of a persuasive argument, other than a dictum that we
not standardize :-) 

It is very well likely that standardizing the API would increase the
users of solvers, and if done right, would enhance, rather than detract
from the competition, because it would allow (if general enough) all the
interesting options  to function efficiently, under one tent: for
instance, with early binding of the problem, to allow poly-algorithmic
selection in the parallel case, or to avoid repeated error checking
for the case of small, multiple instance problems.

Indeed, standardization democratizes the situation, by giving more play to
those would have not been willing to use existing interfaces, because they
prohibit efficient programmatic approaches, including but not limited to
those above.   Robert and others benefit if they can, within the canon of
an interface, show off their new ideas without breaking user code.

I submit that the BLAST Activity therefore can accelerate and otherwise
benefit the on-going effort to understand how to reduce price of
portability, and increase the market for reusable solvers like these.

Hope you have a good meeting in April, I'll see you at the next one
in October!

Tony

On Thu, 16 Apr 1998, Robert van de Geijn wrote:

> Date: Thu, 16 Apr 1998 14:42:31 -0500
> From: Robert van de Geijn <rvdg@cs.utexas.edu>
> To: blast-comm@CS.UTK.EDU
> Cc: blast-parallel@CS.UTK.EDU, rvdg@cs.utexas.edu
> Subject: Distributed BLAS standardization
> 
> 
> Folks,
> 
> We recently reported performance numbers for PLAPACK vs. ScaLAPACK on
> our Cray T3E-600.  In compiling numbers for ScaLAPACK, we measured
> performance of the ScaLAPACK library that is part of the Cray
> scientific library.  We were not aware that the Cray scientific
> library is compiled with "streams" turned off.  The default for our
> system is to have streams turned on for both compilation and
> execution, and thus PLAPACK was compiled and executed with streams
> turned on.
> 
> Corrected performance numbers (for the LU factorization based
> solvers) are given below.  
> 
> 	    Cray T3E-600 (300 MHz)  16 nodes
> 
>           PLAPACK    ScaLAPACK      ScaLAPACK (Empirical)
> size    streams on    Guide     streams off     streams on
> --------------------------------------------------------------
>  2000       66         101          91              110
>  5000      174         168         169              215
>  7500      228         201         202              259
> 10000      268         209         225              285
> 
> Version information:
> 
> PLAPACK                Release 1.1
> ScaLAPACK	       as part of Cray Scientific Library
> Standard C compiler    Cray Standard C Version
> Cray Assembler         CAM Version 2.3.0.0
> f90                    Cray CF90
> CrayLibs               Version 3.0.0.0
> CrayTools              Version 3.0.0.0
> Compiler Options       -O3
> 
> While the performance numbers we quoted for the ScaLAPACK version
> included in the Cray scientific library were not measured under
> optimal circumstances, the conclusion that high performance can be
> attained by raising the level of abstraction is nonetheless correct.
> We had merely stopped optimizing PLAPACK at the point where we felt
> there was a comfortable gap between PLAPACK performance and ScaLAPACK
> performance.
> 
> After measuring ScaLAPACK with streams turned on, I implemented a few
> minor optimizations to PLAPACK to demonstrate this point.  So far, we
> have only done this for the Cholesky factorization.  The following
> table reports a number of different versions for each of ScaLAPACK and
> PLAPACK
> 
>            Cray T3E-600 (300 MHz) 16 processors
> 
>                 PLAPACK                         ScaLAPACK
>          Previously   Optimized     Cray Sci Library     netlib version
>           Reported                 streams off   on       streams on
>     n                                   
>  1000                   49              83      98           85             
>  2000       104        115             137     165          149
>  3000                  168             164     199          191
>  4000                  200             184     226          222
>  5000       219        232             198     243          240
>  7500       268        283             220     269          273
> 10000       302        315             234     287          292
> 12500                  334             245     299          306
> 14000                  348
> 
> 
> A comment on what was measured:
> Performance for PLAPACK and for the Cray Sci Library were performed
> by ourselves on the Cray T3E-600 at UT-Austin.  The compiler versions
> etc. are given above.  The numbers in the last column were sent to
> us by Jack Dongarra, and were collected on the NERSC Cray T3E-600.
> Version info for that machine:
> 
>      UNICOS/mk 2.0.2.18
>      LIBSCI 3.0.1.4
>      C compiler = cc
>      C flags    = -O3
>      F77 compiler = f90
>      F77 flags = -dp -O3 -X m
>      Cray MPI (mpt 1.2.0.1)
>    The ScaLAPACK code was what is available on netlib:
>    ScaLAPACK, version 1.5 + update1.6 + t3epatch 
>    The Default Programming Environment on the Cray was:
>      craylibs     3.0.1.4         craytools      3.0.1.1
>      cf90         3.0.1.4         scc            6.0.1.3
>      CC           3.0.1.3         CCmathlib      3.0.1.0
>      CCtoollib    3.0.1.0         cam            2.3.0.1
>      mpt          1.2.0.1
> 
> A few comments about performance: 
> Notice that the asymptotic performance of PLAPACK is better than the
> current version of ScaLAPACK.  We be (speculatively) attributed to 
> two things:
> 
> 1) we use an algorithmic block size that is larger than our distribution
> blocksize, which appears to improve performance.
> 
> 2) The local symmetric rank-k update performed as part of the Cholesky
> is inherently tricky: Locally on one node, the matrix is not a clean
> rectangle nor a clean triangle, and thus the matrix is generally
> updated panel at a time (where the panel width equals the distribution
> block size).  Our implementation instead uses a recursive approach,
> which recreates a clean rectangle for the bulk of the computation,
> thereby improving performance of the local BLAS calls.
> 
> Notice that for smaller matrices, PLAPACK clearly still carries a large
> overhead.  With some effort this can still be improved.
> 
> Limitations of the reported experiment: The data is for one machine,
> one mesh size, and one algorithm.
> 
> Conclusion (as before): There is still much research to be done in
> this area.  It thus continues to be our view that standardization of
> the distributed BLAS is premature, regardless of the interface being
> proposed.
> 
> Regards
> Robert
> 

A. Skjellum, PhD, Assoc. Prof. of Computer Science; Mississippi State University
http://www.cs.msstate.edu/~tony; tony@cs.msstate.edu; 601-325-8435 (FAX -8997)
"Mississippi (n): small US state where opportunities abound." [Try MPI/RT!]



From dongarra@CS.UTK.EDU Thu Apr 16 19:02:07 1998
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	id TAA03846; Thu, 16 Apr 1998 19:02:07 -0400
Received: from timbuk.cray.com (timbuk-fddi.cray.com [128.162.8.102]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id TAA06842; Thu, 16 Apr 1998 19:02:08 -0400 (EDT)
Received: from ironwood.cray.com (root@ironwood-fddi.cray.com [128.162.21.36]) by timbuk.cray.com (8.8.8/CRI-gate-news-1.3) with ESMTP id SAA05188; Thu, 16 Apr 1998 18:02:03 -0500 (CDT)
Received: from horta.cray.com (horta [128.162.173.163]) by ironwood.cray.com (8.8.4/CRI-ironwood-news-1.0) with ESMTP id SAA23487; Thu, 16 Apr 1998 18:02:01 -0500 (CDT)
From: Ed Anderson <eca@cray.com>
Received: by horta.cray.com (8.8.0/btd-b3)
          id XAA01112; Thu, 16 Apr 1998 23:02:00 GMT
Message-Id: <199804162302.XAA01112@horta.cray.com>
Subject: Re: Distributed BLAS standardization
To: rvdg@cs.utexas.edu (Robert van de Geijn)
Date: Thu, 16 Apr 1998 18:02:00 -0500 (CDT)
Cc: blast-comm@CS.UTK.EDU, blast-parallel@CS.UTK.EDU
In-Reply-To: <199804161942.OAA18392@bigbird.cs.utexas.edu> from "Robert van de Geijn" at Apr 16, 98 02:42:31 pm
X-Mailer: ELM [version 2.4 PL24-CRI-d]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit

Robert van de Geijn wrote:
> 
> Folks,
> 
> We recently reported performance numbers for PLAPACK vs. ScaLAPACK on
> our Cray T3E-600.  In compiling numbers for ScaLAPACK, we measured
> performance of the ScaLAPACK library that is part of the Cray
> scientific library.  We were not aware that the Cray scientific
> library is compiled with "streams" turned off.  The default for our
> system is to have streams turned on for both compilation and
> execution, and thus PLAPACK was compiled and executed with streams
> turned on.
> 

I'd like to clarify Robert's comment that the Cray scientific library
is "compiled with streams turned off".  Because of a hardware issue
that affected CRAY T3E-600 (300 MHz) systems, the programming
environment made an effort to determine if an application were "stream
safe" by checking it for usage of Cray's proprietary "shmem" library.
If the application used the shmem library (or made some other use of
the E-registers), then the stream buffers were turned off by default;
however, some sites allowed users to enable the streams anyway by
setting the environment variable SCACHE_D_STREAMS to 1.

Robert is correct that the Cray Scientific Library, specifically the
BLACS, has been optimized using shmem.  On a CRAY T3E-600 system, the
loader will detect that a program calling ScaLAPACK is using shmem and
disable the streams.  The netlib version, using MPI BLACS, would have
the streams on by default because the MPI and PVM libraries have been
made "stream safe".  We believe that libsci is "stream safe" too, so it
was OK for him to re-enable the streams.

The stream coherence problem was corrected in the next generation, so
all executables on CRAY T3E-900 and CRAY T3E-1200 systems have the
streams on by default.

   --Ed

-------------------------------------------------------------------
Ed Anderson                          Cray Research/Silicon Graphics
Benchmarking Group                   655F Lone Oak Drive
email:  eca@cray.com                 Eagan, Minnesota  55121
Phone:  612-683-5238                 Fax:  612-683-5599

From dongarra@CS.UTK.EDU Tue Jan 12 08:48:34 1999
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU (CS.UTK.EDU [128.169.94.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id IAA07399; Tue, 12 Jan 1999 08:48:34 -0500
Received: from gate.ispras.ru (gate.ispras.ru [194.67.37.200]) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id IAA27923; Tue, 12 Jan 1999 08:53:34 -0500 (EST)
Received: from ispserv.ispras.ru (ispserv [194.67.37.72])
	by gate.ispras.ru (8.9.1a/8.9.1) with ESMTP id QAA17950
	for <blast-parallel@cs.utk.edu>; Tue, 12 Jan 1999 16:52:42 +0300 (GMT)
Received: from beta (beta [194.67.37.156])
	by ispserv.ispras.ru (8.8.8+Sun/8.8.8) with SMTP id PAA14555
	for <blast-parallel@cs.utk.edu>; Tue, 12 Jan 1999 15:59:47 +0200 (EET)
Sender: ka@ispras.ru
Message-ID: <369B618E.6DE8@ispras.ru>
Date: Tue, 12 Jan 1999 16:51:58 +0200
From: Alexey Kalinov <ka@ispras.ru>
X-Mailer: Mozilla 3.0 (X11; I; SunOS 5.5.1 sun4m)
MIME-Version: 1.0
To: blast-parallel@CS.UTK.EDU
Subject: (no subject)
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Content-Transfer-Encoding: 7bit

subscribe blast-comm

From dongarra@CS.UTK.EDU Fri Mar  3 05:41:16 2000
Return-Path: <dongarra@CS.UTK.EDU>
Received: from CS.UTK.EDU (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id FAA27435; Fri, 3 Mar 2000 05:41:15 -0500
Received: from CS.UTK.EDU (128.169.94.1 -> CS.UTK.EDU)
 by netlib2.cs.utk.edu (smtpshim v1.0); Fri, 3 Mar 2000 05:41:15 -0500
Received: from gull.prod.itd.earthlink.net (marvin@localhost) 
        by CS.UTK.EDU with ESMTP (cf v2.9s-UTK)
	id FAA09775; Fri, 3 Mar 2000 05:54:19 -0500 (EST)
From: <sprbk2000@hotmail.com>
Received: from gull.prod.itd.earthlink.net (207.217.121.85 -> gull.prod.itd.earthlink.net)
 by CS.UTK.EDU (smtpshim v1.0); Fri, 3 Mar 2000 05:54:19 -0500
Received: from oemcomputer (sdn-ar-001flflauP216.dialsprint.net [168.191.74.130])
	by gull.prod.itd.earthlink.net (8.9.3/8.9.3) with SMTP id CAA15339
	for blast-parallel@cs.utk.edu; Fri, 3 Mar 2000 02:54:16 -0800 (PST)
Date: Fri, 3 Mar 2000 02:54:16 -0800 (PST)
Message-Id: <200003031054.CAA15339@gull.prod.itd.earthlink.net>
To: <blast-parallel@CS.UTK.EDU>
Subject: >> Guaranteed -- Best SPRING BREAK Deals on the Planet!!!  ==>  
MIME-Version: 1.0
Content-Type: text/plain; charset=unknown-8bit
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by CS.UTK.EDU id FAA09777

DQoNCiAgDQogICAgICBfX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19fX19f
X19fX19fDQogICAgICCrpLulq6S7p6uku6WrpLunq6S7pauku6erpLulq6S7p6uku6WrpLun
q6S7paukDQogICAgICCvr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+v
r6+vr6+vDQogIFN1Ymo6ICBHdWFyYW50ZWVkIC0tIEJFU1QgU1BSSU5HIEJSRUFLIERlYWxz
IE9uIFRoZSBJbnRlcm5ldCEhIQ0KICAgICAgX19fX19fX19fX19fX19fX19fX19fX19fX19f
X19fX19fX19fX19fX19fX19fXw0KICAgICAgq6S7pauku6erpLulq6S7p6uku6WrpLunq6S7
pauku6erpLulq6S7p6uku6WrpA0KICAgICAgr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+vr6+v
r6+vr6+vr6+vr6+vr6+vr6+vrw0KDQoJPT4gRGlzY291bnQgSG90ZWwgUm9vbXMgLSBTQVZF
IFVwIHRvIDcwJSEhIQ0KCQ0KCT0+PiBPbmxpbmUgUmVzZXJ2YXRpb25zIGZvciBhbGwgdGhl
IEhPVCBTUFJJTkcgQlJFQUsgRGVzdGluYXRpb25zDQoNCgk9Pj4+IFJvb21zIGF2YWlsYWJs
ZSBmb3IgU09MRCBPVVQgREFURVMhIQ0KDQoJPT4+Pj4gT25saW5lIHJlc2VydmF0aW9ucyBm
b3IgYWxsIE1BSk9SIFNLSS9TTk9XQk9BUkQgRGVzdGluYXRpb25zDQoNCg0KDQpDbGljayB0
aGUgTGluayBmb3IgdGhlIEJFU1QgU1BSSU5HIEJSRUFLIERFQUxTIE9OIFRIRSBJTlRFUk5F
VDoNCg0KCWh0dHA6Ly93d3cuNFNwcmluZy1CcmVhay5jb20NCg0KSWYgTGluayBkb2VzIG5v
dCB3b3JrLCBqdXN0IGN1dCBhbmQgcGFzdGUgaW50byB5b3VyIGJyb3dzZXIhIQ0KDQoNCisr
KysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysr
Kw0KKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysr
KysrKysrDQpMb29raW5nIGZvciBzb21ldGhpbmcgYSBsaXR0bGUgQ09PTEVSIHRoaXMgU3By
aW5nIEJyZWFrPz8NCg0KTWF5YmUgc29tZSBBV0VTT01FIFNLSUlORywgU05PV0JPQVJESU5H
ICYgUEFSVFlJTkc/PyEhDQorKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysrKysr
KysrKysrKysrKysrKysrKysrKysrDQorKysrKysrKysrKysrKysrKysrKysrKysrKysrKysr
KysrKysrKysrKysrKysrKysrKysrKysrKysrDQoNCg0KQ2xpY2sgdGhlIExpbmsgYmVsb3cg
Zm9yIHRoZSBCRVNUIERFQUxTIEJZIFRIRSBTTE9QRVM6DQoNCglodHRwOi8vd3d3LjRTa2lS
ZXNvcnRzLmNvbQ0KDQpJZiBMaW5rIGRvZXMgbm90IHdvcmssIGp1c3QgY3V0ICYgcGFzdGUg
aW50byB5b3VyIGJyb3dzZXIhIQ0KDQoNCg0KDQoNCg0KDQoNCg0KDQoNCg0KDQoNCg0KDQoN
Cg0KDQoNCg0KDQoNCg0KDQoNCg0KDQoNCg0KDQoNCg0KdG8gcmVtb3ZlIHNlbmQgdG8geWFo
X21vbjFAeWFob28uY29tDQoNCioqKioqKioqKioqKioqKioqKioNCjU2MzIxDQoNCg==

From postmaster@cs.utk.edu Fri Oct  6 09:06:40 2000
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id JAA22584; Fri, 6 Oct 2000 09:06:39 -0400
Received: from cs.utk.edu (128.169.94.1 -> CS.UTK.EDU)
 by netlib2.cs.utk.edu (smtpshim v1.0); Fri, 6 Oct 2000 09:06:40 -0400
Received: from m1.cs.man.ac.uk (marvin@localhost) 
        by cs.utk.edu with ESMTP (cf v2.9s-UTK)
	id JAA22220; Fri, 6 Oct 2000 09:15:37 -0400 (EDT)
Received: from m1.cs.man.ac.uk (130.88.192.2 -> m1.cs.man.ac.uk)
 by cs.utk.edu (smtpshim v1.0); Fri, 6 Oct 2000 09:15:38 -0400
Received: from random by m1.cs.man.ac.uk (8.8.8/AL/MJK-2.0)
	id OAA04330; Fri, 6 Oct 2000 14:15:34 +0100 (BST)
Received: from bane by random with local (Exim 2.05 #2)
	id 13hXLU-0004qI-00; Fri, 6 Oct 2000 14:15:28 +0100
Subject: wanted: (parallel) sparse Mv BLAS for O2K
To: blast-comm@cs.utk.edu, blast-parallel@cs.utk.edu, blast-sparse@cs.utk.edu
Date: Fri, 6 Oct 2000 14:15:28 +0100 (BST)
From: Michael <michael.bane@man.ac.uk>
Reply-to: m.bane@cs.man.ac.uk
X-Mailer: ELM [version 2.4ME+ PL66 (25)]
MIME-Version: 1.0
Content-Type: text/plain; charset=US-ASCII
Content-Transfer-Encoding: 7bit
Message-Id: <E13hXLU-0004qI-00@random>
Sender: Michael Bane <bane@cs.man.ac.uk>

Does a (parallel) sparse Mv "BLAS" yet exist for the SGI Origin2000?

ta in adv
- --- ----- ------- ----- --- -
Michael Bane
Centre for Novel Computing
University of Manchester
Tel: 0161 275 6134
http://www.cs.man.ac.uk/~bane

UK OpenMP website:
http://www.mcc.ac.uk/hpc/OpenMP
- --- ----- ------- ----- --- -

From postmaster@cs.utk.edu Sun Mar  4 01:34:59 2001
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id BAA19641; Sun, 4 Mar 2001 01:34:59 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sun, 4 Mar 2001 01:34:59 -0500
Received: from pop509-ec.mail.com (marvin@localhost) 
        by cs.utk.edu with ESMTP (cf v2.9s-UTK)
	id BAA13395; Sun, 4 Mar 2001 01:34:58 -0500 (EST)
Received: from pop509-ec.mail.com (165.251.32.56 -> pop509-ec.mail.com)
 by cs.utk.edu (smtpshim v1.0); Sun, 4 Mar 2001 01:34:59 -0500
Received: from data (unknown [62.98.152.178])
	by pop509-ec.mail.com (Postfix) with SMTP
	id 2800A154C62; Sun,  4 Mar 2001 01:29:23 -0500 (EST)
From: "Nancy Howard" <Nancy@email.com>
Subject: RE: about britney spears
Message-Id: <20010304062923.2800A154C62@pop509-ec.mail.com>
Date: Sun,  4 Mar 2001 01:29:23 -0500 (EST)
Apparently-To: <blast-funct-archive@netlib2.cs.utk.edu>
Apparently-To: <blast-lb-archive@netlib2.cs.utk.edu>
Apparently-To: <blast-lite-archive@netlib2.cs.utk.edu>
Apparently-To: <blast-parallel-archive@netlib2.cs.utk.edu>
Apparently-To: <blast-sparse-archive@netlib2.cs.utk.edu>

Hello, I thinl personally that britney spears did some hard movie in her past 
I know this for sure.. just check by yourself this and let me know,.... You will see
I don't say bullshits  check out at http://www.sex4many.com


From postmaster@cs.utk.edu Wed Mar 14 23:23:41 2001
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (localhost.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id XAA18458; Wed, 14 Mar 2001 23:23:40 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Wed, 14 Mar 2001 23:23:40 -0500
Received: from project (marvin@localhost) 
        by cs.utk.edu with ESMTP (cf v2.9s-UTK)
	id XAA08211; Wed, 14 Mar 2001 23:23:41 -0500 (EST)
From: <biotechstox89@hotmail.com>
Received: from project (211.104.88.203)
 by cs.utk.edu (smtpshim v1.0); Wed, 14 Mar 2001 23:23:41 -0500
Received: by project id GAA507592; Thu, 15 Mar 2001 06:17:29 +0900 (KST)
To: blast-parallel@cs.utk.edu
Subject: FREE Biotech Stock Info!    156
Date: Wed, 14 Mar 2001 16:17:10
Message-Id: <345.789452.450103@hotmail.com>
Reply-To: biotechinfo2007@yahoo.com
Mime-Version: 1.0
Content-Type: text/html; charset="us-ascii"


<html>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Do you want to capitalize on the Biotech Revolution</title>
</head>

<body>

<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto" align="center"><img border="0" src="http://www.geocities.com/mailtestbox2000/Kiloh_logo.gif" width="204" height="170"></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-family:Arial">Do
you want to capitalize on the Biotech Revolution? Would you like to add
groundbreaking biotech, pharmaceutical and medical device companies to your
portfolio mix? Does hearing about exciting IPO and private placement offerings
from life sciences companies interest you?</span></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-family:Arial">The
exclusive <b>Ruddy-Carlisle Biotech Infoline</b> service keeps you abreast of
investment opportunities in the life sciences space. Just sign up for it once
and get important information instantly delivered to study at your leisure. Our
service is <b><u>100% FREE</u></b>! <b><span style="color:blue"><a href="mailto:biotechsubscribe@yahoo.com">Sign
up!</a></span></b></span></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><b><i><span style="font-size:11.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;color:#003366">Ruddy-Carlisle
Biotech Infoline:</span></i></b></p>
<ul type="disc">
  <li class="MsoNormal" style="color:#003366;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;mso-list:l0 level1 lfo1;tab-stops:list .5in"><b><i><span style="font-size:11.0pt;mso-bidi-font-size:12.0pt;font-family:Arial">Instantly
    delivers key life sciences investment information directly to you! </span></i></b><o:p>
    </o:p>
  </li>
  <li class="MsoNormal" style="color:#003366;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;mso-list:l0 level1 lfo1;tab-stops:list .5in"><b><i><span style="font-size:11.0pt;mso-bidi-font-size:12.0pt;font-family:Arial">Learn
    about biotech, pharmaceutical &amp; medical device investment opportunities
    before others! </span></i></b><o:p>
    </o:p>
  </li>
  <li class="MsoNormal" style="color:#003366;mso-margin-top-alt:auto;mso-margin-bottom-alt:
     auto;mso-list:l0 level1 lfo1;tab-stops:list .5in"><b><i><span style="font-size:11.0pt;mso-bidi-font-size:12.0pt;font-family:Arial">Includes
    IPO &amp; private placement information! </span></i></b><o:p>
    </o:p>
  </li>
  <li class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto;
     mso-list:l0 level1 lfo1;tab-stops:list .5in"><b><i><span style="font-size:
     11.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;color:#003366">100%
    FREE!</span></i></b></li>
</ul>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><span style="font-family:Arial">For
the entire last decade there were only three profitable biotech companies. At
the end of this year, ten are projected. At the end of 2003, <u>over forty</u>
are projected! The genomic promise is about to be delivered and investors know
it. The <b>Ruddy-Carlisle Biotech Infoline </b>provides you with critical,
decision-making, information that aids the chance of investment success in this
lucrative space. <b><span style="color:blue"><a href="mailto:biotechsubscribe@yahoo.com">Sign
up!</a></span></b></span></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto"><b><span style="font-family:Arial">Please
Note-</span></b><span style="font-family:Arial"> Your information will only be
shared with companies that are in the life sciences space <u>and</u> pass our
rigorous inspection. Only the best opportunities will come to you.
Ruddy-Carlisle respects your privacy. <b><span style="color:blue"><a href="mailto:biotechsubscribe@yahoo.com">Sign
up!</a></span></b></span></p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">&nbsp;</p>
<p class="MsoNormal" style="mso-margin-top-alt:auto;mso-margin-bottom-alt:auto">&nbsp;</p>
<b><span style="font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;
mso-fareast-font-family:&quot;Times New Roman&quot;;mso-ansi-language:EN-US;mso-fareast-language:
EN-US;mso-bidi-language:AR-SA">
</p>
</p>List Removal Instructions</span></b><span style="font-size:10.0pt;mso-bidi-font-size:12.0pt;font-family:Arial;mso-fareast-font-family:
&quot;Times New Roman&quot;;mso-ansi-language:EN-US;mso-fareast-language:EN-US;
mso-bidi-language:AR-SA">- Simply click here: <b><span style="color:blue"><a href="mailto:remobiotech@yahoo.com">remove</a></span></b>
to be instantly and permanently removed from our list. Send the blank email to
the address specified. Please do not try to reply to this message.</span>

</body>

</html>

From postmaster@cs.utk.edu Thu Apr 12 01:16:11 2001
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (localhost.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id BAA26309; Thu, 12 Apr 2001 01:16:11 -0400
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Thu, 12 Apr 2001 01:16:11 -0400
Received: from yahoo.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id BAA19021; Thu, 12 Apr 2001 01:16:08 -0400 (EDT)
Received: from yahoo.com (216.112.165.60 -> ts006d48.scr-pa.concentric.net)
 by cs.utk.edu (smtpshim v1.0); Thu, 12 Apr 2001 01:16:09 -0400
From: <christmaseveryday2001@yahoo.com>
To: blast-parallel@cs.utk.edu
Subject: 68. (ADV) FREE GIFT LOCATOR!!!
Date: Thu, 12 Apr 2001 01:14:43
Message-Id: <399.814166.704377@yahoo.com>
Reply-To: christmaseveryday2001@yahoo.com
Mime-Version: 1.0
Content-Type: text/html; charset="us-ascii"


<html>

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>What</title>
</head>

<body>

<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">What?
<b>Christmas Shopping</b>!!!</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma"><i>The
two reasons to start thinking about Christmas gifts so soon are</i>:</font></p>
<ul>
  <li>
    <p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><b><font size="3" face="Tahoma">Great
    Deals</font></b></li>
  <li>
    <p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><b><font size="3" face="Tahoma">Original
    Gifts</font></b></li>
</ul>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">That's
right ladies (ok...and gentlemen), <b>the best deals</b> come to the early
shopper. And if you are going to find <b>that unique gift</b> for a special
person, you can't start looking to soon. I know...I am not telling you anything
that you don't already know. I'm sure that many of you already have those after
Christmas deals packed away for next year.</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma"><i>That's
exactly the point</i>...</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">Wouldn't
It be great to get occasional email notifications about <b>huge Christmas
bargains</b>, or <b>unique handmade gifts </b>that you can't find in the mall.</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma"><i>I
love Christmas</i>...</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">Christmas
is a wonderful time, especially when you have found <b>that perfect gift</b> for
your loved ones. Sometimes it's difficult shopping for so many family members
and friends.</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">Throughout
the year I come across both <b>individual craftspeople</b> and companies that
are trying to reach customers. I have seen some wonderful products, and sadly
some <b>truly unique gifts</b> that have never made it to market. So this year I
am hoping to spread the word, make some friends and become a part of your
holiday celebration.</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">What
you get...</font></p>
<ul>
  <li>
    <p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma"><b>Free
    </b>email notification</font></li>
  <li>
    <p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma"><b>Free</b>
    gift locating service</font></li>
  <li>
    <p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma"><b>Free</b>
    bi-monthly newsletter</font></li>
</ul>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">Just
<b><a href="mailto:beaconsubscribe@yahoo.com">click here</a></b> and put &quot;<b>yes</b>&quot; <b>in the
subject line</b> to start your service now! You will receive a confirmation
email within 24 - 48 hrs with detailed information on how to use this service.</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma"><b><u>Please
Note</u></b>: </font><font face="Tahoma" size="2"><b>Only use these links to
subscribe or unsubscribe</b>. <b>DO NOT</b> use the Reply function of your email
program. This will help me more efficiently handle your request.</font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><font size="3" face="Tahoma">To
unsubscribe <a href="mailto:beaconlistremo@yahoo.com">click here</a>. </font><font face="Tahoma" size="2"><b>You
do not need to put anything in the subject line to unsubscribe.</b></font></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3"><b><font face="Tahoma" size="2">By
subscribing to this service you agree to receive a confirmation email with
detailed instruction on how to use this service, a bi-monthly newsletter, and
periodic email notifications about available products. <u>You will always have
the option to easily remove yourself from any future mailing</u>. You will never
be asked to pay anything for any of the above mentioned services.</font></b></p>
<p style="line-height: 100%; word-spacing: 0; margin-top: -3; margin-bottom: -3">&nbsp;</p>

</body>

</html>

From memorytogo@memorytogo4.com Wed Oct 17 18:20:55 2001
Return-Path: <memorytogo@memorytogo4.com>
Received: from cs.utk.edu ([127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id SAA25302; Wed, 17 Oct 2001 18:20:55 -0400
From: <memorytogo@memorytogo4.com>
Received: from cs.utk.edu (160.36.56.56 -> cs.cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Wed, 17 Oct 2001 18:20:55 -0400
Received: from pltn13.pbi.net (marvin@localhost) 
        by cs.utk.edu with ESMTP (cf v2.9s-UTK)
	id SAA07862; Wed, 17 Oct 2001 18:20:56 -0400 (EDT)
Received: from pltn13.pbi.net (64.164.98.8 -> mta7.pltn13.pbi.net)
 by cs.utk.edu (smtpshim v1.0); Wed, 17 Oct 2001 18:20:56 -0400
Received: from sales@mail.voyager.com ([216.100.177.30])
 by mta7.pltn13.pbi.net (iPlanet Messaging Server 5.1 (built May  7 2001))
 with SMTP id <0GLD004M0FCGUF@mta7.pltn13.pbi.net>; Wed,
 17 Oct 2001 15:20:51 -0700 (PDT)
Date: Wed, 17 Oct 2001 15:20:48 -0700 (PDT)
Date-warning: Date header was inserted by mta7.pltn13.pbi.net
Subject: **SPECIAL**COMPUTER MEMORY
Reply-to: memorytogo@memorytogo4.com
Message-id: <0GLD004SFFEAUF@mta7.pltn13.pbi.net>
MIME-version: 1.0
Content-type: text/html; charset=us-ascii
Content-transfer-encoding: 7BIT


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!-- saved from url=(0039)http://209.132.208.23/news/news1001.htm -->
<HTML><HEAD><TITLE>Memory to Go - Specials - October</TITLE>
<META http-equiv=Content-Type content=text/html;charset=iso-8859-1>
<STYLE>A {
	TEXT-DECORATION: none
}
</STYLE>

<META content="MSHTML 5.50.4134.600" name=GENERATOR></HEAD>
<BODY text=#000000 link=#000080 bgColor=#ffffff>
<TABLE cellSpacing=0 cellPadding=0 width=599 align=center border=0>
  <TBODY>
  <TR>
    <TD><IMG height=34 alt=TowerRecords.com 
      src="Memory to Go - Specials - October_files/header_logo.gif" width=160 
      border=0 NOSEND="1"></A><BR></TD>
    <TD><IMG height=34 alt="July New Releases" 
      src="Memory to Go - Specials - October_files/header_newreleases.gif" 
      width=220 border=0 NOSEND="1"></A><BR></TD>
    <TD><IMG height=34 
      src="Memory to Go - Specials - October_files/header_pixel.gif" width=146 
      NOSEND="1"><BR></TD>
    <TD><IMG height=34 alt="New Music" 
      src="Memory to Go - Specials - October_files/july_header.gif" width=89 
      border=0 NOSEND="1"><BR></TD></TR></TBODY></TABLE>
<TABLE borderColor=black cellSpacing=0 cellPadding=0 width=603 align=center 
border=1>
  <TBODY>
  <TR>
    <TD bgColor=#020299 colSpan=2><FONT face="verdana, arial" color=white 
      size=2>
      <BLOCKQUOTE><BR>Dear Customer, <BR><BR>Memory to Go carries memory for 
        all systems. We offer a <STRONG>huge</STRONG> selection of memory for 
        both PC and MAC computers, printers, Cams and other devices. Just check 
        out a few of the outstanding prices below on memory and upgrade 
        processors for the MAC. Can't find something you're looking for? Call us 
        <STRONG>TOLL FREE</STRONG> at (877) 308-9800 for a fast, free quote. 
      </BLOCKQUOTE></FONT></TD></TR>
  <TR>
    <TD vAlign=top bgColor=#cccccc><IMG height=110 alt="July Hot Deals" 
      src="Memory to Go - Specials - October_files/navbox_july.gif" width=169 
      border=0 NOSEND="1"></A> <FONT face="verdana, arial" color=#020299 
      size=3><BR><B>
      <DIV align=center>MEMORY</DIV></B></FONT><LEFT><FONT face="verdana, arial" 
      size=2><BR><A 
      href="http://www.memorytogo.com/?cmd=prod&amp;manu=apple&amp;media=laptop&amp;prod=CAP169"><STRONG>
      <DIV align=center>PB TITANIUM<BR>iBOOK </DIV></STRONG>
      <DIV align=center>512MB-$150<BR>256MB-$60<BR>128MB-$29</DIV></A><BR><A 
      href="http://www.memorytogo.com/?cmd=prod&amp;manu=apple&amp;media=desktop&amp;prod=CAP168">
      <DIV align=center><STRONG>NEW PM G4 
      </STRONG><BR>512MB-$115<BR>256MB-$58</DIV></A><BR><A 
      href="http://www.memorytogo.com/?cmd=search&amp;type=plain&amp;key=kingston">
      <DIV align=center><STRONG>KINGSTON 
      PC133</STRONG><BR>256MB-$80<BR>128MB-$40</DIV></A><BR><A 
      href="http://www.memorytogo.com/?cmd=prod&amp;manu=dell&amp;media=desktop&amp;prod=CDEI3800">
      <DIV align=center><STRONG>DELL INSPIRON 3800,7500,4000, 5000,5000E,8000 
      </STRONG><BR>32MB-$50<BR>16MB-$26</DIV></A><BR><A 
      href="http://www.memorytogo.com/?cmd=prod&amp;manu=compaq&amp;media=laptop&amp;prod=CCOMPAM300">
      <DIV align=center><STRONG>Compaq Armada M300,E500,M700<BR>E700 notebook 
      </STRONG><BR>128MB-$35<BR>256MB-$108</DIV></A><BR><A 
      href="http://www.memorytogo.com/?cmd=prod&amp;manu=apple&amp;media=laptop&amp;prod=CAP158">
      <DIV align=center><STRONG>POWERBOOK G3<BR>WALL 
      ST.</STRONG><BR>128MB-$29<BR>256MB-$54</DIV></A><BR><A 
      href="http://www.memorytogo.com/?cmd=prod&amp;manu=mac.pc.usb.products&amp;media=hube.host.adapters&amp;prod=USBM800.4Port">
      <DIV align=center><STRONG>4 PORT USB 
      HUB</STRONG><BR>$18<BR></DIV></A><BR><A < TD></A></FONT>
    <TD vAlign=top align=middle><IMG height=62 alt=Upgrades 
      src="Memory to Go - Specials - October_files/upgrades.gif" width=419 
      border=0 NOSEND="1"> <FONT face="verdana, arial" size=2><STRONG><A 
      href="http://www.memorytogo.com/?cmd=manu&amp;manu=rambus">Rambus&nbsp;&nbsp;&nbsp;</A> 
      <A 
      href="http://www.memorytogo.com/?cmd=manu&amp;manu=pc133">PC133&nbsp;&nbsp;&nbsp;</A> 
      <A 
      href="http://www.memorytogo.com/?cmd=manu&amp;manu=pc100">PC100&nbsp;&nbsp;&nbsp;</A> 
      <A 
      href="http://www.memorytogo.com/?cmd=manu&amp;manu=flash.ram">Flash&nbsp;&nbsp;&nbsp;</A> 
      <A 
      href="http://www.memorytogo.com/?cmd=manu&amp;manu=simm">SIMM&nbsp;&nbsp;&nbsp;</A> 
      <A 
      href="http://www.memorytogo.com/?cmd=manu&amp;manu=dimm">Dimm</A></B></FONT> 

      <TABLE cellSpacing=5 cellPadding=5 width="100%">
        <TBODY>
        <TR>
          <TD colSpan=2><IMG alt=Cresendo 
            src="Memory to Go - Specials - October_files/top_titles.gif"><BR></TD></TR>
        <TR>
          <TD style="WIDTH: 317px" vAlign=top width=317>
            <P><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors"><IMG 
            height=80 alt="Cresendo 7200" hspace=5 
            src="Memory to Go - Specials - October_files/cresone.jpg" width=80 
            align=left border=0 NOSEND="1"></A> <BR></P>
            <P><FONT face="verdana, arial" size=1><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors">Cresendo/G3 
            400MHz PM6100 To 8100<BR><STRONG>$290</STRONG> </A></FONT></P></TD>
          <TD vAlign=top width="50%">
            <P><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors"><IMG 
            height=80 alt="Cresendo L2" hspace=5 
            src="Memory to Go - Specials - October_files/crestwo.jpg" width=80 
            align=left border=0 NOSEND="1"> </A></P>
            <P><FONT face="verdana, arial" size=1><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors">Cresendo/G3 
            350MHz PM7300 TO 9600<BR><STRONG>$174</STRONG> </A></FONT></P></TD></TR>
        <TR>
          <TD style="WIDTH: 317px" vAlign=top><FONT face="verdana, arial" 
            size=1>Boost your computer's performance up to thirteen times as 
            fast as the original system! The Crescendo 7200 G3 incorporates a G3 
            PowerPC processor and ultra high-speed Level 2 backside cache to 
            achieve truly modern performance levels.</FONT><BR></TD>
          <TD vAlign=top><FONT face="verdana, arial" size=1>Gain G3 
            performance for your "upgrade-challenged" Power Macintosh. The 
            Crescendo utilizes a G4 PowerPC processor that can take advantage of 
            AltiVec-enhanced applications for even more impressive performance 
            gains.</FONT><BR></TD>
        <TR>
          <TD style="WIDTH: 317px" vAlign=top width=317>
            <P><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors"><IMG 
            height=80 alt="Cresendo PBG3" hspace=5 
            src="Memory to Go - Specials - October_files/crestre.jpg" width=80 
            align=left border=0 NOSEND="1"> </A></P>
            <P><FONT face="verdana, arial" size=1><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors">Cresendo/PBG3 
            333MHz PB1400<BR><STRONG>$299</STRONG> </A></FONT></P></TD>
          <TD vAlign=top width="50%">
            <P><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors"><IMG 
            height=80 alt=Encore hspace=5 
            src="Memory to Go - Specials - October_files/cresfor.jpg" width=80 
            align=left border=0 NOSEND="1"> </A></P>
            <P><FONT face="verdana, arial" size=1><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=processors">Encore/ZIF 
            G3 500MHz PMG3<BR><STRONG>$349</STRONG></A></FONT></P></TD></TR>
        <TR>
          <TD style="WIDTH: 317px" vAlign=top><FONT face="verdana, arial" 
            size=1>Boost your computer's performance up to thirteen times as 
            fast as the original system! The Crescendo 7200 G3 incorporates a G3 
            PowerPC processor and ultra high-speed Level 2 backside cache to 
            achieve truly modern performance levels.</FONT><BR></TD>
          <TD vAlign=top><FONT face="verdana, arial" size=1>Gain G3 
            performance for your "upgrade-challenged" Power Macintosh. The 
            Crescendo utilizes a G4 PowerPC processor that can take advantage of 
            AltiVec-enhanced applications for even more impressive performance 
            gains.</FONT><BR></TD>
        <TR>
          <TD style="WIDTH: 317px" vAlign=top width=317>
            <P><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=flash.ram"><IMG 
            height=80 alt="Flash Cards" hspace=5 
            src="Memory to Go - Specials - October_files/flash.jpg" width=80 
            align=left border=0 NOSEND="1"></A></P>
            <P><FONT face="verdana, arial" size=1><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=flash.ram">Flash 
            Cards - <BR>as low as <STRONG>$50!</STRONG> </A></FONT></P></TD>
          <TD vAlign=top width="50%">
            <P><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=rambus"><IMG 
            height=80 alt=Rambus hspace=5 
            src="Memory to Go - Specials - October_files/rambus.jpg" width=80 
            align=left border=0 NOSEND="1"></A></P>
            <P><FONT face="verdana, arial" size=1><A 
            href="http://www.memorytogo.com/?cmd=manu&amp;manu=rambus">Rambus 
            Memory<BR>as low as <STRONG>$36!</STRONG> </A></FONT></P></TD></TR>
        <TR>
          <TD style="WIDTH: 317px" vAlign=top><FONT face="verdana, arial" 
            size=1>Complies with CompactFlashTM specification 1.4. Compatible 
            with PC Card ATA standard. NAND type or AND type flash memory. 
            Minimum 1,000,000 erase cycles. Minimum 10,000 Insertions. Low power 
            consumption and automatic power saving.<BR>
            <HR>
            <STRONG>
            <DIV align=center>Memory to Go</STRONG><BR>(310) 385-7373<BR>Toll 
            Free: (877) 308-9800<BR>Fax: (310) 385-9111 <BR><BR></DIV></FONT>
          <TD vAlign=top><FONT face="verdana, arial" size=1>Cutting-edge 
            technology. Largest bandwith For 820, 840 &amp; 850 Chipset (Pentium 
            4) Lifetime Warranty. Enables data rates of 800 Mbits per second 
            (two bits transferred per each clock cycle, at the leading and the 
            trailing edge of the clock.) Aka: RIMM or RDRAM. </FONT><BR>
            <HR>
            <STRONG></STRONG></B><FONT face="verdana, arial" size=1>Memory to Go 
            respects your right to privacy. This email was sent to you because 
            you are a regular MTG customer. To unsubscribe to this service, <A 
            href="mailto:sales@memorytogo.com"><B>click here</B></A> and enter 
            Unsubscribe as the subject of your 
          email.<STRONG></STRONG></FONT></TD></TD></TD></TR></TBODY></TABLE></STRONG></TD></TR></TBODY></TABLE><BR><BR></FONT></BODY></HTML>

From postmaster@cs.utk.edu Mon Jan 14 16:25:53 2002
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id QAA11210; Mon, 14 Jan 2002 16:25:52 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 14 Jan 2002 16:25:52 -0500
Received: from boy (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id QAA22817; Mon, 14 Jan 2002 16:25:51 -0500 (EST)
Message-Id: <200201142125.QAA22817@cs.utk.edu>
Received: from boy (211.202.71.98)
 by cs.utk.edu (smtpshim v1.0); Mon, 14 Jan 2002 16:25:52 -0500
From: =?ks_c_5601-1987?B?vsbAzLX7tfu1+w==?= <iwebmaster@iwww.net>
To: blast-parallel@cs.utk.edu
Subject: =?ks_c_5601-1987?B?W8irurhdILPXxrzB8MDMILi4tecgsMu79r+jwfggvsbAzLX7tfu1+8DUtM+02S4=?=
Date: Tue, 15 Jan 2002 06:24:21 +0900
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="----=_NextPart_000_0067_01C0F24A.93A21C00"
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000

This is a multi-part message in MIME format.

------=_NextPart_000_0067_01C0F24A.93A21C00
Content-Type: text/plain;
	charset="ks_c_5601-1987"
Content-Transfer-Encoding: base64

sMu79r+jwfggvsbAzLX7tfu1+yAgICAgICAgICAgICAgICAgICAgICAgIMDOxc2z3b+htMIg
uLnAuiDBpLq4v80gsdcgwaS6uLimIMOjvsbB1rTCILDLu/a/o8H4wMwgwNa9wLTPtNkuDQog
IMfPwfa4uCCwy7v2v6PB+LXpwMwgs8q5q7OqILi5wLogwaS6uLimIMGmsPjH2CDB1rTCILDh
sPogv8DI97fBIMGkuri4piDDo7TCtaUguLnAuiCz67fCsPogvcOwo8C7DQogICDH47rxx8+0
wiCw4bD6uKYgw8q3ocfPsO0gwNa9wLTPtNkuDQoNCiAgICAgIMDMwaa0wiC+8sC7ILz2IL74
tMIguLnAuiC+58DHILDLu/aw4bD6uri02bTCIL3Ft9q8uiDA1rTCIMGkuri4piC/5LG4x8+0
wiC9w7TrsKEgtce++r3AtM+02S4NCiAgIMDOxc2z3b+hILvqwOfH2CDA1rTCILvnwMzGriDB
37+htMIgv+y4rrChILLAIMfKv+TH0SDBpLq4tenAuyC047DtIMDWtMIgu+fAzMausKEguLnA
zCDA1rTCtaUsDQogICDAzCC758DMxq4gtenAuyCxuLrQx8+46SDG98W7LLq4xbssx+O66iC7
58DMxq6287DtIMfVtM+02S4NCg0KICAgICAgvsbAzLX7tfu1+7TCIMDMt7Egu+fAzMauuKYg
w6O+xsHWtMIgxKvF17DtuK4gudcgxbC/9rXlILDLu/a/o8H4wNS0z7TZLg0KICAgsKIgxKvF
17DtuK4gurC3ziC9xbfavLogwNa0wiC+9ryxtcggu+fAzMauuLggs9fGvMHwwMcgvue9ycC4
t8617rfPsPy4rsfPtMIgsMu79r+jwfjAzLjnDQogILHNx8+ysryttbUgxKvF17DtuK4gtOO0
58DasKEgtce9xyC89iDA1r3AtM+02S4NCg0KICDEq8XXsO24riC047TnwMwgtce9w7jpIKLf
vsbAzL+jwKXAxyDB1r3EIDHB1rimILmru/PAuLfOILXluK645yBwb3AzIGUtbWFpbCCw6MGk
wLsgteW4s7TPtNkuDQogICAoIr+5IiBhYmNAaXd3dy5uZXQiKQ0KICAgtsfH0Syx1yDEq8XX
sO24rrimILD8uK7H0iC89iDA1rTCILHHx9Gw+iDH2LTnIMSrxdew7biuv6EgtOO058DaIL7G
wMy18LimILXut8/H1bTPtNkuDQogICAote63z73Fw7vAuyDHz73FyMQgtOO057D8uK7A2rfO
IGxvZ2luIMfPvcO46SDEq8XXsO24rrimIMH3waIgsPy4rsfPvccgvPYgwNa9wLTPtNkuKQ0K
ICAgyLi/+LChwNTAuyDHz73DsO0gyLi/+MDMILXHvcO46SCi3yC+xsDMv6PApcDHIMHWvcQg
McHWuKYguau788C4t84gteW4s7TPtNkuDQogICDAzsXNs93AuiCz18a8wfDAzCDB1sDOwMyw
7SC+xsDMtfu1+7X7tMIgs9fGvMHwwMcgsM3AzLHiILanua7A1LTPtNkhIA0KDQogICAgaHR0
cDovL2l3d3cubmV0ICi+xsDMtfu1+7X7KbfOILnmua7H2CDB1ry8v+QgICAgIL7GwMy1+7X7
tfvAxyDAzLPkwLogv+y4riCz18a8wfDAzCCwrrDtwNa0wiDAr8DNx9EgwaS6uLimILytt84g
sPjAr8fPsO0gu/W3zr/uILPXxrzB8LmuyK24pg0KICAgw6LD4sfPtMKwzcDUtM+02S4gsc3H
z7KyvK21tSC+xsDMtfu1+7X7wMcgx9EgsKHBt8DMILXHvu7B1r3DseYgus7FubXluLO0z7TZ
Lg0KDQogILTDILDHsK3Hz73DsO0gx+C6ucfPvLy/5H5+frCou+fH1bTPtNkuDQoNCiAgICAg
ICAgICAgICAgICAgIDHAzyDG8rHVILnmua4gICA3NzQsNTAwIGhpdCgyMDAyLjAxLjA3KSAg
ICAgICAgICAgILPXxrzB8CC047TnIMSrxdew7biuICAgNzQ1ILCzICAgICAgIA0KICDB98Gi
ILnmua7Hz7zFvK0gxvKwocfYIMHWvcq9w7/AISA9PT09PT0+aHR0cDovL2l3d3cubmV0wK/A
zcfRILvnwMzGrrbzsO0gxvKwobXHvcO46SANCiAgwdbAp7rQtem/obDUIL7Lt8HB1r3Dsea5
2bb4tM+02S4gKCC+xsDMtfu1+7X7ID0gaXd3dyApDQoNCiAgICAgICAgICANCiAgsc3Hz7Ky
ILrSxu3AuyCzosPEILXlt8i02bjpIL/rvK24piC52bb4tM+02S4NCiAgsc3Hz8DHILjewM/A
uiDAzsXNs92/obytIMClvK3HzsHfIMPrtebHz7+0wLi45yCxzcfPwMcgvu62sMfRIMGkuri1
tSCwrrDtwNbB9iC+yr3AtM+02S4NCg0KICC02cC9us7FzbTCIMDOxc2z3SzBpLq4xeu9xSy5
2cDMt6+9urnpvcUgte4gwK/AzcfRIMGkuri4uMC7ILq4s7u15biztM+02S4gDQogIL7GwMy1
+7X7tfvAxyCwocG3wMwgtce9w7jpIMD8w7ywocG3ILjewM/AuyDF68fPv6kgwK/AzcfRIMGk
uri4piC53r7Guri9xyC89iDA1r3AtM+02S4NCiAgsPjB9rvnx9fAuyDC/LDtx8+9w7jpIL7G
wMy1+7X7tfsgs7u6zrvnwaTAuyC+xr3HILz2IMDWvcC0z7TZLiC52bfOsKG8rSC6uLHiDQog
ILPXxrzB8MDHILDtsN/AuyC89rfFx8+0wiCw+LCzsNS9w8bHwLsgv+6/tcHfwNS0z7TZLrnZ
t86wobytILq4seINCiAgILHXt6G1tSC89r3FwLsgv/jEoSC+ysC4vccgsOa/7CC89r3FsMW6
zrimIMWsuK/Hz73KvcO/wCG89r3FsMW6zg0KDQogICAgICAgICAg

------=_NextPart_000_0067_01C0F24A.93A21C00
Content-Type: text/html;
	charset="ks_c_5601-1987"
Content-Transfer-Encoding: base64

DQo8aHRtbD4NCjxoZWFkPg0KPHRpdGxlPrDLu/a/o8H4IL7GwMy1+7X7tfs8L3RpdGxlPg0K
PHgtbWV0YSBodHRwLWVxdWl2PSJDb250ZW50LVR5cGUiIGNvbnRlbnQ9InRleHQvaHRtbDsg
Y2hhcnNldD1ldWMta3IiPg0KPC9oZWFkPg0KPHN0eWxlIHR5cGU9InRleHQvY3NzIj4NCjwh
LS0NCkE6bGluaywgQTphY3RpdmUsIEE6dmlzaXRlZCB7DQpmb250LXNpemU6IDlwdDsNCmNv
bG9yOiByZWQ7DQp0ZXh0LWRlY29yYXRpb246IG5vbmU7DQp9DQpBOmhvdmVyIHsgDQpmb250
LXNpemU6IDlwdDsNCmNvbG9yOjAwMDAwMDsNCnRleHQtZGVjb3JhdGlvbjogdW5kZXJsaW5l
Ow0KfQ0KVEQgew0KZm9udC1mYW1pbHk6ILG8uLI7DQpmb250LXNpemU6IDlwdDsNCmNvbG9y
OiAwMDAwMDA7DQp9DQotLT4NCjwvc3R5bGU+DQo8dGFibGUgd2lkdGg9MTAwJSAgYmdjb2xv
cj0iI0I0QjRCNCIgdGV4dD0iIzAwMDAwMCI+PHRkIHZhbGlnbj10b3A+DQo8dGFibGUgd2lk
dGg9IjYxOSIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIGFs
aWduPSJjZW50ZXIiIA0KYmFja2dyb3VuZD0iaHR0cDovL2l3d3cuY28ua3IvaXd3d19pbmZv
L2JhY2suZ2lmIj4NCiAgPHRyPiANCiAgICA8dGQgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0
b3AiIHdpZHRoPSIxMSI+PGltZyBzcmM9Imh0dHA6Ly9pd3d3LmNvLmtyL2l3d3dfaW5mby9s
ZWZ0LmdpZiIgd2lkdGg9IjExIiANCmhlaWdodD0iMjA5Ij48L3RkPg0KICAgIDx0ZCBhbGln
bj0iY2VudGVyIiB2YWxpZ249InRvcCIgd2lkdGg9IjU4NiI+IA0KICAgICAgPHRhYmxlIHdp
ZHRoPSIxMDAlIiBib3JkZXI9IjAiIGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIg
DQpiYWNrZ3JvdW5kPSJodHRwOi8vaXd3dy5jby5rci9pd3d3X2luZm8vY19iYWNrLmdpZiI+
DQogICAgICAgIDx0cj4gDQogICAgICAgICAgPHRkPjxhIGhyZWY9Imh0dHA6Ly9pd3d3Lm5l
dCIgdGFyZ2V0PSJfYmxhbmsiPjxpbWcgDQpzcmM9Imh0dHA6Ly9pd3d3LmNvLmtyL2l3d3df
aW5mby9sb2dvLmdpZiIgd2lkdGg9IjU4NiIgaGVpZ2h0PSI0MCIgYm9yZGVyPSIwIj48L2E+
PC90ZD4NCiAgICAgICAgPC90cj4NCiAgICAgICAgPHRyPiANCiAgICAgICAgICA8dGQ+PGlt
ZyBzcmM9Imh0dHA6Ly9pd3d3LmNvLmtyL2l3d3dfaW5mby9sb2dvX3R4dC5naWYiIHdpZHRo
PSI1ODYiIGhlaWdodD0iMTAwIj48L3RkPg0KICAgICAgICA8L3RyPg0KICAgICAgICA8dHI+
IA0KICAgICAgICAgIDx0ZD4gDQogICAgICAgICAgICA8dGFibGUgd2lkdGg9IjEwMCUiIGNl
bGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgYm9yZGVyPSIxIiBib3JkZXJjb2xvcj0i
IzYxOTRERCIgYm9yZGVyY29sb3JkYXJrPSIjRkZGRkZGIj4NCiAgICAgICAgICAgICAgPHRy
PiANCiAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjEwMCUiIGFsaWduPSJjZW50ZXIiIGhl
aWdodD0iNjkiPiANCiAgICAgICAgICAgICAgICAgIDx0YWJsZSBiZ2NvbG9yPSIjOThCMUQx
IiB3aWR0aD0iMTAwJSIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9
IjAiPg0KICAgICAgICAgICAgICAgICAgICA8dHI+IA0KICAgICAgICAgICAgICAgICAgICAg
IDx0ZCB3aWR0aD0iOTYlIj4mbmJzcDs8L3RkPg0KICAgICAgICAgICAgICAgICAgICA8L3Ry
Pg0KICAgICAgICAgICAgICAgICAgICA8dHI+IA0KICAgICAgICAgICAgICAgICAgICAgIDx0
ZCB3aWR0aD0iOTYlIiBoZWlnaHQ9IjE4Ij4mbmJzcDsmbmJzcDvAzsXNs92/obTCILi5wLog
waS6uL/NILHXIMGkuri4piDDo77Gwda0wiCwy7v2v6PB+MDMIMDWvcC0z7TZLjxicj4NCiZu
YnNwOyZuYnNwO8fPwfa4uCCwy7v2v6PB+LXpwMwgs8q5q7OqILi5wLogwaS6uLimIMGmsPjH
2CDB1rTCILDhsPogv8DI97fBIMGkuri4piDDo7TCtaUguLnAuiCz67fCsPogvcOwo8C7PGJy
PiAgDQombmJzcDsmbmJzcDvH47rxx8+0wiCw4bD6uKYgw8q3ocfPsO0gwNa9wLTPtNkuPGJy
Pjxicj4gDQo8L3RkPg0KICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAg
ICAgICAgICA8dHI+IA0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iOTYlIiBo
ZWlnaHQ9IjE4Ij4NCiZuYnNwOyZuYnNwO8DMwaa0wiC+8sC7ILz2IL74tMIguLnAuiC+58DH
ILDLu/aw4bD6uri02bTCIL3Ft9q8uiDA1rTCIMGkuri4piC/5LG4x8+0wiC9w7TrsKEgtce+
+r3AtM+02S48YnI+ICANCiZuYnNwOyZuYnNwO8DOxc2z3b+hILvqwOfH2CDA1rTCILvnwMzG
riDB37+htMIgv+y4rrChILLAIMfKv+TH0SDBpLq4tenAuyC047DtIMDWtMIgu+fAzMausKEg
uLnAzCDA1rTCtaUsPGJyPiAgIA0KJm5ic3A7Jm5ic3A7wMwgu+fAzMauILXpwLsgsbi60MfP
uOkgPGEgaHJlZj0iaHR0cDovL2l3d3cubmV0L3BvcnRhbC5odG1sIiB0YXJnZXQ9Il9ibGFu
ayI+xvfFuyy6uMW7LMfjuuo8L2E+ILvnwMzGrrbzsO0gx9W0z7TZLjxicj48YnI+ICANCjwv
dGQ+DQogICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDx0
cj4gDQogICAgICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI5NiUiPg0KJm5ic3A7Jm5i
c3A7vsbAzLX7tfu1+7TCIMDMt7Egu+fAzMauuKYgw6O+xsHWtMIgxKvF17DtuK4gudcgxbC/
9rXlILDLu/a/o8H4wNS0z7TZLjxicj4gIA0KJm5ic3A7Jm5ic3A7sKIgxKvF17DtuK4gurC3
ziC9xbfavLogwNa0wiC+9ryxtcggu+fAzMauuLggs9fGvMHwwMcgvue9ycC4t84NCjxhIGhy
ZWY9Imh0dHA6Ly9pd3d3Lm5ldC9kYXRhL2NhdF9saXN0Lmh0bWwiIHRhcmdldD0iX2JsYW5r
Ij617rfPsPy4rjwvYT7Hz7TCILDLu/a/o8H4wMy45zxicj4NCiZuYnNwOyZuYnNwO7HNx8+y
sryttbUgxKvF17DtuK4gtOO058DasKEgtce9xyC89iDA1r3AtM+02S48YnI+PGJyPg0KDQoN
CiZuYnNwOyZuYnNwOzxhIGhyZWY9Imh0dHA6Ly9pd3d3Lm5ldC9teV9zaWdudXAuaHRtbCIg
dGFyZ2V0PSJfYmxhbmsiPsSrxdew7biuILTjtOc8L2E+wMwgtce9w7jpIKLfvsbAzL+jwKXA
xyDB1r3EIDHB1rimILmru/PAuLfOILXluK645yBwb3AzIGUtbWFpbCCw6MGkwLsgteW4s7TP
tNkuPGJyPiAgDQombmJzcDsmbmJzcDsoIr+5IiBhYmNAaXd3dy5uZXQiKTxicj4gICANCiZu
YnNwOyZuYnNwO7bHx9EssdcgxKvF17DtuK64piCw/Liux9IgvPYgwNa0wiCxx8fRsPogx9i0
5yDEq8XXsO24rr+hILTjtOfA2iC+xsDMtfC4piC17rfPx9W0z7TZLjxicj4gICANCiZuYnNw
OyZuYnNwOyi17rfPvcXDu8C7IMfPvcXIxCC047TnsPy4rsDat84gbG9naW4gx8+9w7jpIMSr
xdew7biuuKYgwffBoiCw/Liux8+9xyC89iDA1r3AtM+02S4pPGJyPiAgIA0KDQombmJzcDsm
bmJzcDs8YSBocmVmPSJodHRwOi8vaXd3dy5uZXQvc2lnbnVwLmh0bWwiIHRhcmdldD0iX2Js
YW5rIj7IuL/4sKHA1DwvYT7AuyDHz73DsO0gyLi/+MDMILXHvcO46SCi3yC+xsDMv6PApcDH
IMHWvcQgMcHWuKYguau788C4t84gteW4s7TPtNkuPGJyPiAgDQombmJzcDsmbmJzcDvAzsXN
s93AuiCz18a8wfDAzCDB1sDOwMyw7SC+xsDMtfu1+7X7tMIgs9fGvMHwwMcgsM3AzLHiILan
ua7A1LTPtNkhIDxicj4gIDxicj4gIA0KDQoNCg0KPC90ZD48L3RyPg0KIDx0cj4gDQogICAg
ICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI5NiUiIGhlaWdodD0iMTkiPjxiPjxmb250
IGNvbG9yPSIjRkY5OTAwIj4NCiZuYnNwOyZuYnNwOzxhIGhyZWY9Imh0dHA6Ly9pd3d3Lm5l
dCIgdGFyZ2V0PSJfYmxhbmsiPmh0dHA6Ly9pd3d3Lm5ldDwvYT48L2ZvbnQ+PC9iPiAovsbA
zLX7tfu1+ym3ziC55rmux9ggwda8vL/kPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgPC90
cj4NCiA8dHI+IA0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iOTYlIiBoZWln
aHQ9IjE5Ij4NCiZuYnNwOyZuYnNwO77GwMy1+7X7tfvAxyDAzLPkwLogv+y4riCz18a8wfDA
zCCwrrDtwNa0wiDAr8DNx9EgwaS6uLimILytt84gsPjAr8fPsO0gu/W3zr/uILPXxrzB8Lmu
yK24pjxicj4gDQombmJzcDsmbmJzcDvDosPix8+0wrDNwNS0z7TZLiCxzcfPsrK8rbW1IL7G
wMy1+7X7tfvAxyDH0SCwocG3wMwgtce+7sHWvcOx5iC6zsW5teW4s7TPtNkuPGJyPjxicj4N
Cg0KJm5ic3A7Jm5ic3A7tMMgsMewrcfPvcOw7SDH4Lq5x8+8vL/kfn5+sKi758fVtM+02S48
YnI+PGJyPg0KDQoNCjwvdGQ+DQogICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAg
ICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAg
ICAgICAgDQogICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgIDx0cj4gDQogICAg
ICAgICAgICAgICAgPHRkIHdpZHRoPSIxMDAlIiBhbGlnbj0iY2VudGVyIiB2YWxpZ249InRv
cCI+IA0KICAgICAgICAgICAgICAgICAgICA8dGFibGUgd2lkdGg9IjEwMCUiIGJvcmRlcj0i
MCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIj4NCiAgICAgICAgICAgICAgICAg
ICAgPHRyIGJnY29sb3I9IiMwMDAwMDAiPiANCiAgICAgICAgICAgICAgICAgICAgICA8dGQg
d2lkdGg9IjclIiBoZWlnaHQ9IjEiPjwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgPHRk
IHdpZHRoPSI0MyUiIGhlaWdodD0iMSI+PC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICA8
dGQgd2lkdGg9IjQlIiBoZWlnaHQ9IjEiPjwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAg
PHRkIHdpZHRoPSI0NiUiIGhlaWdodD0iMSI+PC90ZD4NCiAgICAgICAgICAgICAgICAgICAg
PC90cj4NCiAgICAgICAgICAgICAgICAgICAgPHRyPiANCiAgICAgICAgICAgICAgICAgICAg
ICA8dGQgd2lkdGg9IjclIiBoZWlnaHQ9IjIwIiBiZ2NvbG9yPSIjOTlDQ0NDIj4mbmJzcDs8
L3RkPg0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iNDMlIiBoZWlnaHQ9IjIw
IiBiZ2NvbG9yPSIjOTlDQ0NDIj48Yj4xwM8gxvKx1SC55rmuPC9iPjwvdGQ+DQogICAgICAg
ICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI0JSIgaGVpZ2h0PSIyMCIgYmdjb2xvcj0iI2Vk
ZWRlZCI+Jm5ic3A7PC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjQ2
JSIgaGVpZ2h0PSIyMCIgYmdjb2xvcj0iI2VkZWRlZCI+PGI+PGZvbnQgY29sb3I9IiM2NjY2
NjYiPjc3NCw1MDAgaGl0KDIwMDIuMDEuMDcpDQo8L2ZvbnQ+PC9iPjwvdGQ+DQogICAgICAg
ICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgDQogICAgICAgICAgICAg
ICAgICAgIDx0cj4gDQogICAgICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI3JSIgaGVp
Z2h0PSIxIiBiZ2NvbG9yPSIjMDAwMDAwIj48L3RkPg0KICAgICAgICAgICAgICAgICAgICAg
IDx0ZCB3aWR0aD0iNDMlIiBoZWlnaHQ9IjEiIGJnY29sb3I9IiMwMDAwMDAiPjwvdGQ+DQog
ICAgICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI0JSIgaGVpZ2h0PSIxIiBiZ2NvbG9y
PSIjMDAwMDAwIj48L3RkPg0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iNDYl
IiBoZWlnaHQ9IjEiIGJnY29sb3I9IiMwMDAwMDAiPjwvdGQ+DQogICAgICAgICAgICAgICAg
ICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIDx0cj4gDQogICAgICAgICAgICAgICAg
ICAgICAgPHRkIHdpZHRoPSI3JSIgaGVpZ2h0PSIyMCIgYmdjb2xvcj0iIzk5Q0NDQyI+Jm5i
c3A7PC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjQzJSIgaGVpZ2h0
PSIyMCIgYmdjb2xvcj0iIzk5Q0NDQyI+PGI+s9fGvMHwILTjtOcgxKvF17DtuK48L2I+PC90
ZD4NCiAgICAgICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjQlIiBoZWlnaHQ9IjIwIiBi
Z2NvbG9yPSIjZWRlZGVkIj4mbmJzcDs8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgIDx0
ZCB3aWR0aD0iNDYlIiBoZWlnaHQ9IjIwIiBiZ2NvbG9yPSIjZWRlZGVkIj48Yj48Zm9udCBj
b2xvcj0iIzY2NjY2NiI+DQo8YSBocmVmPSJodHRwOi8vaXd3dy5uZXQvZGF0YS9jYXRfbGlz
dC5odG1sIiB0YXJnZXQ9Il9uZXciPjc0NSCwszwvYT48L2ZvbnQ+PC9iPjwvdGQ+DQogICAg
ICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAgICAgIA0KICAgICAgICAg
ICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICAgIDx0YWJsZSB3aWR0aD0iMTAw
JSIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiPg0KICAgICAg
ICAgICAgICAgICAgIA0KICAgICAgICAgICAgICAgICAgICA8dHI+IA0KICAgICAgICAgICAg
ICAgICAgICAgIDx0ZCBiZ2NvbG9yPSIjQ0VDRUNFIiBoZWlnaHQ9IjE4Ij48Zm9udCBjb2xv
cj0iIzAwMDA4MCI+PGJyPg0KJm5ic3A7Jm5ic3A7wffBoiC55rmux8+8xbytIMbysKHH2CDB
1r3KvcO/wCEgPT09PT09Jmd0OzxhIGhyZWY9Imh0dHA6Ly9pd3d3Lm5ldCIgdGFyZ2V0PSJf
bmV3Ij48Zm9udCBjb2xvcj0iIzA2MDZGRiI+aHR0cDovL2l3d3cubmV0PC9mb250PjwvYT4N
CsCvwM3H0SC758DMxq6287DtIMbysKG1x73DuOkgPGJyPg0KJm5ic3A7Jm5ic3A7wdbAp7rQ
tem/obDUIL7Lt8HB1r3Dsea52bb4tM+02S4gKCC+xsDMtfu1+7X7ID0gaXd3dyApPGJyPg0K
PGJyPjwvdGQ+DQogICAgICAgICAgICAgICAgICAgIDwvdHI+DQogICAgICAgICAgICAgICAg
ICA8L3RhYmxlPg0KICAgICAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgICAgICAgIA0K
ICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICA8
L3RkPg0KICAgICAgICA8L3RyPg0KDQogPHRyPiANCiAgICAgICAgICA8dGQgaGVpZ2h0PSIy
MCIgYmdjb2xvcj0iIzQwNTY4MCIgYWxpZ249ImxlZnQiPjxmb250IGNvbG9yPSIjZmZmZmZm
Ij48YnI+DQoNCiZuYnNwOyZuYnNwO7HNx8+ysiC60sbtwLsgs6LDxCC15bfItNm46SC/67yt
uKYgudm2+LTPtNkuPGJyPg0KDQombmJzcDsmbmJzcDuxzcfPwMcguN7Az8C6IMDOxc2z3b+h
vK0gwKW8rcfOwd8gw+u15sfPv7TAuLjnILHNx8/AxyC+7rawx9EgwaS6uLW1ILCusO3A1sH2
IL7KvcC0z7TZLjxicj48YnI+DQombmJzcDsmbmJzcDu02cC9us7FzbTCIMDOxc2z3SzBpLq4
xeu9xSy52cDMt6+9urnpvcUgte4gwK/AzcfRIMGkuri4uMC7ILq4s7u15biztM+02S4gPGJy
Pg0KJm5ic3A7Jm5ic3A7vsbAzLX7tfu1+8DHILChwbfAzCC1x73DuOkgwPzDvLChwbcguN7A
z8C7IMXrx8+/qSDAr8DNx9EgwaS6uLimILnevsa6uL3HILz2IMDWvcC0z7TZLjxicj4NCiZu
YnNwOyZuYnNwO7D4wfa758fXwLsgwvyw7cfPvcO46SC+xsDMtfu1+7X7ILO7us6758GkwLsg
vsa9xyC89iDA1r3AtM+02S48QSBIUkVGPSJodHRwOi8vaXd3dy5uZXQvYmJzLmh0bWwiIHRh
cmdldD0iX25ldyI+DQo8Zm9udCBjb2xvcj0iYmx1ZSI+ILnZt86wobytILq4seI8L2ZvbnQ+
PC9hPjxicj4NCiZuYnNwOyZuYnNwO7PXxrzB8MDHILDtsN/AuyC89rfFx8+0wiCw+LCzsNS9
w8bHwLsgv+6/tcHfwNS0z7TZLg0KPGEgaHJlZj0iaHR0cDovL2l3d3cubmV0L3d3d2IvQ3Jh
enlXV1dCb2FyZC5jZ2k/ZGI9Ym9hcmQxIiB0YXJnZXQ9Il9uZXciPjxmb250IGNvbG9yPSJi
bHVlIj652bfOsKG8rSC6uLHiPC9mb250PjwvYT48YnI+DQogIA0KJm5ic3A7Jm5ic3A7sde3
obW1ILz2vcXAuyC/+MShIL7KwLi9xyCw5r/sILz2vcWwxbrOuKYgxay4r8fPvcq9w7/AITwv
Zm9udD4NCjxBIEhSRUY9bWFpbHRvOml3ZWJtYXN0ZXJAaXd3dy5uZXQ/c3ViamVjdD289r3F
sMW6ziZib2R5PbjewM+89r3FsMW6zj4NCjxmb250IGNvbG9yPSJibHVlIj48Yj689r3FsMW6
zjwvYj48L2ZvbnQ+PC9BPjxicj48YnI+IA0KICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwv
dHI+DQogICAgICA8L3RhYmxlPg0KICAgIDwvdGQ+DQogICAgPHRkIGFsaWduPSJjZW50ZXIi
IHZhbGlnbj0idG9wIiB3aWR0aD0iMjIiPjxpbWcgc3JjPSJodHRwOi8vaXd3dy5jby5rci9p
d3d3X2luZm8vcmlnaHQuZ2lmIiB3aWR0aD0iMjIiIA0KaGVpZ2h0PSIyMDkiPjwvdGQ+DQog
IDwvdHI+DQo8L3RhYmxlPg0KPHRhYmxlIHdpZHRoPSI2MTkiIGJvcmRlcj0iMCIgY2VsbHNw
YWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiBhbGlnbj0iY2VudGVyIj4NCiAgPHRyPg0KICAg
IDx0ZD48YSBocmVmPSJodHRwOi8vaXd3dy5uZXQiIHRhcmdldD0iX25ldyI+PGltZyBzcmM9
Imh0dHA6Ly9pd3d3Lm5ldC9pd3d3X2luZm8vYnV0dG9tMS5naWYiIA0Kd2lkdGg9IjYxOSIg
aGVpZ2h0PSI0NiIgYm9yZGVyPSIwIj48L2E+PC90ZD4NCiAgPC90cj4NCjwvdGFibGU+DQo8
L3RkPjwvdGFibGU+DQo8L2h0bWw+

------=_NextPart_000_0067_01C0F24A.93A21C00--


From postmaster@cs.utk.edu Tue Jan 15 00:25:54 2002
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id AAA17742; Tue, 15 Jan 2002 00:25:53 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 15 Jan 2002 00:25:53 -0500
Received: from yahoo.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id AAA05904; Tue, 15 Jan 2002 00:25:52 -0500 (EST)
Message-Id: <200201150525.AAA05904@cs.utk.edu>
Received: from yahoo.co.kr (211.215.9.40)
 by cs.utk.edu (smtpshim v1.0); Tue, 15 Jan 2002 00:25:53 -0500
Reply-To: kkkk5012@yahoo.co.kr
From: "1hA$@:" <kkkk5012@yahoo.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: (A$:8) !Z E7D+ , D}D+8& C#@8<<?d????????????????
Sender: "1hA$@:" <kkkk5012@yahoo.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 15 Jan 2002 14:28:11 +0900
X-User: 2.5-
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id AAA05906

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD4oyKjG5MDMwfYgsbiw5sfPseIpJm5i
c3A7IC0tLS0tLSZndDsmbmJzcDsgPEEgDQpocmVmPSJodHRwOi8vd3d3LnNlYXJjaGNvcmVh
LmNvbSI+aHR0cDovL3d3dy5zZWFyY2hjb3JlYS5jb208L0E+PC9QPg0KPFA+Jm5ic3A7PC9Q
Pg0KPFA+odpgxbfEqyzE/cSrYCDA2r3FwMwgv/jHz73DtMIgwMy788f8wLsgw6O+xrXluLO0
z7TZodo8L1A+DQo8UD6+yLPnx8+8vL/kLsGmsKEgwaS4uyC/qby6utCw+iCzsry6utCysiDB
wcC6vNK9xCC+y7fBteW4sbKyv+ReXjwvUD4NCjxQPrOyvLq60MDMs6ogv6m8urrQwMyzqiC/
5MHyIMW3xKsgxP3Eq7imILi4s6q9w7HiIMj7teW9w8HSPzwvUD4NCjxQPsGmsKEgw9/DtcfY
ILXluK60wiC758DMxq6/oSDH0bn4ILChuri8vL/kLjwvUD4NCjxQPsDMIMi4u+e0wiDC+MfR
ILOywNoswMy727+pwNostMm3wsDWtMKzssDaLMfQurDBwcC6v6nA2iy4xbPKwcHAurOywNos
LCwsPC9QPg0KPFA+te7AuLfOILCiwNrAxyC/+MfPvcO0wiDAzLvzx/zAuyDDo77GvK0gv6yw
4cfYIMHWtMIgPC9QPg0KPFA+yLi757G4v+QsILmwt9AgsKHA1LrxtMIgvvi9wLTPtNkuPC9Q
Pg0KPFA+sde4rrDtILvnwfjAuLfOILvztOu55sDHIL7zsbzAuyDIrsDOx9K89iDA1r7uvK0s
PC9QPg0KPFA+wNq9xcDHIL/4x8+9w7TCIMDMu/PH/MC7ILLAIMOjwLi9x7z2IMDWwLi9x7Ko
v7m/5CxeXio8L1A+DQo8UD6x17iusO0gwNq8vMfRILO7v+vAuyC6uLDtvc3AuL3DuOkgPC9Q
Pg0KPFA+yKjG5MDMwfYgtem+7rzFvK0gsbiw5sfPvcO46SC1x7G4v+QsPC9QPg0KPFA+wcHA
uiDBpLq4sKEgtce8y8C4uOkgwcGw2rPXv+QsIMHxsMW/7iDHz7fnILXHvLy/5C48L1A+DQo8
UD48QlI+KMioxuTAzMH2ILG4sObHz7HiKSZuYnNwOyAtLS0tLS0mZ3Q7Jm5ic3A7IDxBIA0K
aHJlZj0iaHR0cDovL3d3dy5zZWFyY2hjb3JlYS5jb20iPmh0dHA6Ly93d3cuc2VhcmNoY29y
ZWEuY29tPC9BPjwvUD4NCjxQPiZuYnNwOzwvUD4NCjxQPiZuYnNwOzwvUD4NCjxQPjxCUj5w
cy4gx+O29L74wMwgwMy43sDPwLsgurizu7ytIMHLvNvH1bTPtNkuIMDMuN7Az8HWvNK0wjwv
UD4NCjxQPiZuYnNwOyZuYnNwOyZuYnNwOyDFuLvnwMzGriCw1L3Dxse/obytIMOjvsYgwMy4
3sDPwLsgurizu7DUILXHvvq9wLTPtNkuPC9QPg0KPFA+Jm5ic3A7Jm5ic3A7Jm5ic3A7IMDM
uN7AzyC53rHiuKYgv/jHz73DwfYgvsrAu7Dmv+wsvPa9xbDFus64piDH2MHWvcq9w7/kLjwv
UD4NCjxQPiZuYnNwOyZuYnNwOyZuYnNwOyA8Y2VudGVyPjxhIGhyZWY9J2h0dHA6Ly8xOTIu
MTY4LjAuMTo5MDgwL3JlZnVzZS9yZWZ1c2U/Y21kPXZpZXcmZ3JvdXA9MTImbmFtZT0mbWFp
bD1ibGFzdC1wYXJhbGxlbEBjcy51dGsuZWR1Jz48aW1nIHNyYz0naHR0cDovLzE5Mi4xNjgu
MC4xOjkwODAvcmVmdXNlL21haWwtcmVmdXNlLmdpZicgYm9yZGVyPTApPjwvY2VudGVyPjwv
UD4NCjwvQk9EWT4NCjwvSFRNTD4NCg==

From postmaster@cs.utk.edu Tue Jan 15 23:06:58 2002
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id XAA16743; Tue, 15 Jan 2002 23:06:58 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 15 Jan 2002 23:06:58 -0500
Received: from iwww-75 (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id XAA00797; Tue, 15 Jan 2002 23:06:50 -0500 (EST)
Message-Id: <200201160406.XAA00797@cs.utk.edu>
Received: from iwww-75 (211.202.71.98)
 by cs.utk.edu (smtpshim v1.0); Tue, 15 Jan 2002 23:06:55 -0500
From: =?ks_c_5601-1987?B?vsbAzLX7tfu1+w==?= <iwebmaster@iwww.net>
To: blast-parallel@cs.utk.edu
Subject: =?ks_c_5601-1987?B?W8irurhdILPXxrzB8MDMILi4tecgsMu79r+jwfggvsbAzLX7tfu1+8DUtM+02S4=?=
Date: Wed, 16 Jan 2002 13:05:01 +0900
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="----=_NextPart_000_0137_01C0F05A.93A01C00"
X-Priority: 3
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000

This is a multi-part message in MIME format.

------=_NextPart_000_0137_01C0F05A.93A01C00
Content-Type: text/plain;
	charset="ks_c_5601-1987"
Content-Transfer-Encoding: base64

sMu79r+jwfggvsbAzLX7tfu1+yAgICAgICAgICAgICAgICAgICAgICAgIMDOxc2z3b+htMIg
uLnAuiDBpLq4v80gsdcgwaS6uLimIMOjvsbB1rTCILDLu/a/o8H4wMwgwNa9wLTPtNkuDQog
IMfPwfa4uCCwy7v2v6PB+LXpwMwgs8q5q7OqILi5wLogwaS6uLimIMGmsPjH2CDB1rTCILDh
sPogv8DI97fBIMGkuri4piDDo7TCtaUguLnAuiCz67fCsPogvcOwo8C7DQogICDH47rxx8+0
wiCw4bD6uKYgw8q3ocfPsO0gwNa9wLTPtNkuDQoNCiAgICAgIMDMwaa0wiC+8sC7ILz2IL74
tMIguLnAuiC+58DHILDLu/aw4bD6uri02bTCIL3Ft9q8uiDA1rTCIMGkuri4piC/5LG4x8+0
wiC9w7TrsKEgtce++r3AtM+02S4NCiAgIMDOxc2z3b+hILvqwOfH2CDA1rTCILvnwMzGriDB
37+htMIgv+y4rrChILLAIMfKv+TH0SDBpLq4tenAuyC047DtIMDWtMIgu+fAzMausKEguLnA
zCDA1rTCtaUsDQogICDAzCC758DMxq4gtenAuyCxuLrQx8+46SDG98W7LLq4xbssx+O66iC7
58DMxq6287DtIMfVtM+02S4NCg0KICAgICAgvsbAzLX7tfu1+7TCIMDMt7Egu+fAzMauuKYg
w6O+xsHWtMIgxKvF17DtuK4gudcgxbC/9rXlILDLu/a/o8H4wNS0z7TZLg0KICAgsKIgxKvF
17DtuK4gurC3ziC9xbfavLogwNa0wiC+9ryxtcggu+fAzMauuLggs9fGvMHwwMcgvue9ycC4
t8617rfPsPy4rsfPtMIgsMu79r+jwfjAzLjnDQogILHNx8+ysryttbUgxKvF17DtuK4gtOO0
58DasKEgtce9xyC89iDA1r3AtM+02S4NCg0KICDEq8XXsO24riC047TnwMwgtce9w7jpIKLf
vsbAzL+jwKXAxyDB1r3EIDHB1rimILmru/PAuLfOILXluK645yBwb3AzIGUtbWFpbCCw6MGk
wLsgteW4s7TPtNkuDQogICAoIr+5IiBhYmNAaXd3dy5uZXQiKQ0KICAgtsfH0Syx1yDEq8XX
sO24rrimILD8uK7H0iC89iDA1rTCILHHx9Gw+iDH2LTnIMSrxdew7biuv6EgtOO058DaIL7G
wMy18LimILXut8/H1bTPtNkuDQogICAote63z73Fw7vAuyDHz73FyMQgtOO057D8uK7A2rfO
IGxvZ2luIMfPvcO46SDEq8XXsO24rrimIMH3waIgsPy4rsfPvccgvPYgwNa9wLTPtNkuKQ0K
ICAgyLi/+LChwNTAuyDHz73DsO0gyLi/+MDMILXHvcO46SCi3yC+xsDMv6PApcDHIMHWvcQg
McHWuKYguau788C4t84gteW4s7TPtNkuDQogICDAzsXNs93AuiCz18a8wfDAzCDB1sDOwMyw
7SC+xsDMtfu1+7X7tMIgs9fGvMHwwMcgsM3AzLHiILanua7A1LTPtNkhIA0KDQogICAgaHR0
cDovL2l3d3cubmV0ICi+xsDMtfu1+7X7KbfOILnmua7H2CDB1ry8v+QgICAgIL7GwMy1+7X7
tfvAxyDAzLPkwLogv+y4riCz18a8wfDAzCCwrrDtwNa0wiDAr8DNx9EgwaS6uLimILytt84g
sPjAr8fPsO0gu/W3zr/uILPXxrzB8LmuyK24pg0KICAgw6LD4sfPtMKwzcDUtM+02S4gsc3H
z7KyvK21tSC+xsDMtfu1+7X7wMcgx9EgsKHBt8DMILXHvu7B1r3DseYgus7FubXluLO0z7TZ
Lg0KDQogILTDILDHsK3Hz73DsO0gx+C6ucfPvLy/5H5+frCou+fH1bTPtNkuDQoNCiAgICAg
ICAgICAgICAgICAgIDHAzyDG8rHVILnmua4gICA3NzQsNTAwIGhpdCgyMDAyLjAxLjEzKSAg
ICAgICAgICAgsKHA1Mi4v/ggICAxNTYsNTUwICgyMDAyLjAxLjEzKSAgICAgICAgICAgILPX
xrzB8CC047TnIMSrxdew7biuICAgNzg1ILCzICAgICAgIA0KICDB98GiILnmua7Hz7zFvK0g
xvKwocfYIMHWvcq9w7/AISA9PT09PT0+aHR0cDovL2l3d3cubmV0wK/AzcfRILvnwMzGrrbz
sO0gxvKwobXHvcO46SANCiAgwdbAp7rQtem/obDUIL7Lt8HB1r3Dsea52bb4tM+02S4gKCC+
xsDMtfu1+7X7ID0gaXd3dyApDQoNCiAgICAgICAgICANCiAgsc3Hz7KyILrSxu3AuyCzosPE
ILXlt8i02bjpIL/rvK24piC52bb4tM+02S4NCiAgsc3Hz8DHILjewM/AuiDAzsXNs92/obyt
IMClvK3HzsHfIMPrtebHz7+0wLi45yCxzcfPwMcgvu62sMfRIMGkuri1tSCwrrDtwNbB9iC+
yr3AtM+02S4NCg0KICC02cC9us7FzbTCIMDOxc2z3SzBpLq4xeu9xSy52cDMt6+9urnpvcUg
te4gwK/AzcfRIMGkuri4uMC7ILq4s7u15biztM+02S4gDQogIL7GwMy1+7X7tfvAxyCwocG3
wMwgtce9w7jpIMD8w7ywocG3ILjewM/AuyDF68fPv6kgwK/AzcfRIMGkuri4piC53r7Guri9
xyC89iDA1r3AtM+02S4NCiAgsPjB9rvnx9fAuyDC/LDtx8+9w7jpIL7GwMy1+7X7tfsgs7u6
zrvnwaTAuyC+xr3HILz2IMDWvcC0z7TZLiC52bfOsKG8rSC6uLHiDQogILPXxrzB8MDHILDt
sN/AuyC89rfFx8+0wiCw+LCzsNS9w8bHwLsgv+6/tcHfwNS0z7TZLrnZt86wobytILq4seIN
CiAgILHXt6G1tSC89r3FwLsgv/jEoSC+ysC4vccgsOa/7CC89r3FsMW6zrimIMWsuK/Hz73K
vcO/wCG89r3FsMW6zg0KDQogICAgICAgICAg

------=_NextPart_000_0137_01C0F05A.93A01C00
Content-Type: text/html;
	charset="ks_c_5601-1987"
Content-Transfer-Encoding: base64

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT6wy7v2v6PB+CC+xsDMtfu1+7X7PC90aXRsZT4NCjx4
LW1ldGEgaHR0cC1lcXVpdj0iQ29udGVudC1UeXBlIiBjb250ZW50PSJ0ZXh0L2h0bWw7IGNo
YXJzZXQ9ZXVjLWtyIj4NCjwvaGVhZD4NCjxzdHlsZSB0eXBlPSJ0ZXh0L2NzcyI+DQo8IS0t
DQpBOmxpbmssIEE6YWN0aXZlLCBBOnZpc2l0ZWQgew0KZm9udC1zaXplOiA5cHQ7DQpjb2xv
cjogcmVkOw0KdGV4dC1kZWNvcmF0aW9uOiBub25lOw0KfQ0KQTpob3ZlciB7IA0KZm9udC1z
aXplOiA5cHQ7DQpjb2xvcjowMDAwMDA7DQp0ZXh0LWRlY29yYXRpb246IHVuZGVybGluZTsN
Cn0NClREIHsNCmZvbnQtZmFtaWx5OiCxvLiyOw0KZm9udC1zaXplOiA5cHQ7DQpjb2xvcjog
MDAwMDAwOw0KfQ0KLS0+DQo8L3N0eWxlPg0KPHRhYmxlIHdpZHRoPTEwMCUgIGJnY29sb3I9
IiNCNEI0QjQiIHRleHQ9IiMwMDAwMDAiPjx0ZCB2YWxpZ249dG9wPg0KPHRhYmxlIHdpZHRo
PSI2MTkiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIiBhbGln
bj0iY2VudGVyIiANCmJhY2tncm91bmQ9Imh0dHA6Ly9pd3d3LmNvLmtyL2l3d3dfaW5mby9i
YWNrLmdpZiI+DQogIDx0cj4gDQogICAgPHRkIGFsaWduPSJjZW50ZXIiIHZhbGlnbj0idG9w
IiB3aWR0aD0iMTEiPjxpbWcgc3JjPSJodHRwOi8vaXd3dy5jby5rci9pd3d3X2luZm8vbGVm
dC5naWYiIHdpZHRoPSIxMSIgDQpoZWlnaHQ9IjIwOSI+PC90ZD4NCiAgICA8dGQgYWxpZ249
ImNlbnRlciIgdmFsaWduPSJ0b3AiIHdpZHRoPSI1ODYiPiANCiAgICAgIDx0YWJsZSB3aWR0
aD0iMTAwJSIgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIA0K
YmFja2dyb3VuZD0iaHR0cDovL2l3d3cuY28ua3IvaXd3d19pbmZvL2NfYmFjay5naWYiPg0K
ICAgICAgICA8dHI+IA0KICAgICAgICAgIDx0ZD48YSBocmVmPSJodHRwOi8vaXd3dy5uZXQi
IHRhcmdldD0iX2JsYW5rIj48aW1nIA0Kc3JjPSJodHRwOi8vaXd3dy5jby5rci9pd3d3X2lu
Zm8vbG9nby5naWYiIHdpZHRoPSI1ODYiIGhlaWdodD0iNDAiIGJvcmRlcj0iMCI+PC9hPjwv
dGQ+DQogICAgICAgIDwvdHI+DQogICAgICAgIDx0cj4gDQogICAgICAgICAgPHRkPjxpbWcg
c3JjPSJodHRwOi8vaXd3dy5jby5rci9pd3d3X2luZm8vbG9nb190eHQuZ2lmIiB3aWR0aD0i
NTg2IiBoZWlnaHQ9IjEwMCI+PC90ZD4NCiAgICAgICAgPC90cj4NCiAgICAgICAgPHRyPiAN
CiAgICAgICAgICA8dGQ+IA0KICAgICAgICAgICAgPHRhYmxlIHdpZHRoPSIxMDAlIiBjZWxs
c3BhY2luZz0iMCIgY2VsbHBhZGRpbmc9IjAiIGJvcmRlcj0iMSIgYm9yZGVyY29sb3I9IiM2
MTk0REQiIGJvcmRlcmNvbG9yZGFyaz0iI0ZGRkZGRiI+DQogICAgICAgICAgICAgIDx0cj4g
DQogICAgICAgICAgICAgICAgPHRkIHdpZHRoPSIxMDAlIiBhbGlnbj0iY2VudGVyIiBoZWln
aHQ9IjY5Ij4gDQogICAgICAgICAgICAgICAgICA8dGFibGUgYmdjb2xvcj0iIzk4QjFEMSIg
d2lkdGg9IjEwMCUiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIw
Ij4NCiAgICAgICAgICAgICAgICAgICAgPHRyPiANCiAgICAgICAgICAgICAgICAgICAgICA8
dGQgd2lkdGg9Ijk2JSI+Jm5ic3A7PC90ZD4NCiAgICAgICAgICAgICAgICAgICAgPC90cj4N
CiAgICAgICAgICAgICAgICAgICAgPHRyPiANCiAgICAgICAgICAgICAgICAgICAgICA8dGQg
d2lkdGg9Ijk2JSIgaGVpZ2h0PSIxOCI+Jm5ic3A7Jm5ic3A7wM7FzbPdv6G0wiC4ucC6IMGk
uri/zSCx1yDBpLq4uKYgw6O+xsHWtMIgsMu79r+jwfjAzCDA1r3AtM+02S48YnI+DQombmJz
cDsmbmJzcDvHz8H2uLggsMu79r+jwfi16cDMILPKuauzqiC4ucC6IMGkuri4piDBprD4x9gg
wda0wiCw4bD6IL/AyPe3wSDBpLq4uKYgw6O0wrWlILi5wLogs+u3wrD6IL3DsKPAuzxicj4g
IA0KJm5ic3A7Jm5ic3A7x+O68cfPtMIgsOGw+rimIMPKt6HHz7DtIMDWvcC0z7TZLjxicj48
YnI+IA0KPC90ZD4NCiAgICAgICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAg
ICAgICAgPHRyPiANCiAgICAgICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9Ijk2JSIgaGVp
Z2h0PSIxOCI+DQombmJzcDsmbmJzcDvAzMGmtMIgvvLAuyC89iC++LTCILi5wLogvufAxyCw
y7v2sOGw+rq4tNm0wiC9xbfavLogwNa0wiDBpLq4uKYgv+SxuMfPtMIgvcO067ChILXHvvq9
wLTPtNkuPGJyPiAgDQombmJzcDsmbmJzcDvAzsXNs92/oSC76sDnx9ggwNa0wiC758DMxq4g
wd+/obTCIL/suK6woSCywCDHyr/kx9EgwaS6uLXpwLsgtOOw7SDA1rTCILvnwMzGrrChILi5
wMwgwNa0wrWlLDxicj4gICANCiZuYnNwOyZuYnNwO8DMILvnwMzGriC16cC7ILG4utDHz7jp
IDxhIGhyZWY9Imh0dHA6Ly9pd3d3Lm5ldC9wb3J0YWwuaHRtbCIgdGFyZ2V0PSJfYmxhbmsi
Psb3xbssurjFuyzH47rqPC9hPiC758DMxq6287DtIMfVtM+02S48YnI+PGJyPiAgDQo8L3Rk
Pg0KICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8dHI+
IA0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iOTYlIj4NCiZuYnNwOyZuYnNw
O77GwMy1+7X7tfu0wiDAzLexILvnwMzGrrimIMOjvsbB1rTCIMSrxdew7biuILnXIMWwv/a1
5SCwy7v2v6PB+MDUtM+02S48YnI+ICANCiZuYnNwOyZuYnNwO7CiIMSrxdew7biuILqwt84g
vcW32ry6IMDWtMIgvva8sbXIILvnwMzGrri4ILPXxrzB8MDHIL7nvcnAuLfODQo8YSBocmVm
PSJodHRwOi8vaXd3dy5uZXQvZGF0YS9jYXRfbGlzdC5odG1sIiB0YXJnZXQ9Il9ibGFuayI+
te63z7D8uK48L2E+x8+0wiCwy7v2v6PB+MDMuOc8YnI+DQombmJzcDsmbmJzcDuxzcfPsrK8
rbW1IMSrxdew7biuILTjtOfA2rChILXHvccgvPYgwNa9wLTPtNkuPGJyPjxicj4NCg0KDQom
bmJzcDsmbmJzcDs8YSBocmVmPSJodHRwOi8vaXd3dy5uZXQvbXlfc2lnbnVwLmh0bWwiIHRh
cmdldD0iX2JsYW5rIj7Eq8XXsO24riC047TnPC9hPsDMILXHvcO46SCi377GwMy/o8ClwMcg
wda9xCAxwda4piC5q7vzwLi3ziC15biuuOcgcG9wMyBlLW1haWwgsOjBpMC7ILXluLO0z7TZ
Ljxicj4gIA0KJm5ic3A7Jm5ic3A7KCK/uSIgYWJjQGl3d3cubmV0Iik8YnI+ICAgDQombmJz
cDsmbmJzcDu2x8fRLLHXIMSrxdew7biuuKYgsPy4rsfSILz2IMDWtMIgscfH0bD6IMfYtOcg
xKvF17DtuK6/oSC047TnwNogvsbAzLXwuKYgte63z8fVtM+02S48YnI+ICAgDQombmJzcDsm
bmJzcDsote63z73Fw7vAuyDHz73FyMQgtOO057D8uK7A2rfOIGxvZ2luIMfPvcO46SDEq8XX
sO24rrimIMH3waIgsPy4rsfPvccgvPYgwNa9wLTPtNkuKTxicj4gICANCg0KJm5ic3A7Jm5i
c3A7PGEgaHJlZj0iaHR0cDovL2l3d3cubmV0L3NpZ251cC5odG1sIiB0YXJnZXQ9Il9ibGFu
ayI+yLi/+LChwNQ8L2E+wLsgx8+9w7DtIMi4v/jAzCC1x73DuOkgot8gvsbAzL+jwKXAxyDB
1r3EIDHB1rimILmru/PAuLfOILXluLO0z7TZLjxicj4gIA0KJm5ic3A7Jm5ic3A7wM7FzbPd
wLogs9fGvMHwwMwgwdbAzsDMsO0gvsbAzLX7tfu1+7TCILPXxrzB8MDHILDNwMyx4iC2p7mu
wNS0z7TZISA8YnI+ICA8YnI+ICANCg0KDQoNCjwvdGQ+PC90cj4NCiA8dHI+IA0KICAgICAg
ICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iOTYlIiBoZWlnaHQ9IjE5Ij48Yj48Zm9udCBj
b2xvcj0iI0ZGOTkwMCI+DQombmJzcDsmbmJzcDs8YSBocmVmPSJodHRwOi8vaXd3dy5uZXQi
IHRhcmdldD0iX2JsYW5rIj5odHRwOi8vaXd3dy5uZXQ8L2E+PC9mb250PjwvYj4gKL7GwMy1
+7X7tfspt84guea5rsfYIMHWvLy/5DwvdGQ+DQogICAgICAgICAgICAgICAgICAgIDwvdHI+
DQogPHRyPiANCiAgICAgICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9Ijk2JSIgaGVpZ2h0
PSIxOSI+DQombmJzcDsmbmJzcDu+xsDMtfu1+7X7wMcgwMyz5MC6IL/suK4gs9fGvMHwwMwg
sK6w7cDWtMIgwK/AzcfRIMGkuri4piC8rbfOILD4wK/Hz7DtILv1t86/7iCz18a8wfC5rsit
uKY8YnI+IA0KJm5ic3A7Jm5ic3A7w6LD4sfPtMKwzcDUtM+02S4gsc3Hz7KyvK21tSC+xsDM
tfu1+7X7wMcgx9EgsKHBt8DMILXHvu7B1r3DseYgus7FubXluLO0z7TZLjxicj48YnI+DQoN
CiZuYnNwOyZuYnNwO7TDILDHsK3Hz73DsO0gx+C6ucfPvLy/5H5+frCou+fH1bTPtNkuPGJy
Pjxicj4NCg0KDQo8L3RkPg0KICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAg
ICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAg
ICAgIA0KICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICA8dHI+IA0KICAgICAg
ICAgICAgICAgIDx0ZCB3aWR0aD0iMTAwJSIgYWxpZ249ImNlbnRlciIgdmFsaWduPSJ0b3Ai
PiANCiAgICAgICAgICAgICAgICAgICAgPHRhYmxlIHdpZHRoPSIxMDAlIiBib3JkZXI9IjAi
IGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCI+DQogICAgICAgICAgICAgICAgICAg
IDx0ciBiZ2NvbG9yPSIjMDAwMDAwIj4gDQogICAgICAgICAgICAgICAgICAgICAgPHRkIHdp
ZHRoPSI3JSIgaGVpZ2h0PSIxIj48L3RkPg0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3
aWR0aD0iNDMlIiBoZWlnaHQ9IjEiPjwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgPHRk
IHdpZHRoPSI0JSIgaGVpZ2h0PSIxIj48L3RkPg0KICAgICAgICAgICAgICAgICAgICAgIDx0
ZCB3aWR0aD0iNDYlIiBoZWlnaHQ9IjEiPjwvdGQ+DQogICAgICAgICAgICAgICAgICAgIDwv
dHI+DQogICAgICAgICAgICAgICAgICAgIDx0cj4gDQogICAgICAgICAgICAgICAgICAgICAg
PHRkIHdpZHRoPSI3JSIgaGVpZ2h0PSIyMCIgYmdjb2xvcj0iIzk5Q0NDQyI+Jm5ic3A7PC90
ZD4NCiAgICAgICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjQzJSIgaGVpZ2h0PSIyMCIg
Ymdjb2xvcj0iIzk5Q0NDQyI+PGI+McDPIMbysdUguea5rjwvYj48L3RkPg0KICAgICAgICAg
ICAgICAgICAgICAgIDx0ZCB3aWR0aD0iNCUiIGhlaWdodD0iMjAiIGJnY29sb3I9IiNlZGVk
ZWQiPiZuYnNwOzwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI0NiUi
IGhlaWdodD0iMjAiIGJnY29sb3I9IiNlZGVkZWQiPjxiPjxmb250IGNvbG9yPSIjNjY2NjY2
Ij43NzQsNTAwIGhpdCgyMDAyLjAxLjEzKQ0KPC9mb250PjwvYj48L3RkPg0KICAgICAgICAg
ICAgICAgICAgICA8L3RyPg0KPHRyIGJnY29sb3I9IiMwMDAwMDAiPiANCiAgICAgICAgICAg
ICAgICAgICAgICA8dGQgd2lkdGg9IjclIiBoZWlnaHQ9IjEiPjwvdGQ+DQogICAgICAgICAg
ICAgICAgICAgICAgPHRkIHdpZHRoPSI0MyUiIGhlaWdodD0iMSI+PC90ZD4NCiAgICAgICAg
ICAgICAgICAgICAgICA8dGQgd2lkdGg9IjQlIiBoZWlnaHQ9IjEiPjwvdGQ+DQogICAgICAg
ICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI0NiUiIGhlaWdodD0iMSI+PC90ZD4NCiAgICAg
ICAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgICAgICAgICAgPHRyPiANCiAgICAg
ICAgICAgICAgICAgICAgICA8dGQgd2lkdGg9IjclIiBoZWlnaHQ9IjIwIiBiZ2NvbG9yPSIj
OTlDQ0NDIj4mbmJzcDs8L3RkPg0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0i
NDMlIiBoZWlnaHQ9IjIwIiBiZ2NvbG9yPSIjOTlDQ0NDIj48Yj6wocDUyLi/+DwvYj48L3Rk
Pg0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iNCUiIGhlaWdodD0iMjAiIGJn
Y29sb3I9IiNlZGVkZWQiPiZuYnNwOzwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgPHRk
IHdpZHRoPSI0NiUiIGhlaWdodD0iMjAiIGJnY29sb3I9IiNlZGVkZWQiPjxiPjxmb250IGNv
bG9yPSIjNjY2NjY2Ij4xNTYsNTUwICgyMDAyLjAxLjEzKQ0KPC9mb250PjwvYj48L3RkPg0K
ICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgIA0KICAgICAg
ICAgICAgICAgICAgICA8dHI+IA0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0i
NyUiIGhlaWdodD0iMSIgYmdjb2xvcj0iIzAwMDAwMCI+PC90ZD4NCiAgICAgICAgICAgICAg
ICAgICAgICA8dGQgd2lkdGg9IjQzJSIgaGVpZ2h0PSIxIiBiZ2NvbG9yPSIjMDAwMDAwIj48
L3RkPg0KICAgICAgICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iNCUiIGhlaWdodD0iMSIg
Ymdjb2xvcj0iIzAwMDAwMCI+PC90ZD4NCiAgICAgICAgICAgICAgICAgICAgICA8dGQgd2lk
dGg9IjQ2JSIgaGVpZ2h0PSIxIiBiZ2NvbG9yPSIjMDAwMDAwIj48L3RkPg0KICAgICAgICAg
ICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICA8dHI+IA0KICAgICAgICAg
ICAgICAgICAgICAgIDx0ZCB3aWR0aD0iNyUiIGhlaWdodD0iMjAiIGJnY29sb3I9IiM5OUND
Q0MiPiZuYnNwOzwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI0MyUi
IGhlaWdodD0iMjAiIGJnY29sb3I9IiM5OUNDQ0MiPjxiPrPXxrzB8CC047TnIMSrxdew7biu
PC9iPjwvdGQ+DQogICAgICAgICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI0JSIgaGVpZ2h0
PSIyMCIgYmdjb2xvcj0iI2VkZWRlZCI+Jm5ic3A7PC90ZD4NCiAgICAgICAgICAgICAgICAg
ICAgICA8dGQgd2lkdGg9IjQ2JSIgaGVpZ2h0PSIyMCIgYmdjb2xvcj0iI2VkZWRlZCI+PGI+
PGZvbnQgY29sb3I9IiM2NjY2NjYiPg0KPGEgaHJlZj0iaHR0cDovL2l3d3cubmV0L2RhdGEv
Y2F0X2xpc3QuaHRtbCIgdGFyZ2V0PSJfbmV3Ij43ODUgsLM8L2E+PC9mb250PjwvYj48L3Rk
Pg0KICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAgICAgICAgICANCiAg
ICAgICAgICAgICAgICAgIDwvdGFibGU+DQogICAgICAgICAgICAgICAgICA8dGFibGUgd2lk
dGg9IjEwMCUiIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIGNlbGxwYWRkaW5nPSIwIj4N
CiAgICAgICAgICAgICAgICAgICANCiAgICAgICAgICAgICAgICAgICAgPHRyPiANCiAgICAg
ICAgICAgICAgICAgICAgICA8dGQgYmdjb2xvcj0iI0NFQ0VDRSIgaGVpZ2h0PSIxOCI+PGZv
bnQgY29sb3I9IiMwMDAwODAiPjxicj4NCiZuYnNwOyZuYnNwO8H3waIguea5rsfPvMW8rSDG
8rChx9ggwda9yr3Dv8AhID09PT09PSZndDs8YSBocmVmPSJodHRwOi8vaXd3dy5uZXQiIHRh
cmdldD0iX25ldyI+PGZvbnQgY29sb3I9IiMwNjA2RkYiPmh0dHA6Ly9pd3d3Lm5ldDwvZm9u
dD48L2E+DQrAr8DNx9Egu+fAzMautvOw7SDG8rChtce9w7jpIDxicj4NCiZuYnNwOyZuYnNw
O8HWwKe60LXpv6Gw1CC+y7fBwda9w7Hmudm2+LTPtNkuICggvsbAzLX7tfu1+yA9IGl3d3cg
KTxicj4NCjxicj48L3RkPg0KICAgICAgICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAg
ICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgICAgICA8L3RkPg0KICAgICAgICAgICAg
ICAgICANCiAgICAgICAgICAgICAgPC90cj4NCiAgICAgICAgICAgIDwvdGFibGU+DQogICAg
ICAgICAgPC90ZD4NCiAgICAgICAgPC90cj4NCg0KIDx0cj4gDQogICAgICAgICAgPHRkIGhl
aWdodD0iMjAiIGJnY29sb3I9IiM0MDU2ODAiIGFsaWduPSJsZWZ0Ij48Zm9udCBjb2xvcj0i
I2ZmZmZmZiI+PGJyPg0KDQombmJzcDsmbmJzcDuxzcfPsrIgutLG7cC7ILOiw8QgteW3yLTZ
uOkgv+u8rbimILnZtvi0z7TZLjxicj4NCg0KJm5ic3A7Jm5ic3A7sc3Hz8DHILjewM/AuiDA
zsXNs92/obytIMClvK3HzsHfIMPrtebHz7+0wLi45yCxzcfPwMcgvu62sMfRIMGkuri1tSCw
rrDtwNbB9iC+yr3AtM+02S48YnI+PGJyPg0KJm5ic3A7Jm5ic3A7tNnAvbrOxc20wiDAzsXN
s90swaS6uMXrvcUsudnAzLevvbq56b3FILXuIMCvwM3H0SDBpLq4uLjAuyC6uLO7teW4s7TP
tNkuIDxicj4NCiZuYnNwOyZuYnNwO77GwMy1+7X7tfvAxyCwocG3wMwgtce9w7jpIMD8w7yw
ocG3ILjewM/AuyDF68fPv6kgwK/AzcfRIMGkuri4piC53r7Guri9xyC89iDA1r3AtM+02S48
YnI+DQombmJzcDsmbmJzcDuw+MH2u+fH18C7IML8sO3Hz73DuOkgvsbAzLX7tfu1+yCzu7rO
u+fBpMC7IL7GvccgvPYgwNa9wLTPtNkuPEEgSFJFRj0iaHR0cDovL2l3d3cubmV0L2Jicy5o
dG1sIiB0YXJnZXQ9Il9uZXciPg0KPGZvbnQgY29sb3I9ImJsdWUiPiC52bfOsKG8rSC6uLHi
PC9mb250PjwvYT48YnI+DQombmJzcDsmbmJzcDuz18a8wfDAxyCw7bDfwLsgvPa3xcfPtMIg
sPiws7DUvcPGx8C7IL/uv7XB38DUtM+02S4NCjxhIGhyZWY9Imh0dHA6Ly9pd3d3Lm5ldC93
d3diL0NyYXp5V1dXQm9hcmQuY2dpP2RiPWJvYXJkMSIgdGFyZ2V0PSJfbmV3Ij48Zm9udCBj
b2xvcj0iYmx1ZSI+udm3zrChvK0gurix4jwvZm9udD48L2E+PGJyPg0KICANCiZuYnNwOyZu
YnNwO7HXt6G1tSC89r3FwLsgv/jEoSC+ysC4vccgsOa/7CC89r3FsMW6zrimIMWsuK/Hz73K
vcO/wCE8L2ZvbnQ+DQo8QSBIUkVGPW1haWx0bzppd2VibWFzdGVyQGl3d3cubmV0P3N1Ympl
Y3Q9vPa9xbDFus4mYm9keT243sDPvPa9xbDFus4+DQo8Zm9udCBjb2xvcj0iYmx1ZSI+PGI+
vPa9xbDFus48L2I+PC9mb250PjwvQT48YnI+PGJyPiANCiAgICAgICAgICA8L3RkPg0KICAg
ICAgICA8L3RyPg0KICAgICAgPC90YWJsZT4NCiAgICA8L3RkPg0KICAgIDx0ZCBhbGlnbj0i
Y2VudGVyIiB2YWxpZ249InRvcCIgd2lkdGg9IjIyIj48aW1nIHNyYz0iaHR0cDovL2l3d3cu
Y28ua3IvaXd3d19pbmZvL3JpZ2h0LmdpZiIgd2lkdGg9IjIyIiANCmhlaWdodD0iMjA5Ij48
L3RkPg0KICA8L3RyPg0KPC90YWJsZT4NCjx0YWJsZSB3aWR0aD0iNjE5IiBib3JkZXI9IjAi
IGNlbGxzcGFjaW5nPSIwIiBjZWxscGFkZGluZz0iMCIgYWxpZ249ImNlbnRlciI+DQogIDx0
cj4NCiAgICA8dGQ+PGEgaHJlZj0iaHR0cDovL2l3d3cubmV0IiB0YXJnZXQ9Il9uZXciPjxp
bWcgc3JjPSJodHRwOi8vaXd3dy5uZXQvaXd3d19pbmZvL2J1dHRvbTEuZ2lmIiANCndpZHRo
PSI2MTkiIGhlaWdodD0iNDYiIGJvcmRlcj0iMCI+PC9hPjwvdGQ+DQogIDwvdHI+DQo8L3Rh
YmxlPg0KPC90ZD48L3RhYmxlPg0KPC9odG1sPg==

------=_NextPart_000_0137_01C0F05A.93A01C00--


From postmaster@cs.utk.edu Wed Jan 23 21:02:40 2002
Return-Path: <postmaster@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id VAA06072; Wed, 23 Jan 2002 21:02:39 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Wed, 23 Jan 2002 21:02:39 -0500
Received: from gosok.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id VAA06651; Wed, 23 Jan 2002 21:02:38 -0500 (EST)
Message-Id: <200201240202.VAA06651@cs.utk.edu>
Received: from gosok.com (211.215.9.143)
 by cs.utk.edu (smtpshim v1.0); Wed, 23 Jan 2002 21:02:39 -0500
Reply-To: abc@gosok.com
From: 9ZAvGv <abc@gosok.com>
To: <blast-parallel@cs.utk.edu>
Subject: ?M?l~ 9+7a0fG0=EC;GO1b!!!GZ5eFy@L 0xB%!!!,?y1^A$:8!!!>F8#9Y@LF. 18GO1b!!!(1$-0m)
Sender: 9ZAvGv <abc@gosok.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Thu, 24 Jan 2002 11:02:40 +0900
X-User: 2.53-figjdkjp-glkiin-Ddijq
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id VAA06657

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD7B9rHdIMDMvPiwoyA8QSBocmVmPSJo
dHRwOi8vd3d3Lm9kb2QuY28ua3IiPmh0dHA6Ly93d3cub2RvZC5jby5rcjwvQT4guKYgxay4
r8fYICC6uLy8v+QuLi48L1A+DQo8UD4gICAgICAmbmJzcDs8L1A+DQo8UD6x4rrQwcHAuiDB
pLq4uLggvsu3wbXluK60wiBgvu618L7utfA/YMGkuri758DMxq6/obytPC9QPg0KPFA+Jm5i
c3A7PC9QPg0KPFA+uau34bfOILjuvcqxurWlILDmx7C758DMxq6/oSDA2rW/wLi3ziA8Rk9O
VCBjb2xvcj0jZmYwMDAwPrDmx7A8L0ZPTlQ+wLsgvcXDu8C7IMfYwda45yw8L1A+DQo8UD4g
ICAgJm5ic3A7PC9QPg0KPFA+sKLBviA8Rk9OVCBjb2xvcj0jZmYwMDAwPsPWvcXErrbzx9q1
5cb5tbUguau34bfOPC9GT05UPiC15biusO0gwNa9wLTPtNkuPC9QPg0KPFA+ICAgICAmbmJz
cDs8L1A+DQo8UD6+xr/vt68gMzAwuLi/+MDMu/Mgv6y6wL/DuK6x4iw8Rk9OVCBjb2xvcj0j
ZmYwMDAwPsD8sbkgvsa4o7nZwMzGrrW1PC9GT05UPiCxuMfPseIsPC9QPg0KPFA+ICAgICAm
bmJzcDs8L1A+DQo8UD6wosG+IDxGT05UIGNvbG9yPSNmZjAwMDA+vcW/68SrteUgwe+9wyC5
37HePC9GT05UPiAsvK268b26te7AuyC9x73Dx8+w7SANCsDWvcC0z7TZLjwvUD4NCjxQPiAg
ICAgICZuYnNwOzwvUD4NCjxQPsDMwaa6zsXNtMIguPC15yC5q7fhvK268b26v80gwaS6uLim
IMfRsPe/obytIMiuwM7H2CC6uLy8v+QuPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+Jm5ic3A7
PC9QPg0KPFA+KMioxuTAzMH2ILG4sObHz7HiKSAtJmd0OyZndDsmbmJzcDsgPEEgDQpocmVm
PSJodHRwOi8vd3d3Lm9kb2QuY28ua3IiPmh0dHA6Ly93d3cub2RvZC5jby5rcjwvQT4gPC9Q
Pg0KPFA+vu618L7utfA/PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+
PEJSPr7Is+fHz73KtM+x7j88QlI+ursguN7Az8C6ILDUvcPGx7+hvK0gud/D6cfRILDNwLi3
zrytIL7utrDH0SCws8DOwaS6uLW1ILCusO0gwNbB9iC+yr3AtM+02S48QlI+wMzIxCC89r3F
wLsgv/jHz8H2IL7KwLi9w7jpIA0Kvsa3oSC89r3FsMW6zrimILStt6/B1r3DseIgudm2+LTP
tNkuIDxCUj4NCjxBIGhyZWY9Im1haWx0bzppbmZvQG9kb2QuY28ua3IiPrz2vcWwxbrOPC9Q
PjwvQT4NCjwvQk9EWT4NCjwvSFRNTD4NCg==

From moore+bounces-blast-parallel@cs.utk.edu Mon Feb  4 22:10:49 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id WAA28753; Mon, 4 Feb 2002 22:10:48 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 4 Feb 2002 22:10:48 -0500
Received: from relay2.kornet.net (marvin@localhost) 
        by cs.utk.edu with ESMTP (cf v2.9s-UTK)
	id WAA22208; Mon, 4 Feb 2002 22:10:51 -0500 (EST)
Received: from relay2.kornet.net (211.48.62.162)
 by cs.utk.edu (smtpshim v1.0); Mon, 4 Feb 2002 22:10:52 -0500
Received: from localhost (211.217.54.61) by relay2.kornet.net; 5 Feb 2002 12:10:39 +0900
Message-ID: <3c5f4d313c9cdff1@relay2.kornet.net> (added by relay2.kornet.net)
Reply-To: test@test.com
From: test<test@test.com>
To: blast-parallel@cs.utk.edu
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 5 Feb 2002 12:13:19 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id WAA22227

PEhUTUw+DQo8SEVBRD4NCjxUSVRMRT48L1RJVExFPg0KPC9IRUFEPg0KPEJPRFk+DQo8RElW
Pr7Is+fHz73KtM+x7j88L0RJVj4NCjxESVY+Ir/swM+76r73IsDUtM+02TwvRElWPg0KPERJ
Vj641cD6IMfjtvS++MDMIMDMsdvAuyC257/2IMHLvNvH1bTPtNkuPC9ESVY+DQo8RElWPiZu
YnNwOzwvRElWPg0KPERJVj602binwMwgvsa0z7bzILG5s7u/obytILz4vPbHz7DUILCzud+1
yCAiv+vBorTrw7y9xcGmx7AnPC9ESVY+DQo8RElWPrHdvNMqxNzFqbiuxq4gw8qwrbfCILq4
vPbBosL4waYgudcgs7uxuLy6wMywrcfRJm5ic3A7xq+89iC55r3EILnmvPbBprXuIDwvRElW
Pg0KPERJVj69xbHivPogOcG+t/m4piC80rCzx8+w7cDaIMfVtM+02S4gPEJSPjwvRElWPg0K
PERJVj7Gr8KhwLombmJzcDsgMS4mbmJzcDsgs7Kz4LPrvNIgtKmxuLOqILzVvbGw1CC757/r
x9IgvPYgJm5ic3A7wNa02bTCsM2w+jwvRElWPg0KPERJVj4mbmJzcDsmbmJzcDsmbmJzcDsm
bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsm
bmJzcDsNCjIuJm5ic3A7ILChwaTAuiZuYnNwO7mwt9DAzLDtILDHw+C8s7rxLCDB1sXDuri8
9iwgvLG52rXuILTZvufHz7DUILvnv+u1x7jnPC9ESVY+DQo8RElWPiZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOw0KMy4mbmJzcDsgvsbB1iDA+rfFx9EgsKGw3cC4t84gxse4xbXHvu4mbmJz
cDsmbmJzcDuw+LvnudcgwNu+97q4vPa68bChIDwvRElWPg0KPERJVj4mbmJzcDsmbmJzcDsm
bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsm
bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDu4xb/sJm5i
c3A7wPvAug0KuvG/68C4t84gx9iw4bXLtM+02S4uLiZuYnNwOzwvRElWPg0KPERJVj4mbmJz
cDs8L0RJVj4NCjxESVY+sbq6zrTrt864uCCzs8ewx8+0+LDNwLsmbmJzcDsmbmJzcDuw+LD4
seKw/MDMs6ossMfD4LyzuvEsvLG52iwgPC9ESVY+DQo8RElWPrD4sPjB1sXDx8/A2rq4vPa+
98O8te4gtNm/67W1t84gs7PHsMDMILXHsO0gwNbAuLjnLDwvRElWPg0KPERJVj7AzMGmtMIg
vNK68cDatekgsLOws8DOv6Gw1LHuwfYmbmJzcDu6uLHex8+w7cDaILHbwLsgv8O4s7TPtNku
Jm5ic3A7PEJSPiZuYnNwOzwvRElWPg0KPERJVj6x17PJIMH2s6rDxCC59riuwfYguLa9w7Dt
IMDhsfHAxyC9w7CjwLsgs7u8xbytIDwvRElWPg0KPERJVj7A+sjxIMioxuTAzMH2wM4mbmJz
cDsgotEgPEEgaHJlZj0iaHR0cDovL3d3dy53b29pbDIxLmNvbSI+d3d3Lndvb2lsMjEuY29t
PC9BPiZuYnNwOw0Kv8C9w7jpPC9ESVY+DQo8RElWPrT1IMDavLzH0SC8s7jtsPogtPUgwcHA
uiZuYnNwO7vzx7DAuyC4uLOqvce89iDA1sC7ILDNwNS0z7TZLjxCUj48QlI+tPUgscOx3cfR
ILvnx9fAzCDA1sC4vcO46SAwMikgOTY3LTY3MDS3zg0Kv6y29CDB1ry8v+Q8L0RJVj4NCjxE
SVY+sKi758fVtM+02S48QlI+PC9ESVY+DQo8L0JPRFk+DQo8L0hUTUw+DQo=

From moore+bounces-blast-parallel@cs.utk.edu Fri Feb  8 05:07:16 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id FAA20913; Fri, 8 Feb 2002 05:07:15 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Fri, 8 Feb 2002 05:07:15 -0500
Received: from mailto.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id FAA17968; Fri, 8 Feb 2002 05:07:19 -0500 (EST)
Message-Id: <200202081007.FAA17968@cs.utk.edu>
Received: from mailto.co.kr (211.215.9.45)
 by cs.utk.edu (smtpshim v1.0); Fri, 8 Feb 2002 05:07:20 -0500
Reply-To: ilove@mailto.co.kr
From: daun <ilove@mailto.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: !Z>H3gGO<<?d. <33/F/:0 9+7a:91G@T4O4Y!!!  ( 1$ 0m )
Sender: daun <ilove@mailto.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Fri, 8 Feb 2002 19:07:20 +0900
X-User: 2.62-ehficjkm-illhhj-Cchgh
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id FAA17973

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD6+yLPnx8+8vL/kLiBkYXVuxKvG5MH2
seLA1LTPtNkuIF5ePC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+wN/B9rO7vMzB9r/kPyC02bin
wMwgvsa0z7bzIMH2sd0gwPrI8SDEq8bkv820wiC787D8vvi0wiCx28DOtaUsPC9QPg0KPFA+
Jm5ic3A7PC9QPg0KPFA+tbW/8sDMILXHvcex7iDAzLe4sNQgwPzDvCDIuL/4utCysiDAzLje
wM/AuyC6uLO7teW4s7TPtNkuPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+wfax3SBUVsiovO7H
ziBDSm1hbGzAzLbzsO0gvsa9w7TCutDAuiC02SC+xr3Hsqu1pSw8L1A+DQo8UD4mbmJzcDs8
L1A+DQo8UD7AzLzux8649L+hvK0gyLi/+LChwNS4uMfPuOkgvLOzr8C7ILjCwMzHz7+pIGC6
ucHWuNO0z2C287TCILDNwLsgPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+wdaw7SDA1r3AtM+0
2S7AzCC6ucHWuNO0z7TCIMHvvK66ubHHsPogtsiwsMC6x/y9xMDMuOcsPC9QPg0KPFA+Jm5i
c3A7PC9QPg0KPFA+uavBtrDHIDUwMDC/+MC7ILTnw7fAzMDMuOcsvPix3SAxtbcgLCC788ew
sce17sDMPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+sKHA1Li4IMfPvcO46SC058O3tce9x7z2
IMDWvcC0z7TZLrmwt9AgurnB1rjTtM+0wiC8s7OvwMy6pcaut848L1A+DQo8UD4mbmJzcDs8
L1A+DQo8UD7IuL/4sKHA1Li4IMfPvcO46SDA/LrOILvnv+vHz73HvPYgwNa9wLTPtNkuPC9Q
Pg0KPFA+Jm5ic3A7PC9QPg0KPFA+scOx3cfPvcW60MC6IL7Gt6Egwda80rimIMWsuK/Hz73D
seYgudm287jnLDwvUD4NCjxQPiZuYnNwOzwvUD4NCjxQPrrSx8q/5MfRIMDMuN7Az8DMtvOw
7SC7/bCix8+9w7TCutCysrTCIMH4vcnAuLfOILvnsPq15biztM+02S48L1A+DQo8UD4mbmJz
cDs8L1A+DQo8UD679cfYILq5ILi5wMwgud7AuL3DsbggwfGwxb/uIMfPt+fHz7fnILXHvLy/
5H5+fn5+fn5+fn5+fn5+fn48L1A+DQo8UD4mbmJzcDs8L1A+DQo8UD7C/CAhISEgyLi/+LCh
wNS9wyDD38O1wM7AuyDA+7TCtvW/obTCYCA8U1RST05HPjxGT05UIGNvbG9yPSNmZjAwMDA+
bmF2ZXI8L0ZPTlQ+PC9TVFJPTkc+IGC287DtIA0KssAgwPu+7sHWvcOx5iC52bb2srK/5F5e
PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+wfGwxb/uIMfPt+cgtce9yr3Dv+QuILCou+fH1bTP
tNkuPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+Jm5ic3A7PC9QPg0K
PFA+yKjG5MDMwfYtLSZndDsmbmJzcDsgPEEgDQpocmVmPSJodHRwOi8vd3d3LmNqbWFsbC5j
b20vZXZlbnQvbmV3eWVhci9sdWNreV9tYWluLmpzcCI+aHR0cDovL3d3dy5jam1hbGwuY29t
L2V2ZW50L25ld3llYXIvbHVja3lfbWFpbi5qc3A8L0E+PC9QPg0KPFA+Jm5ic3A7PC9QPg0K
PFA+w9/DtcDOvsbAzLXwOiZuYnNwOzxTVFJPTkc+PEZPTlQgY29sb3I9I2ZmMDAwMD4gbmF2
ZXI8L0ZPTlQ+PC9TVFJPTkc+Jm5ic3A7IA0KJmx0OyZsdDstLS3D38O1wM4gvsa18LTCILLA
IMD7vu7B1r3DseYgudm2+LTPtNkuPEJSPjwvUD4NCjxQPjxBIGhyZWY9Im1haWx0bzppbG92
ZUBtYWlsLmNvLmtyIj689r3FsMW6zjwvQT48L1A+DQo8L0JPRFk+DQo8L0hUTUw+DQo=

From moore+bounces-blast-parallel@cs.utk.edu Sat Feb  9 13:26:15 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id NAA10478; Sat, 9 Feb 2002 13:26:15 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sat, 9 Feb 2002 13:26:15 -0500
Received: from dreamwiz.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id NAA08939; Sat, 9 Feb 2002 13:26:10 -0500 (EST)
Message-Id: <200202091826.NAA08939@cs.utk.edu>
Received: from dreamwiz.com (218.50.84.153)
 by cs.utk.edu (smtpshim v1.0); Sat, 9 Feb 2002 13:26:18 -0500
Reply-To: mihwa38@dreamwiz.com
From: 9LH- <mihwa38@dreamwiz.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m] "GC6s?v55;g" 20023b 2IA!@87N ?n<<8&...
Sender: 9LH- <mihwa38@dreamwiz.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sun, 10 Feb 2002 03:27:37 +0900
X-User: 2.62-iljmgolw-hmppiq-Gglom
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id NAA08980

<html>
<head>
<title>=A2=BF=A2=BD=A1=DA "=C7=C3=B6=F3=BF=F6=B5=B5=BB=E7" =B0=A1=B6=F3=BB=
=E7=B4=EB...</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Deuc-kr"=
>
<style>
.dosa1 { font-family: "=B1=BC=B8=B2"; font-size: 13pt; line-height: 13pt;=
 color: 333333}
.dosa3 { font-family: "=B1=BC=B8=B2"; font-size: 10pt; line-height: 13pt;=
 color: 000000}
.dosa6 { font-family: "=B1=BC=B8=B2"; font-size: 12pt; line-height: 15pt;=
 color: 333333}
.dosa7 { font-family: "=B1=BC=B8=B2"; font-size: 9pt; line-height: 12pt; =
color: 000000}
.dosa8 { font-family: "=B1=BC=B8=B2"; font-size: 11pt; line-height: 14pt;=
 color: 000000}
td,body   {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#4B4B4B;}
A:link    {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#0080FF;}
A:active  {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#0080FF;}
A:visited {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#0080FF;}
A:hover   {font-size:13px; text-decoration:underline ; color:blue; }
</style>
<script language=3D"JavaScript">
<!--
function MM_swapImgRestore() { //v3.0
  var i,x,a=3Ddocument.MM_sr; for(i=3D0;a&&i<a.length&&(x=3Da[i])&&x.oSrc=
;i++) x.src=3Dx.oSrc;
}
function MM_preloadImages() { //v3.0
  var d=3Ddocument; if(d.images){ if(!d.MM_p) d.MM_p=3Dnew Array();
    var i,j=3Dd.MM_p.length,a=3DMM_preloadImages.arguments; for(i=3D0; i<=
a.length; i++)
    if (a[i].indexOf("#")!=3D0){ d.MM_p[j]=3Dnew Image; d.MM_p[j++].src=3D=
a[i];}}
}
function MM_swapImage() { //v3.0
  var i,j=3D0,x,a=3DMM_swapImage.arguments; document.MM_sr=3Dnew Array; f=
or(i=3D0;i<(a.length-2);i+=3D3)
   if ((x=3DMM_findObj(a[i]))!=3Dnull){document.MM_sr[j++]=3Dx; if(!x.oSr=
c) x.oSrc=3Dx.src; x.src=3Da[i+2];}
}
function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=3Ddocument; if((p=3Dn.indexOf("?"))>0&&parent.fram=
es.length) {
    d=3Dparent.frames[n.substring(p+1)].document; n=3Dn.substring(0,p);}
  if(!(x=3Dd[n])&&d.all) x=3Dd.all[n]; for (i=3D0;!x&&i<d.forms.length;i+=
+) x=3Dd.forms[i][n];
  for(i=3D0;!x&&d.layers&&i<d.layers.length;i++) x=3DMM_findObj(n,d.layer=
s[i].document);
  if(!x && document.getElementById) x=3Ddocument.getElementById(n); retur=
n x;
}
function na_restore_img_src(name, nsdoc)
{
  var img =3D eval((navigator.appName =3D=3D 'Netscape') ? nsdoc+'.'+name=
 : 'document.all.'+name);
  if (name =3D=3D '')
    return;
  if (img && img.altsrc) {
    img.src    =3D img.altsrc;
    img.altsrc =3D null;
  }=20
}
function na_preload_img()
{=20
  var img_list =3D na_preload_img.arguments;
  if (document.preloadlist =3D=3D null)=20
    document.preloadlist =3D new Array();
  var top =3D document.preloadlist.length;
  for (var i=3D0; i < img_list.length; i++) {
    document.preloadlist[top+i]     =3D new Image;
    document.preloadlist[top+i].src =3D img_list[i+1];
  }=20
}
function na_change_img_src(name, nsdoc, rpath, preload)
{=20
  var img =3D eval((navigator.appName =3D=3D 'Netscape') ? nsdoc+'.'+name=
 : 'document.all.'+name);
  if (name =3D=3D '')
    return;
  if (img) {
    img.altsrc =3D img.src;
    img.src    =3D rpath;
  }=20
}
var n =3D (document.layers) ? 1:0;
var ie =3D (document.all) ? 1:0;
function overTip(boxObj) {
  if (ie) {
    boxObj.style.visibility =3D 'visible';
  }=20
}
function outTip(boxObj) {
  if (ie) {
    boxObj.style.visibility =3D 'hidden';
  }
}
//-->
</script>
</head>
<body bgcolor=3D"#ffffff" leftmargin=3D"0" topmargin=3D"0" marginwidth=3D=
"0" marginheight=3D"0" onLoad=3D"MM_preloadImages('http://www.flowerdosa.=
com/images/list-r.jpg','http://www.flowerdosa.com/images/baramtest_b.gif'=
,'http://www.flowerdosa.com/images/blood_b.gif','http://www.flowerdosa.co=
m/images/exite_b.gif','http://www.flowerdosa.com/images/dream_b.gif','htt=
p://www.flowerdosa.com/images/oheng_b.gif','http://www.flowerdosa.com/ima=
ges/ggistar_b.gif','http://www.flowerdosa.com/images/gunghop_b.gif','http=
://www.flowerdosa.com/images/result_b.gif','http://www.flowerdosa.com/ima=
ges/subbutton_home_b.gif','http://www.flowerdosa.com/images/subbutton_sin=
be_b.gif','http://www.flowerdosa.com/images/subbutton_romance_b.gif','htt=
p://www.flowerdosa.com/images/subbutton_lucky_b.gif','http://www.flowerdo=
sa.com/images/subbutton_madang_b.gif','http://www.flowerdosa.com/images/s=
ubbutton_mind_b.gif')">
<table width=3D"770" border=3D"0" cellspacing=3D"0" cellpadding=3D"0" ali=
gn=3D"center" height=3D"65">
  <tr>
    <td width=3D"305" height=3D"65"><img src=3D"http://www.flowerdosa.com=
/images/stardosa.gif" width=3D"305" height=3D"65"></td>
    <td width=3D"465" height=3D"65" background=3D"http://www.flowerdosa.c=
om/images/top_02-1.gif">=20
      <table width=3D"400" border=3D"0" cellspacing=3D"0" cellpadding=3D"=
0" height=3D"62" align=3D"right">
        <tr valign=3D"bottom">=20
          <td width=3D"398">=20
            <div align=3D"right">
            <OBJECT align=3Dmiddle=20
            classid=3Dclsid:D27CDB6E-AE6D-11cf-96B8-444553540000=20
            codeBase=3Dhttp://download.macromedia.com/pub/shockwave/cabs/=
flash/swflash.cab#version=3D4,0,2,0=20
            height=3D60 width=3D250><PARAM NAME=3D"_cx" VALUE=3D"6614"><P=
ARAM NAME=3D"_cy" VALUE=3D"1588"><PARAM NAME=3D"Movie" VALUE=3D"http://ww=
w.flowerdosa.com/images/banner.swf"><PARAM NAME=3D"Src" VALUE=3D"http://w=
ww.flowerdosa.com/images/banner.swf"><PARAM NAME=3D"WMode" VALUE=3D"Windo=
w"><PARAM NAME=3D"Play" VALUE=3D"-1"><PARAM NAME=3D"Loop" VALUE=3D"-1"><P=
ARAM NAME=3D"Quality" VALUE=3D"High"><PARAM NAME=3D"SAlign" VALUE=3D""><P=
ARAM NAME=3D"Menu" VALUE=3D"-1"><PARAM NAME=3D"Base" VALUE=3D""><PARAM NA=
ME=3D"Scale" VALUE=3D"ShowAll"><PARAM NAME=3D"DeviceFont" VALUE=3D"0"><PA=
RAM NAME=3D"EmbedMovie" VALUE=3D"0"><PARAM NAME=3D"BGColor" VALUE=3D""><P=
ARAM NAME=3D"SWRemote" VALUE=3D""><PARAM NAME=3D"Stacking" VALUE=3D"below=
">
                <embed src=3D"http://www.flowerdosa.com/images/banner.swf=
" quality=3Dhigh pluginspage=3D"http://www.macromedia.com/shockwave/downl=
oad/index.cgi?P1_Prod_Version=3DShockwaveFlash" type=3D"application/x-sho=
ckwave-flash" width=3D"250" height=3D"60" align=3D"middle">
                </embed>          =20
                </OBJECT></div>
          </td>
          <td width=3D"2"><img src=3D"http://www.flowerdosa.com/images/sp=
acer.gif" width=3D"2" height=3D"1"></td>
        </tr>
      </table>
     =20
    </td>
  </tr>
</table>
<table width=3D"770" border=3D"0" cellspacing=3D"0" cellpadding=3D"0" ali=
gn=3D"center">
  <tr>
    <td height=3D"25" width=3D"150" background=3D"http://www.flowerdosa.c=
om/images/top_03.gif">&nbsp;</td>
    <td height=3D"25" width=3D"470" background=3D"http://www.flowerdosa.c=
om/images/top_04.gif">
      <OBJECT classid=3Dclsid:D27CDB6E-AE6D-11cf-96B8-444553540000=20
      codeBase=3Dhttp://download.macromedia.com/pub/shockwave/cabs/flash/=
swflash.cab#version=3D4,0,2,0=20
      height=3D25 width=3D470><PARAM NAME=3D"_cx" VALUE=3D"12435"><PARAM =
NAME=3D"_cy" VALUE=3D"662"><PARAM NAME=3D"Movie" VALUE=3D"http://www.flow=
erdosa.com/images/linetext.swf"><PARAM NAME=3D"Src" VALUE=3D"http://www.f=
lowerdosa.com/images/linetext.swf"><PARAM NAME=3D"WMode" VALUE=3D"Window"=
><PARAM NAME=3D"Play" VALUE=3D"-1"><PARAM NAME=3D"Loop" VALUE=3D"-1"><PAR=
AM NAME=3D"Quality" VALUE=3D"High"><PARAM NAME=3D"SAlign" VALUE=3D""><PAR=
AM NAME=3D"Menu" VALUE=3D"-1"><PARAM NAME=3D"Base" VALUE=3D""><PARAM NAME=
=3D"Scale" VALUE=3D"ShowAll"><PARAM NAME=3D"DeviceFont" VALUE=3D"0"><PARA=
M NAME=3D"EmbedMovie" VALUE=3D"0"><PARAM NAME=3D"BGColor" VALUE=3D""><PAR=
AM NAME=3D"SWRemote" VALUE=3D""><PARAM NAME=3D"Stacking" VALUE=3D"below">
        <embed src=3D"http://www.flowerdosa.com/images/linetext.swf" qual=
ity=3Dhigh pluginspage=3D"http://www.macromedia.com/shockwave/download/in=
dex.cgi?P1_Prod_Version=3DShockwaveFlash" type=3D"application/x-shockwave=
-flash" width=3D"470" height=3D"25">
        </embed>       </OBJECT></td>
    <td height=3D"25" width=3D"150" background=3D"http://www.flowerdosa.c=
om/images/top_05.gif">&nbsp;</td>
  </tr>
</table>
<table width=3D"770" border=3D"0" cellspacing=3D"0" cellpadding=3D"0" hei=
ght=3D"315" align=3D"center">
  <tr>=20
    <td width=3D"150" valign=3D"top" height=3D"332">=20
      <table width=3D"150" border=3D"0" cellspacing=3D"0" cellpadding=3D"=
0" height=3D"100%">
        <tr>=20
          <td background=3D"http://www.flowerdosa.com/images/dosa.jpg" wi=
dth=3D"150" height=3D"212"></td>
        </tr>
        <tr>=20
          <td width=3D"150" height=3D"25"><a href=3D"http://www.flowerdos=
a.com/sub25.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swa=
pImage('Image211','','http://www.flowerdosa.com/images/baramtest_b.gif',1=
)" target=3D"_blank"><img name=3D"Image211" border=3D"0" src=3D"http://ww=
w.flowerdosa.com/images/baramtest_a.gif" width=3D"150" height=3D"25"></a>=
</td>
        </tr>
        <tr>=20
          <td width=3D"150" height=3D"26"><a href=3D"http://www.flowerdos=
a.com/sub21.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swa=
pImage('Image311','','http://www.flowerdosa.com/images/blood_b.gif',1)" t=
arget=3D"_blank"><img name=3D"Image311" border=3D"0" src=3D"http://www.fl=
owerdosa.com/images/blood_a.gif" width=3D"150" height=3D"26"></a></td>
        </tr>
        <tr>=20
          <td width=3D"150" height=3D"26"><a href=3D"http://www.flowerdos=
a.com/sub52.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swa=
pImage('Image411','','http://www.flowerdosa.com/images/exite_b.gif',1)" t=
arget=3D"_blank"><img name=3D"Image411" border=3D"0" src=3D"http://www.fl=
owerdosa.com/images/exite_a.gif" width=3D"150" height=3D"26"></a></td>
        </tr>
        <tr>=20
          <td width=3D"150" height=3D"25"><a href=3D"http://www.flowerdos=
a.com/sub56.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swa=
pImage('Image511','','http://www.flowerdosa.com/images/dream_b.gif',1)" t=
arget=3D"_blank"><img name=3D"Image511" border=3D"0" src=3D"http://www.fl=
owerdosa.com/images/dream_a.gif" width=3D"150" height=3D"26"></a></td>
        </tr>
        <tr>=20
          <td height=3D"10" background=3D"http://www.flowerdosa.com/image=
s/left_06.gif"></td>
        </tr>
		<tr>=20
          <td bgcolor=3D'#009900'></td>
        </tr>
      </table>
    </td>
    <td valign=3D"top" height=3D"332">=20
      <table width=3D"417" border=3D"0" cellspacing=3D"0" cellpadding=3D"=
0" align=3D"center" height=3D"5">
        <tr>=20
          <td width=3D"417" height=3D"5"><img src=3D"http://www.flowerdos=
a.com/images/spacer.gif" width=3D"1" height=3D"2"></td>
        </tr>
      </table>
      <table width=3D"425" border=3D"0" cellspacing=3D"0" cellpadding=3D"=
0" align=3D"center" height=3D"18">
        <tr>=20
          <td height=3D"18" width=3D"70"><a href=3D"http://www.flowerdosa=
.com/index.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swap=
Image('Image8','','http://www.flowerdosa.com/images/subbutton_home_b.gif'=
,1)" target=3D"_blank"><img name=3D"Image8" border=3D"0" src=3D"http://ww=
w.flowerdosa.com/images/subbutton_home_a.gif" width=3D"70" height=3D"18">=
</a></td>
          <td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa=
.com/sub91.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swap=
Image('Image9','','http://www.flowerdosa.com/images/subbutton_sinbe_b.gif=
',1)" target=3D"_blank"><img name=3D"Image9" border=3D"0" src=3D"http://w=
ww.flowerdosa.com/images/subbutton_sinbe_a.gif" width=3D"71" height=3D"18=
"></a></td>
          <td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa=
.com/sub92.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swap=
Image('Image10','','http://www.flowerdosa.com/images/subbutton_romance_b.=
gif',1)" target=3D"_blank"><img name=3D"Image10" border=3D"0" src=3D"http=
://www.flowerdosa.com/images/subbutton_romance_a.gif" width=3D"71" height=
=3D"18"></a></td>
          <td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa=
.com/sub57.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swap=
Image('Image11','','http://www.flowerdosa.com/images/subbutton_lucky_b.gi=
f',1)" target=3D"_blank"><img name=3D"Image11" border=3D"0" src=3D"http:/=
/www.flowerdosa.com/images/subbutton_lucky_a.gif" width=3D"71" height=3D"=
18"></a></td>
          <td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa=
.com/sub54.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swap=
Image('Image12','','http://www.flowerdosa.com/images/subbutton_madang_b.g=
if',1)" target=3D"_blank"><img name=3D"Image12" border=3D"0" src=3D"http:=
//www.flowerdosa.com/images/subbutton_madang_a.gif" width=3D"71" height=3D=
"18"></a></td>
          <td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa=
.com/gallery.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_sw=
apImage('Image13','','http://www.flowerdosa.com/images/gallery_b2.gif',1)=
" target=3D"_blank"><img name=3D"Image13" border=3D"0" src=3D"http://www.=
flowerdosa.com/images/gallery_a2.gif" width=3D"71" height=3D"18"></a></td=
>
        </tr>
      </table>
        <table align=3D"center" valign=3D"top" border=3D"0" cellpadding=3D=
"0" cellspacing=3D"0" width=3D"620">
               =20
                <tr>
                    <td height=3D"85">
                        <p align=3D"center"><img src=3D"http://www.flower=
dosa.com/images/flow0105.gif" width=3D"600" height=3D"85" border=3D"0"></=
p>
                    </td>
                </tr><tr>
                   =20
          <td align=3D"middle" height=3D"40" class=3D"dosa1" bgcolor=3D"#=
006666" valign=3D"center">
		            <b><font color=3D"#ffffff">"=B1=D7=B4=EB =B3=AA=B8=A6 =B8=F0=
=B8=A5=B4=D9=B8=E9, &nbsp;=BF=EE=BC=BC=B8=A6 =B3=ED=C7=CF=C1=F6 =B8=BB=B6=
=F3!!"</font></b><br>=20
					</td></tr><tr><td class=3D"dosa3"><br>
                    &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;=BD=CC=B1=D7=B7=AF=BF=EE =B2=C9=B0=FA=
 =B7=CE=B8=C7=BD=BA =C7=E2=B1=E2=B0=A1 =B3=D1=C4=A1=B4=C2 &nbsp;=B5=BF=BE=
=E7=B8=B6=C0=BB!<br>
            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;<b>=C3=D6=B0=ED=C0=C7=20
            <font color=3D"#ff0033">"=B2=C9 + =B7=CE=B8=C7=BD=BA + =B5=BF=
=BE=E7=C3=B6=C7=D0"</font> =C1=A4=BA=B8</b>,<br>
                    &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;=B1=D7=B5=BF=BE=C8 =BF=A9=B7=AF=BA=D0=
=C0=C7 =BB=E7=B6=FB=BC=D3=BF=A1 =B2=D9=C1=D8=C8=F7 =BC=BA=C0=E5=C7=D8=BF=C2=
 <b>&lt;=BD=C5=BA=F1=C0=C7 =B2=C9=C1=A1&gt;</b>=C0=CC<br>
                    &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;<font color=3D"blue"><span style=3D"BACKGRO=
UND-COLOR: aqua; FONT-SIZE: 10pt"=20
           ><b>=A1=BC=C7=C3=B6=F3=BF=F6=B5=B5=BB=E7=A1=BD</b></span></fon=
t>=C0=CC=B8=A7=C0=B8=B7=CE &nbsp;=B5=E5=B5=F0=BE=EE =C0=CE=C5=CD=B3=DD=BC=
=BC=B0=E8=BF=A1 =BB=F5=B7=D3=B0=D4 &nbsp;=C5=BA=BB=FD!!<br>
            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;2002=B3=E2,=20
            &nbsp;=C7=E2=B1=E2=B7=CE=BF=EE =B2=C9=B3=BB=C0=BD=B0=FA =C7=D4=
=B2=B2 =C3=A3=BE=C6=BF=C2<font color=3D"#ff0033"> <b>"FlowerDosa"</b></fo=
nt>!=20
            <br>
					</td></tr><tr><td class=3D"dosa3"><br>
                    &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;-------------------------------------=
---------------------<br>
                    &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;=A2=BF &nbsp;<font color=3D"white"><s=
pan style=3D"BACKGROUND-COLOR: blue; FONT-SIZE: 10pt"=20
           ><b>=B2=C9=C0=DA=B8=AE=B7=CE =BE=CB=BE=C6=BA=B8=B4=C2 =B3=AA=C0=
=C7 =BF=EE=B8=ED!</b></span></font> &nbsp;=A2=A1&nbsp; <a href=3D"http://=
www.flowerdosa.com/sub11.htm" target=3D"_blank"><b>"=C5=BA=BB=FD=C8=AD-=BF=
=EE=B8=ED=C0=C7 =B2=C9=C0=DA=B8=AE"</b></a><br>
                    &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;=A2=BA &nbsp;<a href=3D"http://www.fl=
owerdosa.com/sub12.htm" target=3D"_blank"><b>"=BD=C5=BA=F1=C0=C7 =C1=D6=BF=
=AA=B2=C9=C1=A1"</b></a>=BF=A1=BC=AD &nbsp;=B3=BB=C0=CF=C0=C7 =B9=D9=B6=F7=
=C0=BB =C1=A1=C3=C4=BA=BC=B1=EE=BF=E4? <br>
                    &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;=A1=DA &nbsp;=B0=FA=BF=AC =B4=E7=BD=C5=
=C0=C7 2002=B3=E2 =BE=D6=C1=A4=BF=EE=B0=FA =B1=DD=C0=FC=BF=EE=C0=BA? &nbs=
p;=A2=A1&nbsp; <a href=3D"http://www.flowerdosa.com/sub57.htm" target=3D"=
_blank"><b>"=B6=EC&amp;=B2=C9 =BF=EE=BC=BC"</b></a>=B7=CE! <br>
                    <br>
            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=3D"#ff0000"><b>=A2=BD</b></font>=20
            &nbsp;<font color=3D"white"><span style=3D"BACKGROUND-COLOR: =
#ff0000; FONT-SIZE: 10pt"=20
           ><b>=C2=F8=C7=D1 =B3=B2=C0=DA/=BF=A9=C0=DA=B5=B5 =B9=D9=B6=F7=C7=
=C9=B4=D9?</b></span></font>^^ &nbsp;=A2=A1&nbsp; =B0=FA=BF=AC <a href=3D=
"http://www.flowerdosa.com/sub25.htm" target=3D"_blank"><b>=B3=AA=C0=C7=20
            =B9=D9=B6=F7=B3=A2 =C1=A1=BC=F6</b></a>=B4=C2? <br>
                    &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;=A2=BA &nbsp;=C1=F6=C7=C7=C1=F6=B1=E2=
=B8=E9 =B9=E9=C0=FC=B9=E9=BD=C2! <a href=3D"http://www.flowerdosa.com/sub=
21.htm" target=3D"_blank"><b>"=B4=E7=BD=C5=C0=C7 =C7=F7=BE=D7=C7=FC =C6=AF=
=BC=BA"</b></a>=C0=BB =B2=C0 =BE=CB=BE=C6=B5=CE=BC=BC=BF=E4! <br>
                    &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;<font color=3D"#ff0000"><b>=A2=BD</b>=
</font> &nbsp;=BB=E7=B1=CD=B0=ED=C7=C2 =C0=CC=BC=BA=BF=A1=B0=D4 =B4=EB=BD=
=AC! &nbsp;=A2=A1&nbsp; =C8=BF=B0=FA=B8=B8=C1=A1 &nbsp;<a href=3D"http://=
www.flowerdosa.com/sub22.htm" target=3D"_blank"><b>"=B7=CE=B8=C7=BD=BA=C7=
=C1=B7=CE=C6=F7=C1=EE=B3=EB=C7=CF=BF=EC"</b></a>!<br>
                    <br>
                    &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;=A1=DA &nbsp;=B5=BF=BE=E7=C0=C7 =BC=BD=
=BD=BA=B0=E6=C0=FC "=BC=D2=B3=E0=B0=E6(=E1=C8=D2=B3=CC=E8)"! &nbsp;=A2=A1=
&nbsp; <a href=3D"http://www.flowerdosa.com/sub52.htm" target=3D"_blank">=
<b>"=C8=EF=B9=CC=C1=F8=C1=F8 =B5=BF=BE=E7=C3=B6=C7=D0"</b></a> <br>
                    &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;=A2=BA &nbsp;=C5=BE=BD=BA=C5=B8=B5=E9=
=C0=C7 =C8=AD=B7=C1=C7=D1 =B2=C9=C0=DA=B8=AE =BF=EE=B8=ED=C0=BA? &nbsp;=A2=
=A1&nbsp; <a href=3D"http://www.flowerdosa.com/sub13.htm" target=3D"_blan=
k"><b>"=BD=BA=C5=B8=BF=EE=B8=ED =B5=FB=B6=F3=C0=E2=B1=E2!"</b></a> <br>
                    &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;<font color=3D"#ff0000"><b>=A2=BD</b>=
</font> &nbsp;<a href=3D"http://www.flowerdosa.com/sub23.htm" target=3D"_=
blank"><b>"=BD=BA=C5=B8 =B2=C9=B1=C3=C7=D5"</b></a>=BF=A1=BC=AD &nbsp;=C5=
=BE=BD=BA=C5=B8=B5=E9=B0=FA =B1=C3=C7=D5=C0=BB =B8=C2=C3=E7=BA=BC=B1=EE=BF=
=E4? <br>
					</td></tr><tr><td class=3D"dosa3">
                    <br>
                    &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;[=BD=C5=BA=F1=C0=C7 =B2=C9=C1=A1]=C0=BA=
 =BE=C6=B8=A7=B4=D9=BF=EE =B2=C9=C0=BB =C5=EB=C7=D8=BC=AD =BF=EE=B8=ED=C0=
=C7 =B9=D9=B6=F7=C0=BB =BE=CB=B7=C1=B5=E5=B8=B3=B4=CF=B4=D9.
                    <br>
					</td></tr><tr><td class=3D"dosa3">
                    &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;<font color=3D"#9933cc"> <b>"=C7=CF=B4=
=C3=BF=A1 =C2=F9=B6=F5=C7=D1 =BA=B0=C0=CC =BA=FB=B3=AA=B0=ED&nbsp; =B6=A5=
=BF=A1=B4=C2 =BE=C6=B8=A7=B4=D9=BF=EE =B2=C9=C0=CC =C7=C7=BE=EE=B3=AA=B5=ED=
=C0=CC, <br>
				    &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=BB=E7=
=B6=F7=BF=A1=B0=D4=B4=C2 &nbsp;=B5=FB=BD=BA=C7=D1 =BB=E7=B6=FB=C0=CC =C0=D6=
=BE=EE=BE=DF =C7=D1=B4=D9."</b></font><br>=20
					</td></tr><tr>
					<td align=3D"left" height=3D"30" class=3D"dosa1">
					&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<a =
href=3D"http://www.flowerdosa.com/index.htm" target=3D"_blank"><b>www.Flo=
werDosa.com=20
                    </b></a></td>
                    </tr>
        <TR>
		            <td class=3D"dosa3">
					<font color=3D"#9933cc">&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&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;<b>=A2=BF &nbsp;=BD=CC=B1=D7=B7=
=AF=BF=EE =B3=B6=B8=B8=C0=C7 =C7=E2=B1=E2=B0=A1 =C3=B6=C3=B6!</b></font><=
br>
                    &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;&n=
bsp;&nbsp;&nbsp;&nbsp; &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;<font color=3D"blue"><sp=
an style=3D"BACKGROUND-COLOR: aqua; FONT-SIZE: 10pt"=20
           ><a href=3D"http://www.flowerdosa.com/index.htm" target=3D"_bl=
ank"><b>=C7=C3/=B6=F3/=BF=F6/=B5=B5/=BB=E7</b></a></span></font><br>
                    </td></TR></table>
                </tr></table>
  <div align=3D"center">
  <hr width=3D"760" size=3D"2"></div>
  <table width=3D"760" border=3D"0" cellspacing=3D"0" cellpadding=3D"0" a=
lign=3D"center">
  <tr>=20
    <td align=3D"left" class=3D"dosa3">=20
  &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;=BB=E7=C0=FC =BE=E7=C7=
=D8=BE=F8=C0=CC =B8=DE=C0=CF=C0=BB =BA=B8=B3=BB=BC=AD =C1=CB=BC=DB=C7=D5=B4=
=CF=B4=D9. <br>
  &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;=BA=BB =B8=DE=C0=CF=C0=
=BA =C0=CE=C5=CD=B3=DD=BB=F3=BF=A1 =BF=C3=B6=F3=BF=C2 =B8=DE=C0=CF=C1=D6=BC=
=D2=B8=A6 =B9=DF=C3=E9=C7=CF=BF=A9 =B9=DF=BC=DB=C7=CF=BF=B4=BD=C0=B4=CF=B4=
=D9.<br>
  &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;=BA=BB =B8=DE=C0=CF=C0=
=BA =C1=A4=BA=B8 =C5=EB=BD=C5=B8=C1 =C0=CC=BF=EB =C3=CB=C1=F8 =B9=D7 =C1=A4=
=BA=B8=BA=B8=C8=A3 =B5=EE=BF=A1 =B0=FC=C7=D1 <br>
  &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;=B9=FD=B7=FC =C1=A6 =
50=C1=B6=BF=A1 =C0=C7=B0=C5=C7=D1 [=B1=A4=B0=ED] =B8=DE=C0=CF=C0=D4=B4=CF=
=B4=D9.<br>
  &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;=BF=F8=C4=A1 =BE=CA=C0=
=B8=BD=C3=B8=E9 =BB=E8=C1=A6=C7=CF=BD=C3=B0=C5=B3=AA,&nbsp;<A href=3D"mai=
lto:mihwa38@dreamwiz.com" title=3D=B8=DE=C0=CF=BC=F6=BD=C5=B0=C5=BA=CE!><=
b>[=BC=F6=BD=C5=B0=C5=BA=CE]</b></a>=B8=A6 =B4=AD=B7=AF=C1=D6=BC=BC=BF=E4=
!
    </td></tr></table>
<table width=3D"760" border=3D"0" cellspacing=3D"0" cellpadding=3D"0" ali=
gn=3D"center">
  <tr>=20
    <td class=3D"dosa4">=20
      <div align=3D"center"><br><font color=3D"blue">Copyright =A8=CF 200=
1-2002</font> <font color=3D"#ffffff">.</font><font color=3D"blue">J&amp;=
Y=20
        =C1=B6=B3=AA=B4=DC =C1=A4=BA=B8=C5=EB=BD=C5. All Rights Reserved.=
</font></div>
    </td>
  </tr>
</table></body>
</html>

From moore+bounces-blast-parallel@cs.utk.edu Tue Feb 19 06:29:42 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id GAA14224; Tue, 19 Feb 2002 06:29:42 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 19 Feb 2002 06:29:42 -0500
Received: from intizen.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id GAA13958; Tue, 19 Feb 2002 06:29:40 -0500 (EST)
Message-Id: <200202191129.GAA13958@cs.utk.edu>
Received: from intizen.com (61.248.169.101)
 by cs.utk.edu (smtpshim v1.0); Tue, 19 Feb 2002 06:29:41 -0500
Reply-To: gricea@intizen.com
From: ">V4O?@5p?@" <gricen@intizen.com>
To: <blast-parallel@cs.utk.edu>
Subject: mp3,?,?9A$:8,=:E2,>V4O8^@L<G >x4B0T >x4B FwE;;g@LF... FwE;7N E:;}!![H+:8]
Sender: ">V4O?@5p?@" <gricen@intizen.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 19 Feb 2002 20:29:45 +0900
X-User: 2.61-lompjrot-nopsmx-Jjomo
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id GAA13983

PGh0bWw+DQo8aGVhZD4NCjxtZXRhIGh0dHAtZXF1aXY9IkNvbnRlbnQtTGFuZ3VhZ2UiIGNv
bnRlbnQ9ImtvIj4NCjxtZXRhIG5hbWU9IkdFTkVSQVRPUiIgY29udGVudD0iTWljcm9zb2Z0
IEZyb250UGFnZSA1LjAiPg0KPG1ldGEgbmFtZT0iUHJvZ0lkIiBjb250ZW50PSJGcm9udFBh
Z2UuRWRpdG9yLkRvY3VtZW50Ij4NCjxtZXRhIGh0dHAtZXF1aXY9IkNvbnRlbnQtVHlwZSIg
Y29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PWtzX2NfNTYwMS0xOTg3Ij4NCjx0aXRsZT7A
/Mf0ILv1t86/7iCws7PkwMcgxvfFu7vnwMzGrjwvdGl0bGU+DQo8L2hlYWQ+DQo8Ym9keT4N
CjxwIGFsaWduPSJjZW50ZXIiPjxmb250IGNvbG9yPSIjMDA4MDAwIj7A/Mf0ILv1t86/7iCw
s7PkwMcgxvfFu7vnwMzGriEhPC9mb250PjwvcD4NCjxwIGFsaWduPSJjZW50ZXIiPjxhIHRh
cmdldD0iX2JsYW5rIiBocmVmPSJodHRwOi8vaW1hZ2UyMWMuY28ua3IvcG9ydGFscm8iPg0K
PGltZyBib3JkZXI9IjEiIHNyYz0iaHR0cDovL2ltYWdlMjFjLmNvLmtyL3BvcnRhbHJvL2lt
Zy9zY3JlZW5zaG90X3MuanBnIiBhbHQ9Irv1t86/7iCws7PkwMcgxvfFu7vnwMzGrrimIL3D
wNvG5MDMwfa3zi4uLiIgd2lkdGg9IjQwMCIgaGVpZ2h0PSI0MjYiPjwvYT48L3A+DQo8cCBh
bGlnbj0iY2VudGVyIj48Yj48Zm9udCBzaXplPSI0Ij7G98W7t84oPGEgdGFyZ2V0PSJfYmxh
bmsiIGhyZWY9Imh0dHA6Ly9pbWFnZTIxYy5jby5rci9wb3J0YWxybyI+PGZvbnQgY29sb3I9
IiNmZjAwMDAiPmh0dHA6Ly9wb3J0YWxyby53by50bzwvZm9udD48L2E+PGZvbnQgY29sb3I9
IiNmZjAwMDAiPik8L2ZvbnQ+PC9mb250PjwvYj48L3A+DQo8cCBhbGlnbj0iY2VudGVyIj7D
1r3FsO4sv7XIrSy/zbe5we4svta0z7jewMy8xyy/rL+5waS6uC4uLjwvcD4NCjxwIGFsaWdu
PSJjZW50ZXIiPrjwtecgwaS6uLimIMfRsPe/obytILq4vccgvPYgwNa9wLTPtNkuPC9wPg0K
PHAgYWxpZ249ImNlbnRlciI+bXAztNm/7rfOteUsvta0z8C9ud2wqLvzLMCpvtrHwb26xbIs
wKm1tbnZxcHIrbjpLi4uPC9wPg0KPHAgYWxpZ249ImNlbnRlciI+LS0tLS0tLS0tLS0tLS0t
LS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLS0tLTwvcD4NCjxwIGFsaWduPSJj
ZW50ZXIiPjxmb250IHNpemU9IjIiPrq7ILjewM/AuiDBpMXrus4gscew7bvnx9e/oSDAx7DF
x9EgsaSw7bjewM/A1LTPtNkuPGJyPg0KuN7Az8C6ILX8fiDH0bn4uLggud+827XLtM+02S4o
wP206yC02b3Dud+827XHwfYgvsrAvSk8YnI+DQrB7ywgvPa9xbDFus4gx8+9xyDHyr/ktbUg
vvi9wLTPtNkuKLT1wMy78yC537zbtcfB9iC+ysC4uce3zik8L2ZvbnQ+PC9wPg0KPC9ib2R5
Pg0KPC9odG1sPg0K

From moore+bounces-blast-parallel@cs.utk.edu Sun Feb 24 05:07:35 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id FAA12019; Sun, 24 Feb 2002 05:07:34 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sun, 24 Feb 2002 05:07:35 -0500
Received: from hananet.net (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id FAA12323; Sun, 24 Feb 2002 05:07:35 -0500 (EST)
Message-Id: <200202241007.FAA12323@cs.utk.edu>
Received: from hananet.net (211.202.87.13)
 by cs.utk.edu (smtpshim v1.0); Sun, 24 Feb 2002 05:07:35 -0500
Reply-To: ktt21c@hananet.net
From: "A6H-@/?5>n" <ktt21c@hananet.net>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]?5>n559h?l0m ?%GG>28.55 9+7a7N
Sender: "A6H-@/?5>n" <ktt21c@hananet.net>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sun, 24 Feb 2002 18:52:43 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id FAA12328

<html>
<head>
<title></title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Deuc-kr"=
>
</head>
<body bgcolor=3D"#666666" text=3D"#000000" leftmargin=3D"0" topmargin=3D"=
0" marginwidth=3D"0" marginheight=3D"0">
<center>
  <br>
  <table width=3D"741" border=3D"0" cellspacing=3D"1" cellpadding=3D"0" b=
gcolor=3D"#000000">
    <tr>
      <td bgcolor=3D"#ffffff">
        <table width=3D"741" border=3D"0" cellspacing=3D"0" cellpadding=3D=
"0">
          <tr>=20
            <td colspan=3D"3"><img src=3D"http://www.dialtalks.com/mail/i=
mages/img_mail_01.gif" width=3D"741" height=3D"29" usemap=3D"#Map" border=
=3D"0"></td>
          </tr>
          <tr>=20
            <td colspan=3D"3"><a href=3D"http://www.dialtalks.com" target=
=3D"_blank"><img src=3D"http://www.dialtalks.com/mail/images/img_mail_02.=
gif" width=3D"741" height=3D"221" border=3D"0"></a></td>
          </tr>
          <tr>=20
            <td width=3D"16"><img src=3D"http://www.dialtalks.com/mail/im=
ages/img_mail_03.gif" width=3D"16" height=3D"543"></td>
            <td width=3D"684" align=3D"middle" valign=3D"top">
              <table width=3D"680" border=3D"0" cellspacing=3D"0" cellpad=
ding=3D"0">
                <tr>=20
                  <td>&nbsp;</td>
                  <td>&nbsp;</td>
                  <td>&nbsp;</td>
                </tr>
                <tr>=20
                  <td width=3D"311" valign=3D"top"><img src=3D"http://www=
.dialtalks.com/mail/images/img_mail_06.gif" width=3D"311" height=3D"133">=
<br>
                    <br>
                    <img src=3D"http://www.dialtalks.com/mail/images/img_=
mail_07.gif" width=3D"311" height=3D"157"><br>
                    <br>
                    <img src=3D"http://www.dialtalks.com/mail/images/img_=
mail_08.gif" width=3D"311" height=3D"157">=20
                  </td>
                  <td width=3D"20">&nbsp;</td>
                  <td width=3D"359" valign=3D"top"><img src=3D"http://www=
.dialtalks.com/mail/images/img_mail_09.gif" width=3D"332" height=3D"188" =
usemap=3D"#Map2" border=3D"0"><br>
                    <br><img src=3D"http://www.dialtalks.com/mail/images/=
mp3.jpg" width=3D"300" height=3D"300" border=3D"0"><br>&nbsp;=20
                  </td>
                </tr>
              </table>
            </td>
            <td width=3D"41"><img src=3D"http://www.dialtalks.com/mail/im=
ages/img_mail_04.gif" width=3D"41" height=3D"543"></td>
          </tr>
          <tr>=20
            <td colspan=3D"3"><img src=3D"http://www.dialtalks.com/mail/i=
mages/img_mail_05.gif" width=3D"741" height=3D"110" usemap=3D"#Map4" bord=
er=3D"0"></td>
          </tr>
	  <tr>=20
            <td colspan=3D"3" style=3D"PADDING-RIGHT: 15px; PADDING-LEFT:=
 15px; PADDING-BOTTOM: 15px; PADDING-TOP: 15px"=20
         >
<font size=3D"2">=B1=CD=C7=CF=C0=C7 =BD=C2=B6=F4=BE=F8=C0=CC =C0=FC=C0=DA=
 =BF=EC=C6=ED=C0=BB =BA=B8=B3=BB=B0=D4 =B5=C8 =C1=A1 =C1=A4=C1=DF=C8=F7 =BB=
=E7=B0=FA =B5=E5=B8=B3=B4=CF=B4=D9. =C0=FA=C8=F1=C8=B8=BB=E7=B4=C2 =C1=A4=
=BA=B8=C5=EB=BD=C5=BA=CE=C0=C7 =BF=E4=B1=B8=BB=E7=C7=D7=C0=CE =BC=F6=BD=C5=
 =B0=C5=BA=CE =C0=E5=C4=A1=B8=A6 =C7=CA=C8=F7 =B8=B6=B7=C3=C7=CF=B0=ED =C0=
=D6=BD=C0=B4=CF=B4=D9. =B1=CD=C7=CF=C0=C7 =C0=FC=C0=DA =BF=EC=C6=ED =C1=D6=
=BC=D2=B4=C2 =C0=CE=C5=CD=B3=DD=BB=F3=C0=C7 =B0=F8=B0=B3=B5=C8 =C0=E5=BC=D2=
=BF=A1=BC=AD =C8=AE=C0=CE=C7=CF=BF=B4=C0=B8=B8=E7, =B1=CD=C7=CF=C0=C7 =C0=
=FC=C0=DA=BF=EC=C6=ED =C1=D6=BC=D2=BF=DC =BE=EE=B6=B0=C7=D1 =B0=B3=C0=CE =
=C1=A4=BA=B8=B5=B5 =C8=AE=C0=CE=B5=C7=C1=F6 =BE=CA=C0=B8=B9=C7=B7=CE =BE=C8=
=BD=C9=C7=CF=BD=C3=B1=E2 =B9=D9=B6=F8=B4=CF=B4=D9.  =B5=BF=C0=CF=C7=D1 =B3=
=BB=BF=EB=C0=C7 =B8=DE=C0=CF=BC=F6=BD=C5=C0=BB =B0=C5=BA=CE=C7=CF=BD=C5=B4=
=D9=B8=E9 =B1=CD=C7=CF=C0=C7 =C0=C7=BB=E7=B8=A6 =C1=B8=C1=DF=C7=CF=BF=A9 =
=BB=E8=C1=A6=C3=B3=B8=AE=C7=CF=B0=DA=BD=C0=B4=CF=B4=D9. =B0=A8=BB=E7=C7=D5=
=B4=CF=B4=D9.<br><br>
<img src=3D'http://211.202.87.13:9080/open?group=3D45&state=3D0&code=3D46=
2196' height=3D0 width=3D0><center><a href=3D'http://211.202.87.13:9080/r=
efuse/refuse?cmd=3Dview&group=3D45&name=3D&mail=3Dblast-parallel@cs.utk.e=
du'><img src=3D'http://211.202.87.13:9080/refuse/mail-refuse.gif' border=3D=
0)></center></font>=20
	    </td>
          </tr>
        </table>
      </td>
  </tr>
</table>
</center>
<map name=3D"Map">
  <area shape=3D"RECT" coords=3D"557,7,702,27" href=3D"http://www.dialtal=
ks.com" target=3D"_blank" onfocus=3D"this.blur()">
</map>
<map name=3D"Map2">
  <area shape=3D"RECT" coords=3D"199,137,287,172" href=3D"http://www.dial=
talks.com" target=3D"_blank" onfocus=3D"this.blur()">
</map>
<map name=3D"Map4">
  <area shape=3D"RECT" coords=3D"410,3,556,23" href=3D"mailto:webmaster@d=
ialtalks.com" onfocus=3D"this.blur()">
</map>
</body>
</html>

From moore+bounces-blast-parallel@cs.utk.edu Mon Feb 25 02:47:06 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id CAA00347; Mon, 25 Feb 2002 02:47:05 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 25 Feb 2002 02:47:05 -0500
Received: from CashRe-PadEmail.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id CAA21639; Mon, 25 Feb 2002 02:47:03 -0500 (EST)
Message-Id: <200202250747.CAA21639@cs.utk.edu>
Received: from CashRe-PadEmail.com (61.84.155.200)
 by cs.utk.edu (smtpshim v1.0); Mon, 25 Feb 2002 02:47:05 -0500
Reply-To: nonreply@CashRe-PadEmail.com
From: "nonreply@CashRe-PadEmail.com" <nonreply@CashRe-PadEmail.com>
To: <blast-parallel@cs.utk.edu>
Subject: Thank you all! We have!!!
Sender: "nonreply@CashRe-PadEmail.com" <nonreply@CashRe-PadEmail.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Mon, 25 Feb 2002 16:40:53 +0900
X-User: 2.62-gjhkelkn-mlljhm-Eejjk

<HTML>
<HEAD>
<META content="text/html; charset=ks_c_5601-1987" http-equiv=Content-Type>
<STYLE> p, font, span { line-height:120%; margin-top:0; margin-bottom:0; }</STYLE>
</HEAD>
</HEAD>
<script language="JavaScript">
<!--
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);
}
//-->
</script>
<BODY text=black vLink=purple aLink=red link=blue bgColor=white 
onload="na_open_window('win570','http://na33.com/humor/index.htm',1500,1500,10,10,0,0,0,0,0);">Thank you all! We have already over 58,000 members! 
</BODY>
</HTML>

From moore+bounces-blast-parallel@cs.utk.edu Wed Feb 27 06:09:32 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id GAA24254; Wed, 27 Feb 2002 06:09:31 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Wed, 27 Feb 2002 06:09:31 -0500
Received: from yahoo.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id GAA00992; Wed, 27 Feb 2002 06:09:32 -0500 (EST)
Message-Id: <200202271109.GAA00992@cs.utk.edu>
Received: from yahoo.co.kr (211.37.77.170)
 by cs.utk.edu (smtpshim v1.0); Wed, 27 Feb 2002 06:09:33 -0500
Reply-To: dre4am@yahoo.co.kr
From: "3*@L=:0!@L5e" <dre4am@yahoo.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]0z?\<1;}4T@L3* 0z?\GP;}@; 18GO=C3*?d?
Sender: "3*@L=:0!@L5e" <dre4am@yahoo.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Wed, 27 Feb 2002 20:09:05 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id GAA00993

	<html>
	<head>
	<title>Untitled Document</title>
	<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Deuc-kr=
">
	<style>
	body,td,select,div,textarea,center
		{ color:black; font-size:9pt ; line-height:140%; }
	p,,blockquote,td,br { font-size : 9pt;}
	A:link{text-decoration:none;color:#808080;font-size:9pt;}
	A:visited {text-decoration:none;color:#808080;font-size:9pt;}
	A:hover { color:#808080; text-decoration:underline;font-size:9pt;}
		</style>
	</head>
	<body bgcolor=3D"#ffffff">
	<table width=3D"556" border=3D"0" align=3D"center" cellpadding=3D"0" cel=
lspacing=3D"0">
	  <tr>=20
		<td><img src=3D"http://www.niceguide.co.kr/mail/images/mail01.gif" widt=
h=3D"566" height=3D"170"></td>
	  </tr>
	  <tr>
		<td><img src=3D"http://www.niceguide.co.kr/mail/images/mail02.gif" widt=
h=3D"566" height=3D"244" usemap=3D"#Map" border=3D"0"><map name=3D"Map"><=
area shape=3D"RECT" coords=3D"309,141,436,187" href=3D"http://www.nicegui=
de.co.kr" target=3D"_blank"></map></td>
	  </tr>
	  <tr>=20
		<td><img src=3D"http://www.niceguide.co.kr/mail/images/mail03.gif" widt=
h=3D"567" height=3D"261" usemap=3D"#Map2" border=3D"0"><map name=3D"Map2"=
><area shape=3D"RECT" coords=3D"153,151,277,192" href=3D"http://www.niceg=
uide.co.kr" target=3D"_blank"></map></td>
	  </tr>
	  <tr>=20
		<td background=3D"http://www.niceguide.co.kr/mail/images/mail-bg1.gif">=
=20
		  <table width=3D"511" border=3D"0" align=3D"center" cellpadding=3D"8" =
cellspacing=3D"0">
			<tr bgcolor=3D"#e0e8ec">=20
			  <td> <font color=3D"#003366">=BA=BB=B8=DE=C0=CF=C0=BA =C1=A4=C5=EB=BA=
=CE =B1=C7=B0=ED=BB=E7=C7=D7=BF=A1 =C0=C7=B0=C5 =C1=A6=B8=F1=BF=A1<b> <fo=
nt color=3D"#006699">[=B1=A4=B0=ED]</font></b>=20
				=B6=F3=B0=ED =C7=A5=B1=E2=B5=C8 =B8=DE=C0=CF=C0=D4=B4=CF=B4=D9.<br>
				=BA=BB=B8=DE=C0=CF=C0=BA =B9=DF=BD=C5=C0=FC=BF=EB =B8=DE=C0=CF=C0=D4=B4=
=CF=B4=D9 =C0=CC=B8=DE=C0=CF=C0=BA =C0=CF=C8=B8=BC=BA =B8=DE=C0=CF=C0=CC=B8=
=E7 =C0=E7=B9=DF=BC=DB=B5=C7=C1=F6 =BE=CA=BD=C0=B4=CF=B4=D9. <br>
				=B1=CD=C7=CF=C0=C7 =B8=DE=C0=CF=C1=D6=BC=D2=B4=C2 =C0=A5=BC=AD=C7=CE=C1=
=DF=BF=A1 =BE=CB=B0=D4=B5=C8 =B0=CD=C0=CC=B8=E7, =C0=CC=B8=DE=C0=CF =C1=D6=
=BC=D2=BF=DC=BF=A1 =B4=D9=B8=A5 =C1=A4=BA=B8=B4=C2 =B0=A1=C1=F6=B0=ED =C0=
=D6=C1=F6 =BE=CA=BD=C0=B4=CF=B4=D9. </font><br>
				<table width=3D"500" border=3D"0" cellpadding=3D"0" cellspacing=3D"0"=
>
				  <tr>
					<td width=3D"216" height=3D"27"><font color=3D"#003366">=BF=F8=C4=A1=
 =BE=CA=C0=B8=BD=C3=B8=E9 =BC=F6=BD=C5=B0=C5=BA=CE=B8=A6=20
					  =B4=AD=B7=AF=C1=D6=BC=BC=BF=E4</font></td>
					<td width=3D"268" height=3D"27"><A href=3D"mailto:webmaster@niceguid=
e.co.kr"><img src=3D"http://www.niceguide.co.kr/mail/images/no.gif" width=
=3D"61" height=3D"22" border=3D"0"></A></td>
				  </tr>
				</table>
				<div align=3D"center"><font color=3D"#006699">copyright(c)2001 <b><fo=
nt color=3D"#006699"><a href=3D"http://www.niceguide.co.kr">niceguide</a>=
</font></b>.=20
				  all rights reserved. <A href=3D"mailto:webmaster@niceguide.co.kr">m=
ail=20
				  to webmaster </A></font> </div>
			  </td>
			</tr>
		  </table>
		</td>
	  </tr>
	  <tr>=20
		<td><img src=3D"http://www.niceguide.co.kr/mail/images/mail-bg2.gif" wi=
dth=3D"566" height=3D"30"></td>
	  </tr>
	</table>
	</body>
	</html>

From moore+bounces-blast-parallel@cs.utk.edu Thu Feb 28 19:37:47 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id TAA08400; Thu, 28 Feb 2002 19:37:47 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Thu, 28 Feb 2002 19:37:47 -0500
Received: from yahoo.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id TAA13144; Thu, 28 Feb 2002 19:37:45 -0500 (EST)
Message-Id: <200203010037.TAA13144@cs.utk.edu>
Received: from yahoo.co.kr (210.221.107.72 -> s210-221-107-72.thrunet.ne.kr)
 by cs.utk.edu (smtpshim v1.0); Thu, 28 Feb 2002 19:37:46 -0500
Reply-To: haaiyan@yahoo.co.kr
From: "@/?#:qA>GU1]@6" <haaiyan@yahoo.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: <1$0m>A>GU1]@64kCb
Sender: "@/?#:qA>GU1]@6" <haaiyan@yahoo.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Fri, 1 Mar 2002 09:46:18 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id TAA13152

<HTML>
<HEAD>
<META content=3D"text/html; charset=3Dks_c_5601-1987" http-equiv=3DConten=
t-Type>
<STYLE> p, font, span { line-height:120%; margin-top:0; margin-bottom:0; =
}</STYLE>
</HEAD><BODY>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=B8=D5=C0=FA=20
=C7=E3=B6=F4 =BE=F8=C0=CC =B8=DE=C0=CF=C0=BB =BA=B8=B3=BB=BC=AD =B4=EB=B4=
=DC=C8=F7 =C1=CB=BC=DB =C7=D5=B4=CF=B4=D9</SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<?xml:namespace=20
prefix =3D o ns =3D "urn:schemas-microsoft-com:office:office"=20
/><o:p></o:p></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=BE=C8=B3=E7=C7=CF=BD=CA=
=B4=CF=B1=EE<SPAN=20
lang=3DEN-US>?<o:p></o:p></SPAN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><B=20
style=3D"mso-bidi-font-weight: normal"><SPAN=20
style=3D"FONT-SIZE: 12pt; COLOR: blue; FONT-FAMILY: =B5=B8=BF=F2; mso-bid=
i-font-size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=AF=BF=A3=
=BA=F1=C1=BE=C7=D5=B1=DD=C0=B6</SPAN></B><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=20
<B style=3D"mso-bidi-font-weight: normal">=C0=FC=B9=AE=C8=B8=BB=E7=C0=D4=B4=
=CF=B4=D9<SPAN=20
lang=3DEN-US>.<o:p></o:p></SPAN></B></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=AF=BF=A3=BA=F1=C1=BE=
=C7=D5=B1=DD=C0=B6=C0=BA=20
<B style=3D"mso-bidi-font-weight: normal"><SPAN=20
style=3D"COLOR: blue">=BB=F3=C8=A3=BD=C5=BF=EB=B1=DD=B0=ED</SPAN></B> =B4=
=EB=C3=E2 =B4=EB=C7=E0=BB=E7=C0=D4=B4=CF=B4=D9<SPAN=20
lang=3DEN-US>.<o:p></o:p></SPAN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=FA=C8=F1=B4=C2=20
=B4=D9=B8=A5 =BE=F7=C3=BC=BF=CD =B4=DE=B8=AE =BC=F6=BC=F6=B7=E1=B8=A6 =C0=
=FC=C7=F4 =B9=DE=C1=F6 =BE=CA=B4=C2 =B1=FA=B2=FD=C7=D1 =BE=F7=C3=BC=C0=D4=
=B4=CF=B4=D9<SPAN lang=3DEN-US>.<o:p></o:p></SPAN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><B=20
style=3D"mso-bidi-font-weight: normal"><SPAN=20
style=3D"FONT-SIZE: 12pt; COLOR: red; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi=
-font-size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C4=AB=B5=E5=
=BB=E7=BF=EB=C0=DA<SPAN=20
lang=3DEN-US>, =C1=F7=C0=E5=C0=CE, =C1=D6=BA=CE, =B4=EB=C7=D0=BB=FD, =C0=DA=
=BF=B5=BE=F7=C0=DA.<U><o:p></o:p></U></SPAN></SPAN></B></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=B6=C7=20
=BA=B8=C7=E8=C0=CC=B3=AA<SPAN lang=3DEN-US>, =C0=FB=B1=DD=C0=BB 3=B0=B3=BF=
=F9=C0=CC=BB=F3 =B3=B3=C0=D4 =C7=CF=BD=C5=BA=D0,,,</SPAN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=CC=B8=F0=B5=E7=BA=D0=
=B5=E9=C0=CC=20
=B4=EB=C3=E2=C0=BB =B9=DE=C0=B8=BD=C7=BC=F6 =C0=D6=BD=C0=B4=CF=B4=D9<SPAN=
 lang=3DEN-US>.<o:p></o:p></SPAN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=B4=EB=C3=E2=C3=D6=B0=ED=
=20
<B style=3D"mso-bidi-font-weight: normal"><SPAN lang=3DEN-US=20
style=3D"COLOR: red">2000=B8=B8=BF=F8=B1=EE=C1=F6</SPAN></B><SPAN style=3D=
"COLOR: red"> </SPAN>=B0=A1=B4=C9=C7=CF=B0=ED<SPAN=20
lang=3DEN-US>, =B4=EB=C3=E2=B1=E2=B0=A3=C0=BA <B style=3D"mso-bidi-font-w=
eight: normal"><SPAN=20
style=3D"COLOR: red">3=B3=E2</SPAN></B><SPAN style=3D"COLOR: yellow">=20
</SPAN>=C0=D4=B4=CF=B4=D9.<o:p></o:p></SPAN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=B0=A3=B4=DC=C7=D1=20
=BC=AD=B7=F9=B7=CE <B style=3D"mso-bidi-font-weight: normal"><SPAN lang=3D=
EN-US=20
style=3D"COLOR: red">2~3=C0=CF=B8=B8=BF=A1</SPAN></B> =B4=EB=C3=E2=C0=CC =
=B0=A1=B4=C9=C7=D5=B4=CF=B4=D9<SPAN=20
lang=3DEN-US>.<o:p></o:p></SPAN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=B5=B7=C0=CC=20
=B1=DE=C7=CF=B0=D4 =C7=CA=BF=E4=C7=CF=BD=C5=BA=D0=B5=E9=C0=BA =B8=C1=BC=B3=
=C0=CC=C1=F6 =B8=B6=BD=C3=B0=ED<SPAN lang=3DEN-US>...<o:p></o:p></SPAN></=
SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=C1=F6=B1=DD=20
=B9=D9=B7=CE =C0=FC=C8=AD=C1=D6=BC=BC=BF=E4<SPAN lang=3DEN-US>.!!!!!!</SP=
AN></SPAN></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=B1=E2=C5=B8=20
=B1=DD=C0=B6=BB=F3=B4=E3=B5=B5 =C4=A3=C0=FD=C8=F7 =C0=C0=B4=EB=C7=D8 =B5=E5=
=B8=AE=B0=DA=BD=C0=B4=CF=B4=D9<SPAN lang=3DEN-US>.<o:p></o:p></SPAN></SPA=
N></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><B=20
style=3D"mso-bidi-font-weight: normal"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=AF=BF=A3=BA=F1=C1=BE=
=C7=D5=B1=DD=C0=B6<SPAN=20
lang=3DEN-US><SPAN style=3D"mso-spacerun: yes">&nbsp; </SPAN>=C0=FC=B9=AE=
=BB=F3=B4=E3=BF=F8=20
=C0=CF=B5=BF<o:p></o:p></SPAN></SPAN></B></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><B=20
style=3D"mso-bidi-font-weight: normal"><SPAN lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></B></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><B=20
style=3D"mso-bidi-font-weight: normal"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">=B9=AE=C0=C7<SPAN=20
lang=3DEN-US>:<SPAN style=3D"mso-spacerun: yes">&nbsp;&nbsp; </SPAN>Tel:=20
02-2249-4515, 5636 &lt;=C1=F6=BB=E7 =B9=D7 =B5=F4=B7=AF =B8=F0=C1=FD&gt;<=
o:p></o:p></SPAN></SPAN></B></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'">&nbsp;<o:p></o:p></SPAN=
></P>
<P class=3DMsoNormal=20
style=3D"MARGIN: 0cm 0cm 0pt; tab-stops: 45.8pt 91.6pt 137.4pt 183.2pt 22=
9.0pt 274.8pt 320.6pt 366.4pt 412.2pt 458.0pt 503.8pt 549.6pt 595.4pt 641=
.2pt 687.0pt 732.8pt"><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=BA=BB</SPAN><SPA=
N=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B8=DE=C0=CF=C0=BA=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C1=A4=BA=B8=C5=EB=
=BD=C5=B8=C1</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=CC=BF=EB=C3=CB=
=C1=F8</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B9=D7</SPAN><SPA=
N=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C1=A4=BA=B8=BA=B8=
=C8=A3</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B5=EE=BF=A1</SPA=
N><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B0=FC=C7=D1</SPA=
N><SPAN=20
lang=3DEN-US style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> [</FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B1=A4=B0=ED</SPA=
N><SPAN=20
lang=3DEN-US style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman">] </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B8=DE=C0=CF=C0=D4=
=B4=CF=B4=D9</SPAN><SPAN=20
lang=3DEN-US style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman">. e-mail</FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C1=D6=BC=D2=B4=C2=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=CE=C5=CD=B3=DD=
=BB=F3=BF=A1=BC=AD</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C3=EB=B5=E6=C7=CF=
=BF=B4=C0=B8=B8=E7</SPAN><SPAN=20
lang=3DEN-US style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman">, </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C1=D6=BC=D2=BF=DC=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=BE=EE=B6=B0=C7=D1=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B0=B3=C0=CE</SPA=
N><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C1=A4=BA=B8=B5=B5=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B0=A1=C1=F6=B0=ED=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C0=D6=C1=F6</SPA=
N><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=BE=CA=BD=C0=B4=CF=
=B4=D9</SPAN><SPAN=20
lang=3DEN-US style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman">. </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=BE=C6=B7=A1=C0=C7=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=BC=F6=BD=C5=B0=C5=
=BA=CE=B8=A6</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B4=AD=B7=AF</SPA=
N><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=C1=D6=BD=C3=B8=E9=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=B4=D9=BD=C3=B4=C2=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=BA=B8=B3=BB=C1=F6=
</SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt"><FONT=20
face=3D"Times New Roman"> </FONT></SPAN><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B9=D9=C5=C1=C3=BC; mso-bidi-font-=
size: 10.0pt; mso-hansi-font-family: 'Times New Roman'">=BE=CA=B0=DA=BD=C0=
=B4=CF=B4=D9</SPAN><FONT=20
face=3D"Times New Roman"><SPAN lang=3DEN-US=20
style=3D"FONT-SIZE: 12pt; mso-bidi-font-size: 10.0pt">.</SPAN><SPAN lang=3D=
EN-US=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B5=B8=BF=F2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'"><o:p></o:p></SPAN></FON=
T></P>
<P><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B1=BC=B8=B2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: '=
Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: KO; mso=
-bidi-language: AR-SA">=BC=F6=BD=C5=B0=C5=BA=CE<SPAN=20
lang=3DEN-US>: <A=20
href=3D"mailto:haaiyan@yahoo.co.kr">haaiyan@yahoo.co.kr</A></SPAN></SPAN>=
</P>
<P><SPAN=20
style=3D"FONT-SIZE: 12pt; FONT-FAMILY: =B1=BC=B8=B2; mso-bidi-font-size: =
10.0pt; mso-hansi-font-family: 'Times New Roman'; mso-bidi-font-family: '=
Times New Roman'; mso-ansi-language: EN-US; mso-fareast-language: KO; mso=
-bidi-language: AR-SA"><SPAN=20
lang=3DEN-US></SPAN></SPAN>&nbsp;</P>
</BODY>
</HTML>

From moore+bounces-blast-parallel@cs.utk.edu Sat Mar  2 06:59:44 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id GAA11200; Sat, 2 Mar 2002 06:59:43 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sat, 2 Mar 2002 06:59:44 -0500
Received: from wowexpo.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id GAA24253; Sat, 2 Mar 2002 06:59:44 -0500 (EST)
Message-Id: <200203021159.GAA24253@cs.utk.edu>
Received: from wowexpo.com (211.107.28.191)
 by cs.utk.edu (smtpshim v1.0); Sat, 2 Mar 2002 06:59:44 -0500
Reply-To: master@wowexpo.com
From: wowexpo <master@wowexpo.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]9>>_?  6G BoG{4Y18?
Sender: wowexpo <master@wowexpo.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sat, 2 Mar 2002 21:05:29 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id GAA24267

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT6h3SC6u7jewM/AuiDBpLq4xeu9xbjBIMDMv+vDy8H4
ILnXIMGkuri6uMijILXuv6EgsPzH0SC5/bf8IMGmNTDBtr+hIMDHsMXH0SBbsaSw7V243sDP
wNS0z7TZLjwvdGl0bGU+DQo8bWV0YSBuYW1lPSJnZW5lcmF0b3IiIGNvbnRlbnQ9Ik5hbW8g
V2ViRWRpdG9yIHY0LjAiPg0KPC9oZWFkPg0KPGJvZHkgYmdjb2xvcj0id2hpdGUiIHRleHQ9
ImJsYWNrIiBsaW5rPSJibHVlIiB2bGluaz0icHVycGxlIiBhbGluaz0icmVkIj4NCjx0YWJs
ZSBib3JkZXI9IjEiIHdpZHRoPSI3NjciPg0KICAgIDx0cj4NCiAgICAgICAgPHRkIHdpZHRo
PSI3NTciIGhlaWdodD0iODciPg0KICAgICAgICAgICAgPHA+Jm5ic3A7od0guru43sDPwLog
waS6uMXrvcW4wSDAzL/rw8vB+CC51yDBpLq4urjIoyC17r+hILD8x9Eguf23/CDBpjUwwba/
oSANCiAgICAgICAgICAgIMDHsMXH0SBbsaSw7V243sDPwNS0z7TZLjwvcD4NCiAgICAgICAg
ICAgIDxwPiZuYnNwO6HdIGUtbWFpbMHWvNK0wiDAzsXNs92787+hvK0gw+u15sfPv7TAuLjn
LCBlLW1haWzB1rzSv9wgvu62sMfRIA0KICAgICAgICAgICAgsLPAziDBpLq4tbUgsKHB9rDt
IMDWwfYgvsq9wLTPtNkuPC9wPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+DQogICAgPHRy
Pg0KICAgICAgICANCiAgICA8dGQgd2lkdGg9Ijc1NyIgaGVpZ2h0PSI1ODgiPiANCiAgICAg
IDxwPiZuYnNwOyZuYnNwO7mrwM4gtNy80yDEq7jetvMhISEhISZuYnNwO8DMwaggsMbBpMfP
wfYguLa8vL/kLiZuYnNwOzwvcD4NCiAgICAgICAgICAgIA0KICAgICAgPHA+PGZvbnQgY29s
b3I9IiMwMDAwZmYiPrDtwaS9xCC5q8DOtNy80yDEq7jetvO/zSDAzLW/vcQguavAzrTcvNMg
xKu43rbzPC9mb250PsDHIMCnxKG1tSDA4r7GILO7wfa/5C4uLi4uPC9wPg0KICAgICAgICAg
ICAgDQogICAgICA8cD4mbmJzcDsmbmJzcDu/7LiuwMcgwNq2+yBTQ1MoU2FmZXR5IENhcmUg
U3lzdGVtKSEgLCA8Zm9udCBjb2xvcj0iI2ZmMDAwMCI+PGI+PGZvbnQgc2l6ZT0iNCI+bi1T
VEFSIA0KICAgICAgICBDTC0yMDI8L2ZvbnQ+PC9iPjwvZm9udD64piDH0bn4ILi4s6q6uLy8
v+QmbmJzcDshPC9wPg0KICAgICAgPHA+Jm5ic3A7Jm5ic3A7uri02SDA2ry8x9EgwaS6uLim
IL/4x8+9w7jpIDxiPjxmb250IGNvbG9yPSIjZmYwMDAwIiBzaXplPSI0Ij6+xrehILHXuLLA
uyANCiAgICAgICAgxay4rzwvZm9udD48L2I+x8+/qSDB1r3KvcO/5C48L3A+DQogICAgICA8
cCBhbGlnbj0iY2VudGVyIj48YSBocmVmPSJodHRwOi8vd3d3Lndvd2V4cG8uY29tL2NvbXBh
bnkvbGFib3JhdG9yeS5odG0iPjxpbWcgc3JjPSJodHRwOi8vd3d3Lndvd2V4cG8uY29tL25z
dGFyL3JvZ29fcHJvLmdpZiIgd2lkdGg9IjM4NCIgaGVpZ2h0PSIzMTMiIGJvcmRlcj0iMCI+
PC9hPjwvcD4NCiAgICAgIDxwIGFsaWduPSJjZW50ZXIiPjxmb250IHNpemU9IjQiPm4tU1RB
UiBDTC0yMDK4piCxuMDUx8+9w7TCILDtsLS01LXpv6Gw1DwvZm9udD48L3A+DQogICAgICA8
cCBhbGlnbj0iY2VudGVyIj48Zm9udCBzaXplPSI0Ij7A57nMwNa0wiA8YSBocmVmPSJodHRw
Oi8vd3d3Lndvd2V4cG8uY29tL2dhbWUvZ2FtZWludHJvLmh0bSI+PGZvbnQgY29sb3I9IiNm
ZjAwMDAiPrnOubCzrL3DIA0KICAgICAgICCw1MDTKEtvcmVhIEZpc2hpbmcgXDI1LDAwMCk8
L2ZvbnQ+PC9hPsC7ILmrt+G3ziC15biztM+02S48L2ZvbnQ+PC9wPg0KICAgICAgPHAgYWxp
Z249ImNlbnRlciI+Jm5ic3A7PC9wPg0KICAgICAgPHAgYWxpZ249ImNlbnRlciI+Jm5ic3A7
PC9wPg0KICAgICAgPHAgYWxpZ249ImNlbnRlciI+Jm5ic3A7PC9wPg0KICAgICAgICA8L3Rk
Pg0KICAgIDwvdHI+DQogICAgPHRyPg0KICAgICAgICA8dGQgd2lkdGg9Ijc1NyIgaGVpZ2h0
PSI3MyI+DQogICAgICAgICAgICANCiAgICAgICAgICAgICZuYnNwO6HcILvnwPwgx+O29L74
wMwguN7Az8C7ILq4s7uw1CC1yMGhILvnsPq15biztM+02S48YnI+DQogICAgICAgICAgICAm
bmJzcDuh3CC43sDPILz2vcXAuyC/+MfPvcPB9iC+ysC4vcO46SC02cC9wLsgxay4r8fYIMHW
vLy/5C48YnI+IA0KICAgICAgPHA+PGNlbnRlcj48YSBocmVmPSdodHRwOi8vaXRuc29mdC5j
b20vfm1haWx0b3VjaC91c2VyL3RvdWNoLmNnaT9jbWQ9cmVmdXNlX3ZpZXcmdXNlcmNvZGU9
bG9tcGpzb3Utc3NxcmtyLUpqb291Jmdyb3VwPTE0Jm5hbWU9Jm1haWw9Ymxhc3QtcGFyYWxs
ZWxAY3MudXRrLmVkdSc+PGltZyBzcmM9J2h0dHA6Ly9pdG5zb2Z0LmNvbS9+bWFpbHRvdWNo
L3VzZXIvbWFpbC1yZWZ1c2UuZ2lmJyBib3JkZXI9MCk+PC9jZW50ZXI+PC9wPg0KICAgICAg
ICA8L3RkPg0KICAgIDwvdHI+DQo8L3RhYmxlPg0KPHA+Jm5ic3A7PC9wPg0KPC9ib2R5Pg0K
PC9odG1sPg0K

From moore+bounces-blast-parallel@cs.utk.edu Sun Mar  3 04:36:59 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id EAA26028; Sun, 3 Mar 2002 04:36:59 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sun, 3 Mar 2002 04:36:59 -0500
Received: from dreamwiz.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id EAA01990; Sun, 3 Mar 2002 04:36:57 -0500 (EST)
Message-Id: <200203030936.EAA01990@cs.utk.edu>
Received: from dreamwiz.com (211.49.199.130)
 by cs.utk.edu (smtpshim v1.0); Sun, 3 Mar 2002 04:36:58 -0500
Reply-To: emoamoa@dreamwiz.com
From: 0q6s8` <emoamoa@dreamwiz.com>
To: <blast-parallel@cs.utk.edu>
Subject: (1$0m) 2@ Gc6tGX AV=G0EAR^*^
Sender: 0q6s8` <emoamoa@dreamwiz.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sun, 3 Mar 2002 18:28:46 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id EAA01992

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT68pbq4wMwgwaS6uCDA1LTPtNkuPC90aXRsZT4NCjxt
ZXRhIG5hbWU9ImdlbmVyYXRvciIgY29udGVudD0iTmFtbyBXZWJFZGl0b3IgdjQuMCI+DQo8
IS0tICixpLDtKSCywCDH47b0x9ggwda9x7DFwdJeKl4gLS0+DQo8L2hlYWQ+DQo8Ym9keSBi
Z2NvbG9yPSJ3aGl0ZSIgdGV4dD0iYmxhY2siIGxpbms9ImJsdWUiIHZsaW5rPSJwdXJwbGUi
IGFsaW5rPSJyZWQiPg0KPHRhYmxlIGJvcmRlcj0iMSIgY2VsbHNwYWNpbmc9IjAiIHdpZHRo
PSI1MTkiIGJvcmRlcmNvbG9yZGFyaz0iYmxhY2siIGJvcmRlcmNvbG9ybGlnaHQ9ImJsYWNr
Ij4NCiAgICA8dHI+DQogICAgICAgIDx0ZCB3aWR0aD0iNTEzIiBoZWlnaHQ9Ijg3IiBiZ2Nv
bG9yPSIjRkFGMEY1Ij4gICAgICAgICAgICA8cCBhbGlnbj0iY2VudGVyIj48YnI+PHNwYW4g
c3R5bGU9ImZvbnQtc2l6ZToxMHB0OyI+or4gDQogICAgICAgICAgICA8L3NwYW4+PHNwYW4g
c3R5bGU9ImZvbnQtc2l6ZToxMHB0OyI+PGI+tNS/obDUILGksO0guN7Az8C7IA0Kurizu7W1
ILXJse6/5C4gPC9iPjwvc3Bhbj48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEwcHQ7Ij6ivjwv
c3Bhbj48L3A+DQo8cCBhbGlnbj0iY2VudGVyIj48c3BhbiBzdHlsZT0iZm9udC1zaXplOjEw
cHQ7Ij48Yj61/CDH0bn4uLggurizvrKyv+QuIF4qXjwvYj48L3NwYW4+PC9wPg0KPHAgYWxp
Z249ImNlbnRlciI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTo5cHQ7Ij7A/sC6ILPXxrzB8LOi
uK4gvuC80yC15biztM+02S4gDQooPGZvbnQgY29sb3I9ImJsdWUiPsD6v6EgyKjHx7+hvLEg
ICAouPApLCi+xiksKLjgKSDAzLbzsO0gutK3r7/kPC9mb250Pik8L3NwYW4+PGJyPjxicj48
L3A+DQogICAgICAgIDwvdGQ+DQogICAgPC90cj4NCiAgICA8dHI+DQogICAgICAgIDx0ZCB3
aWR0aD0iNTEzIiBoZWlnaHQ9IjE3MyIgYmdjb2xvcj0iI0ZERjdGMiI+ICAgICAgICAgICAg
PHAgYWxpZ249ImNlbnRlciI+PGJyPjxmb250IGNvbG9yPSIjNjY2NjAwIj48c3BhbiBzdHls
ZT0iZm9udC1zaXplOjEwcHQ7Ij7A+sjxtMIgPC9mb250PjxhIGhyZWY9Imh0dHA6Ly9nb2xs
YTEwMDB3b24uY29tIiB0YXJnZXQ9Il9ibGFuayI+PGZvbnQgY29sb3I9Im1hcm9vbiI+PGI+
PHU+sPEstvMsw7Usv/g8L3U+PC9iPjwvZm9udD48L2E+PGZvbnQgY29sb3I9IiM2NjY2MDAi
PiAmbmJzcDs8YSBocmVmPSJodHRwOi8vd3d3LmdvbGxhMTAwMHdvbi5jb20iIHRhcmdldD0i
X2JsYW5rIj5HT0xMQTEwMDBXT04uQ09NPC9hPg0KJm5ic3A7PC9mb250Pjxmb250IGNvbG9y
PSJuYXZ5Ij7B37DtwMe3+TwvZm9udD48Zm9udCBjb2xvcj0iIzY2NjYwMCI+LDwvZm9udD48
Zm9udCBjb2xvcj0iYmx1ZSI+vcW788ewPC9mb250Pjxmb250IGNvbG9yPSIjNjY2NjAwIj4g
wPy5rsGhIA0KwNS0z7TZLjwvc3Bhbj48YnI+PGJyPjxiPjxzcGFuIHN0eWxlPSJmb250LXNp
emU6MTBwdDsiPrChsN3AzCC9zrnHt84gwcHAuiDBpLq4tvMgu/2wosfVtM+02S48L3NwYW4+
PC9iPjwvZm9udD48L3A+DQo8cCBhbGlnbj0iY2VudGVyIj48Zm9udCBjb2xvcj0iIzY2NjYw
MCI+PGI+PHNwYW4gc3R5bGU9ImZvbnQtc2l6ZTo5cHQ7Ij4xyLggDQqxpLDtuKYgud7AuL3H
ILrQwLoguN7Az7i1v6EgsKHA1MfYIMHWvLy/5C4gPC9zcGFuPjwvYj48L2ZvbnQ+PGJyPqLR
PGZvbnQgY29sb3I9IiM2NjY2MDAiPjxiPjxzcGFuIHN0eWxlPSJmb250LXNpemU6OXB0OyI+
Jm5ic3A7Jm5ic3A7sKHA1CwgDQogxbvF8LChIMfRufjAuLfOILXKtM+02S4gPC9zcGFuPjxh
IGhyZWY9Imh0dHA6Ly93d3cuZS1tb2Ftb2EubmV0L3NwbGlzdC9pbnB1dC5odG0iIHRhcmdl
dD0iX2JsYW5rIj48c3BhbiBzdHlsZT0iZm9udC1zaXplOjlwdDsgYmFja2dyb3VuZC1jb2xv
cjp5ZWxsb3c7Ij4xyLggDQqxpLDtIMfjv+sgyK7AzjwvZm9udD48L2E+PC9zcGFuPjwvYj48
L3A+DQo8cCBhbGlnbj0iY2VudGVyIj48Zm9udCBjb2xvcj0ibmF2eSI+PGI+PHNwYW4gc3R5
bGU9ImZvbnQtc2l6ZTo5cHQ7Ij65zLiuucy4riANCsi4v/ggsKHA1MfPvMW+3yC788ewwLsg
sbjA1MfPvce89iDA1rDtIL73taXAzMauILzSvcTAuyC+yyC89iDA1r3AtM+02S48L3NwYW4+
PC9iPjwvZm9udD48L3A+DQogICAgICAgIDwvdGQ+DQogICAgPC90cj4NCiAgICA8dHI+DQog
ICAgICAgIDx0ZCB3aWR0aD0iNTEzIiBoZWlnaHQ9IjE2MyIgYmdjb2xvcj0iI0ZBRjBGNSI+
ICAgICAgICAgICAgICAgICAgICAgICAgPHAgYWxpZ249ImNlbnRlciI+PHNwYW4gc3R5bGU9
ImZvbnQtc2l6ZTo5cHQ7Ij643sDPwLsgv/jEoSC+ysC4vcO46SA8YSBocmVmPSJtYWlsdG86
aW5mb0B1cmlhcHQuY29tIj689r3FsMW6zjwvYT64piC6uLO7IMHWvcO46SC02b3DtMIgDQq4
3sDPwLsgurizu8H2IL7KsNq9wLTPtNkuPC9zcGFuPjxiPjxmb250IGNvbG9yPSIjOTk5OUZG
Ij48dT4mbmJzcDs8L3U+PC9mb250PjwvYj48L3A+DQogICAgICAgICAgICA8cCBhbGlnbj0i
Y2VudGVyIj4mbmJzcDs8c3BhbiBzdHlsZT0iZm9udC1zaXplOjlwdDsiPrq7ILjewM/AuiDB
pLq4xeu9xbrOILHHsO2758fXILn9t/wgwaYgNTDBtr+hIMDHsMXHz7+pICBbsaSw7V0NCrje
wM/A08C7DQogueDI/LTPtNkuPGJyPiCxzcfPwMcguN7AzyDB1rzStMIgsMu79r+jwfiw+iDA
z7ndILvnwMzGrsDHILD4sLPA+8DOILD3v6G8rQ0KIMPfw+LH0SCwzcDMuOcsPGJyPrjewM/B
1rzSIMDMv9y/obTCILTZuKUgwaS6uLTCIMDPw7wguPC4o7TPIL7IvcnHz73DseINCiC52bb4
tM+02S4gPGJyPrvnwPwgx+O29L74wMwguN7Az8C7ILq4s7uw1CC1yCDBoSC757D6teW4s7TP
tNkuILCou+fH1bTPtNkuPC9zcGFuPjwvcD4NCiAgICAgICAgPC90ZD4NCiAgICA8L3RyPg0K
PC90YWJsZT4NCjwvYm9keT4NCjwvaHRtbD4NCg==

From moore+bounces-blast-parallel@cs.utk.edu Mon Mar  4 01:37:54 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id BAA13705; Mon, 4 Mar 2002 01:37:54 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 4 Mar 2002 01:37:54 -0500
Received: from wowexpo.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id BAA28009; Mon, 4 Mar 2002 01:37:53 -0500 (EST)
Message-Id: <200203040637.BAA28009@cs.utk.edu>
Received: from wowexpo.com (61.77.70.160)
 by cs.utk.edu (smtpshim v1.0); Mon, 4 Mar 2002 01:37:54 -0500
Reply-To: master@wowexpo.com
From: wowexpo <master@wowexpo.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m] 9>>_!!! 6G 0z<S 9z1]@L 3*?T4Y18?????
Sender: wowexpo <master@wowexpo.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Mon, 4 Mar 2002 15:43:53 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id BAA28015

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT6h3SC6u7jewM/AuiDBpLq4xeu9xbjBIMDMv+vDy8H4
ILnXIMGkuri6uMijILXuv6EgsPzH0SC5/bf8IMGmNTDBtr+hIMDHsMXH0SBbsaSw7V243sDP
wNS0z7TZLjwvdGl0bGU+DQo8bWV0YSBuYW1lPSJnZW5lcmF0b3IiIGNvbnRlbnQ9Ik5hbW8g
V2ViRWRpdG9yIHY0LjAiPg0KPC9oZWFkPg0KPGJvZHkgYmdjb2xvcj0id2hpdGUiIHRleHQ9
ImJsYWNrIiBsaW5rPSJibHVlIiB2bGluaz0icHVycGxlIiBhbGluaz0icmVkIj4NCjx0YWJs
ZSBib3JkZXI9IjEiIHdpZHRoPSI3NjciPg0KICAgIDx0cj4NCiAgICAgICAgPHRkIHdpZHRo
PSI3NTciIGhlaWdodD0iODciPg0KICAgICAgICAgICAgPHA+Jm5ic3A7od0guru43sDPwLog
waS6uMXrvcW4wSDAzL/rw8vB+CC51yDBpLq4urjIoyC17r+hILD8x9Eguf23/CDBpjUwwba/
oSANCiAgICAgICAgICAgIMDHsMXH0SBbsaSw7V243sDPwNS0z7TZLjwvcD4NCiAgICAgICAg
ICAgIDxwPiZuYnNwO6HdIGUtbWFpbMHWvNK0wiDAzsXNs92787+hvK0gw+u15sfPv7TAuLjn
LCBlLW1haWzB1rzSv9wgvu62sMfRIA0KICAgICAgICAgICAgsLPAziDBpLq4tbUgsKHB9rDt
IMDWwfYgvsq9wLTPtNkuPC9wPg0KICAgICAgICA8L3RkPg0KICAgIDwvdHI+DQogICAgPHRy
Pg0KICAgICAgICANCiAgICA8dGQgd2lkdGg9Ijc1NyIgaGVpZ2h0PSI1ODgiPiANCiAgICAg
IDxwPiZuYnNwOyZuYnNwO7mrwM4gtNy80yDEq7jetvMhISEhISZuYnNwO8DMwaggsMbBpMfP
wfYguLa8vL/kLiZuYnNwOzwvcD4NCiAgICAgICAgICAgIA0KICAgICAgPHA+PGZvbnQgY29s
b3I9IiMwMDAwZmYiPrDtwaS9xCC5q8DOtNy80yDEq7jetvO/zSDAzLW/vcQguavAzrTcvNMg
xKu43rbzPC9mb250PsDHIMCnxKG1tSDA4r7GILO7wfa/5C4uLi4uPC9wPg0KICAgICAgICAg
ICAgDQogICAgICA8cD4mbmJzcDsmbmJzcDu/7LiuwMcgwNq2+yBTQ1MoU2FmZXR5IENhcmUg
U3lzdGVtKSEgLCA8Zm9udCBjb2xvcj0iI2ZmMDAwMCI+PGI+PGZvbnQgc2l6ZT0iNCI+bi1T
VEFSIA0KICAgICAgICBDTC0yMDI8L2ZvbnQ+PC9iPjwvZm9udD64piDH0bn4ILi4s6q6uLy8
v+QmbmJzcDshPC9wPg0KICAgICAgPHA+Jm5ic3A7Jm5ic3A7uri02SDA2ry8x9EgwaS6uLim
IL/4x8+9w7jpIDxiPjxmb250IGNvbG9yPSIjZmYwMDAwIiBzaXplPSI0Ij6+xrehILHXuLLA
uyANCiAgICAgICAgxay4rzwvZm9udD48L2I+x8+/qSDB1r3KvcO/5C48L3A+DQogICAgICA8
cCBhbGlnbj0iY2VudGVyIj48YSBocmVmPSJodHRwOi8vd3d3Lndvd2V4cG8uY29tL2NvbXBh
bnkvbGFib3JhdG9yeS5odG0iPjxpbWcgc3JjPSJodHRwOi8vd3d3Lndvd2V4cG8uY29tL25z
dGFyL3JvZ29fcHJvLmdpZiIgd2lkdGg9IjM4NCIgaGVpZ2h0PSIzMTMiIGJvcmRlcj0iMCI+
PC9hPjwvcD4NCiAgICAgIDxwIGFsaWduPSJjZW50ZXIiPjxmb250IHNpemU9IjQiPm4tU1RB
UiBDTC0yMDK4piCxuMDUx8+9w7TCILDtsLS01LXpv6Gw1DwvZm9udD48L3A+DQogICAgICA8
cCBhbGlnbj0iY2VudGVyIj48Zm9udCBzaXplPSI0Ij7A57nMwNa0wiA8YSBocmVmPSJodHRw
Oi8vd3d3Lndvd2V4cG8uY29tL2dhbWUvZ2FtZWludHJvLmh0bSI+PGZvbnQgY29sb3I9IiNm
ZjAwMDAiPrnOubCzrL3DIA0KICAgICAgICCw1MDTKEtvcmVhIEZpc2hpbmcgXDI1LDAwMCk8
L2ZvbnQ+PC9hPsC7ILmrt+G3ziC15biztM+02S48L2ZvbnQ+PC9wPg0KICAgICAgPHAgYWxp
Z249ImNlbnRlciI+Jm5ic3A7PC9wPg0KICAgICAgPHAgYWxpZ249ImNlbnRlciI+Jm5ic3A7
PC9wPg0KICAgICAgPHAgYWxpZ249ImNlbnRlciI+Jm5ic3A7PC9wPg0KICAgICAgICA8L3Rk
Pg0KICAgIDwvdHI+DQogICAgPHRyPg0KICAgICAgICA8dGQgd2lkdGg9Ijc1NyIgaGVpZ2h0
PSI3MyI+DQogICAgICAgICAgICANCiAgICAgICAgICAgICZuYnNwO6HcILvnwPwgx+O29L74
wMwguN7Az8C7ILq4s7uw1CC1yMGhILvnsPq15biztM+02S48YnI+DQogICAgICAgICAgICAm
bmJzcDuh3CC43sDPILz2vcXAuyC/+MfPvcPB9iC+ysC4vcO46SC02cC9wLsgxay4r8fYIMHW
vLy/5C48YnI+IA0KICAgICAgPHA+PGNlbnRlcj48YSBocmVmPSdodHRwOi8vaXRuc29mdC5j
b20vfm1haWx0b3VjaC91c2VyL3RvdWNoLmNnaT9jbWQ9cmVmdXNlX3ZpZXcmdXNlcmNvZGU9
bG9tcGpzb3Utc3NxcmtyLUpqb291Jmdyb3VwPTE0Jm5hbWU9Jm1haWw9Ymxhc3QtcGFyYWxs
ZWxAY3MudXRrLmVkdSc+PGltZyBzcmM9J2h0dHA6Ly9pdG5zb2Z0LmNvbS9+bWFpbHRvdWNo
L3VzZXIvbWFpbC1yZWZ1c2UuZ2lmJyBib3JkZXI9MCk+PC9jZW50ZXI+PC9wPg0KICAgICAg
ICA8L3RkPg0KICAgIDwvdHI+DQo8L3RhYmxlPg0KPHA+Jm5ic3A7PC9wPg0KPC9ib2R5Pg0K
PC9odG1sPg0K

From moore+bounces-blast-parallel@cs.utk.edu Tue Mar  5 20:15:24 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id UAA01635; Tue, 5 Mar 2002 20:15:23 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 5 Mar 2002 20:15:23 -0500
Received: from hotmail.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id UAA04546; Tue, 5 Mar 2002 20:12:57 -0500 (EST)
From: <sexi_mandi@hotmail.com>
Received: from hotmail.com (211.114.56.209)
 by cs.utk.edu (smtpshim v1.0); Tue, 5 Mar 2002 20:13:03 -0500
Reply-To: <sexi_mandi@hotmail.com>
Message-ID: <018a26b06c6e$6482d7a5$7bc03eb8@eygquj>
Subject: Best Adult Websites!
Date: Wed, 06 Mar 2002 04:01:16 -0300
MiME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 8bit
X-Priority: 3 (Normal)
X-MSMail-Priority: Normal
X-Mailer: Microsoft Outlook, Build 10.0.2627
Importance: Normal

Hi, my name is Cindy. I like to flirt and show off with my friends on my webcam. We are all just 18 and currently students. We like to get naked online because its naughty and gives us a thrill. Anyhow I don't want to get in trouble so I am not letting minors in to see us naked. If you want to see, you must click the link below and signup. Its free of charge, we just want to make sure you are 18 before showing you the link to our free webcam. 

Log in from here...   http://www.%61%64%64%69ct%69%76e%73e%78.com

3527mIKj7-004fnIk2271cdJh0-978XTbw160l35


From moore+bounces-blast-parallel@cs.utk.edu Wed Mar  6 20:19:28 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu ([127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id UAA02892; Wed, 6 Mar 2002 20:19:27 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Wed, 6 Mar 2002 20:19:27 -0500
Received: from simmani.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id UAA11440; Wed, 6 Mar 2002 20:19:04 -0500 (EST)
Message-Id: <200203070119.UAA11440@cs.utk.edu>
Received: from simmani.com (211.108.84.87)
 by cs.utk.edu (smtpshim v1.0); Wed, 6 Mar 2002 20:19:09 -0500
Reply-To: woo910@simmani.com
From: 9LH- <woo910@simmani.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m] 4g=E@G 9Y6w3"8& EW=:F.GX :8<<?d!^^
Sender: 9LH- <woo910@simmani.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Thu, 7 Mar 2002 10:20:12 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id UAA11503

<html>
<head>
<title>=A2=BF=A2=BD=A1=DA [=C8=AD=C0=CC=C6=AE=B5=A5=C0=CC] =BC=B1=B9=B0=C0=
=BA "=C7=E0=BA=B9=C7=D1=B2=C9=B9=E6"=BF=A1=BC=AD...</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Deuc-kr"=
>
<style>
.dosa1 { font-family: "=B1=BC=B8=B2"; font-size: 13pt; line-height: 13pt;=
 color: 333333}
.dosa3 { font-family: "=B1=BC=B8=B2"; font-size: 10pt; line-height: 13pt;=
 color: 000000}
.dosa6 { font-family: "=B1=BC=B8=B2"; font-size: 12pt; line-height: 15pt;=
 color: 333333}
.dosa7 { font-family: "=B1=BC=B8=B2"; font-size: 9pt; line-height: 12pt; =
color: 000000}
.dosa8 { font-family: "=B1=BC=B8=B2"; font-size: 11pt; line-height: 14pt;=
 color: 000000}
td,body   {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#4B4B4B;}
A:link    {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#0080FF;}
A:active  {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#0080FF;}
A:visited {font-size:13px; font-family:=B1=BC=B8=B2,=B5=B8=BF=F2,Seoul,ar=
ial,helvetica; text-decoration: none; color:#0080FF;}
A:hover   {font-size:13px; text-decoration:underline ; color:blue; }
</style>
<script language=3D"JavaScript">
<!--
function MM_swapImgRestore() { //v3.0
  var i,x,a=3Ddocument.MM_sr; for(i=3D0;a&&i<a.length&&(x=3Da[i])&&x.oSrc=
;i++) x.src=3Dx.oSrc;
}
function MM_preloadImages() { //v3.0
  var d=3Ddocument; if(d.images){ if(!d.MM_p) d.MM_p=3Dnew Array();
    var i,j=3Dd.MM_p.length,a=3DMM_preloadImages.arguments; for(i=3D0; i<=
a.length; i++)
    if (a[i].indexOf("#")!=3D0){ d.MM_p[j]=3Dnew Image; d.MM_p[j++].src=3D=
a[i];}}
}
function MM_swapImage() { //v3.0
  var i,j=3D0,x,a=3DMM_swapImage.arguments; document.MM_sr=3Dnew Array; f=
or(i=3D0;i<(a.length-2);i+=3D3)
   if ((x=3DMM_findObj(a[i]))!=3Dnull){document.MM_sr[j++]=3Dx; if(!x.oSr=
c) x.oSrc=3Dx.src; x.src=3Da[i+2];}
}
function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=3Ddocument; if((p=3Dn.indexOf("?"))>0&&parent.fram=
es.length) {
    d=3Dparent.frames[n.substring(p+1)].document; n=3Dn.substring(0,p);}
  if(!(x=3Dd[n])&&d.all) x=3Dd.all[n]; for (i=3D0;!x&&i<d.forms.length;i+=
+) x=3Dd.forms[i][n];
  for(i=3D0;!x&&d.layers&&i<d.layers.length;i++) x=3DMM_findObj(n,d.layer=
s[i].document);
  if(!x && document.getElementById) x=3Ddocument.getElementById(n); retur=
n x;
}
function na_restore_img_src(name, nsdoc)
{
  var img =3D eval((navigator.appName =3D=3D 'Netscape') ? nsdoc+'.'+name=
 : 'document.all.'+name);
  if (name =3D=3D '')
    return;
  if (img && img.altsrc) {
    img.src    =3D img.altsrc;
    img.altsrc =3D null;
  }=20
}
function na_preload_img()
{=20
  var img_list =3D na_preload_img.arguments;
  if (document.preloadlist =3D=3D null)=20
    document.preloadlist =3D new Array();
  var top =3D document.preloadlist.length;
  for (var i=3D0; i < img_list.length; i++) {
    document.preloadlist[top+i]     =3D new Image;
    document.preloadlist[top+i].src =3D img_list[i+1];
  }=20
}
function na_change_img_src(name, nsdoc, rpath, preload)
{=20
  var img =3D eval((navigator.appName =3D=3D 'Netscape') ? nsdoc+'.'+name=
 : 'document.all.'+name);
  if (name =3D=3D '')
    return;
  if (img) {
    img.altsrc =3D img.src;
    img.src    =3D rpath;
  }=20
}
var n =3D (document.layers) ? 1:0;
var ie =3D (document.all) ? 1:0;
function overTip(boxObj) {
  if (ie) {
    boxObj.style.visibility =3D 'visible';
  }=20
}
function outTip(boxObj) {
  if (ie) {
    boxObj.style.visibility =3D 'hidden';
  }
}
//-->
</script>
</head>
<body bgcolor=3D"#ffffff" leftmargin=3D"0" topmargin=3D"0" marginwidth=3D=
"0" marginheight=3D"0" onLoad=3D"MM_preloadImages('http://www.flowerdosa.=
com/images/list-r.jpg','http://www.flowerdosa.com/images/baramtest_b.gif'=
,'http://www.flowerdosa.com/images/blood_b.gif','http://www.flowerdosa.co=
m/images/exite_b.gif','http://www.flowerdosa.com/images/dream_b.gif','htt=
p://www.flowerdosa.com/images/oheng_b.gif','http://www.flowerdosa.com/ima=
ges/ggistar_b.gif','http://www.flowerdosa.com/images/gunghop_b.gif','http=
://www.flowerdosa.com/images/result_b.gif','http://www.flowerdosa.com/ima=
ges/subbutton_home_b.gif','http://www.flowerdosa.com/images/subbutton_sin=
be_b.gif','http://www.flowerdosa.com/images/subbutton_romance_b.gif','htt=
p://www.flowerdosa.com/images/subbutton_lucky_b.gif','http://www.flowerdo=
sa.com/images/subbutton_madang_b.gif','http://www.flowerdosa.com/images/s=
ubbutton_mind_b.gif')">
<table border=3D0 cellpadding=3D0 cellspacing=3D0 width=3D770 align=3Dcen=
ter height=3D"100%">
<TR>
	<TD align=3Dmiddle valign=3Dtop><table width=3D"770" border=3D"0" cellsp=
acing=3D"0" cellpadding=3D"0" height=3D"100%">
		<tr valign=3Dtop>
			<td width=3D"305" height=3D"65"><A href=3D"http://www.flowerdosa.com/i=
ndex.htm" target=3D"_blank"><img src=3D"http://www.flowerdosa.com/images/=
stardosa.gif" width=3D"305" height=3D"65" border=3D"0"></A></td>
			<td width=3D"465" height=3D"65" background=3D"http://www.flowerdosa.co=
m/images/top_02-1.gif"><table width=3D"400" border=3D"0" cellspacing=3D"0=
" cellpadding=3D"0" height=3D"62" align=3D"right">
				<tr valign=3D"bottom">=20
					<td width=3D"398"><div align=3D"right">
                  <OBJECT align=3Dmiddle=20
                  classid=3Dclsid:D27CDB6E-AE6D-11cf-96B8-444553540000=20
                  codeBase=3Dhttp://download.macromedia.com/pub/shockwave=
/cabs/flash/swflash.cab#version=3D4,0,2,0=20
                  height=3D60 width=3D250><PARAM NAME=3D"_cx" VALUE=3D"66=
14"><PARAM NAME=3D"_cy" VALUE=3D"1588"><PARAM NAME=3D"Movie" VALUE=3D"htt=
p://www.flowerdosa.com/images/banner.swf"><PARAM NAME=3D"Src" VALUE=3D"ht=
tp://www.flowerdosa.com/images/banner.swf"><PARAM NAME=3D"WMode" VALUE=3D=
"Window"><PARAM NAME=3D"Play" VALUE=3D"-1"><PARAM NAME=3D"Loop" VALUE=3D"=
-1"><PARAM NAME=3D"Quality" VALUE=3D"High"><PARAM NAME=3D"SAlign" VALUE=3D=
""><PARAM NAME=3D"Menu" VALUE=3D"-1"><PARAM NAME=3D"Base" VALUE=3D""><PAR=
AM NAME=3D"Scale" VALUE=3D"ShowAll"><PARAM NAME=3D"DeviceFont" VALUE=3D"0=
"><PARAM NAME=3D"EmbedMovie" VALUE=3D"0"><PARAM NAME=3D"BGColor" VALUE=3D=
""><PARAM NAME=3D"SWRemote" VALUE=3D""><PARAM NAME=3D"Stacking" VALUE=3D"=
below">
                  															<embed src=3D"http://www.flowerdosa.com/=
images/banner.swf" quality=3Dhigh pluginspage=3D"http://www.macromedia.co=
m/shockwave/download/index.cgi?P1_Prod_Version=3DShockwaveFlash" type=3D"=
application/x-shockwave-flash" width=3D"250" height=3D"60" align=3D"middl=
e"></embed></OBJECT></div></td>
					<td width=3D"2"><img src=3D"http://www.flowerdosa.com/images/spacer.=
gif" width=3D"2" height=3D"1"></td>
				</tr>
				</table></td>
		</tr>
		<TR>
			<TD colspan=3D3 valign=3Dtop><table width=3D"770" border=3D"0" cellspa=
cing=3D"0" cellpadding=3D"0" align=3D"center">
				<tr>
					<td height=3D"25" width=3D"150" background=3D"http://www.flowerdosa.=
com/images/top_03.gif">&nbsp;</td>
					<td height=3D"25" width=3D"470" background=3D"http://www.flowerdosa.=
com/images/top_04.gif">
                  <OBJECT classid=3Dclsid:D27CDB6E-AE6D-11cf-96B8-4445535=
40000=20
                  codeBase=3Dhttp://download.macromedia.com/pub/shockwave=
/cabs/flash/swflash.cab#version=3D4,0,2,0=20
                  height=3D25 width=3D470><PARAM NAME=3D"_cx" VALUE=3D"12=
435"><PARAM NAME=3D"_cy" VALUE=3D"662"><PARAM NAME=3D"Movie" VALUE=3D"htt=
p://www.flowerdosa.com/images/linetext.swf"><PARAM NAME=3D"Src" VALUE=3D"=
http://www.flowerdosa.com/images/linetext.swf"><PARAM NAME=3D"WMode" VALU=
E=3D"Window"><PARAM NAME=3D"Play" VALUE=3D"-1"><PARAM NAME=3D"Loop" VALUE=
=3D"-1"><PARAM NAME=3D"Quality" VALUE=3D"High"><PARAM NAME=3D"SAlign" VAL=
UE=3D""><PARAM NAME=3D"Menu" VALUE=3D"-1"><PARAM NAME=3D"Base" VALUE=3D""=
><PARAM NAME=3D"Scale" VALUE=3D"ShowAll"><PARAM NAME=3D"DeviceFont" VALUE=
=3D"0"><PARAM NAME=3D"EmbedMovie" VALUE=3D"0"><PARAM NAME=3D"BGColor" VAL=
UE=3D""><PARAM NAME=3D"SWRemote" VALUE=3D""><PARAM NAME=3D"Stacking" VALU=
E=3D"below">
                  															<embed src=3D"http://www.flowerdosa.com/=
images/linetext.swf" quality=3Dhigh pluginspage=3D"http://www.macromedia.=
com/shockwave/download/index.cgi?P1_Prod_Version=3DShockwaveFlash" type=3D=
"application/x-shockwave-flash" width=3D"470" height=3D"25"></embed></OBJ=
ECT></td>
					<td height=3D"25" width=3D"150" background=3D"http://www.flowerdosa.=
com/images/top_05.gif">&nbsp;</td>
				</tr>
				</table></TD>
		</TR>
		<TR>
			<TD colspan=3D3 valign=3Dtop height=3D"100%"><table width=3D"770" bord=
er=3D"0" cellspacing=3D"0" cellpadding=3D"0" height=3D"100%" align=3D"cen=
ter">
				<tr><!-- =C1=C2=C3=F8=B8=DE=B4=BA -->=20
					<td width=3D"150" valign=3D"top" height=3D"332"><table width=3D"150"=
 border=3D"0" cellspacing=3D"0" cellpadding=3D"0" height=3D"100%">
						<tr>=20
							<td background=3D"http://www.flowerdosa.com/images/dosa.jpg" width=
=3D"150" height=3D"212"></td>
						</tr>
						<tr>=20
							<td width=3D"150" height=3D"25"><a href=3D"http://www.flowerdosa.c=
om/sub25.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapIm=
age('Image211','','http://www.flowerdosa.com/images/baramtest_b.gif',1)" =
target=3D"_blank"><img name=3D"Image211" border=3D"0" src=3D"http://www.f=
lowerdosa.com/images/baramtest_a.gif" width=3D"150" height=3D"25"></a></t=
d>
						</tr>
						<tr>=20
							<td width=3D"150" height=3D"26"><a href=3D"http://www.flowerdosa.c=
om/sub21.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapIm=
age('Image311','','http://www.flowerdosa.com/images/blood_b.gif',1)" targ=
et=3D"_blank"><img name=3D"Image311" border=3D"0" src=3D"http://www.flowe=
rdosa.com/images/blood_a.gif" width=3D"150" height=3D"26"></a></td>
						</tr>
						<tr>=20
							<td width=3D"150" height=3D"26"><a href=3D"http://www.flowerdosa.c=
om/sub52.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapIm=
age('Image411','','http://www.flowerdosa.com/images/exite_b.gif',1)" targ=
et=3D"_blank"><img name=3D"Image411" border=3D"0" src=3D"http://www.flowe=
rdosa.com/images/exite_a.gif" width=3D"150" height=3D"26"></a></td>
						</tr>
						<tr>=20
							<td width=3D"150" height=3D"25"><a href=3D"http://www.flowerdosa.c=
om/sub56.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapIm=
age('Image511','','http://www.flowerdosa.com/images/dream_b.gif',1)" targ=
et=3D"_blank"><img name=3D"Image511" border=3D"0" src=3D"http://www.flowe=
rdosa.com/images/dream_a.gif" width=3D"150" height=3D"26"></a></td>
						</tr>
						<tr>
							<td height=3D"10" background=3D"http://www.flowerdosa.com/images/l=
eft_06.gif"></td>
						</tr>
						<tr>=20
							<td bgcolor=3D'#009900' height=3D"100%"=20
                     ></td>
						</tr>
						</table></td><!-- =C1=C2=C3=F8=B8=DE=B4=BA=B3=A1 -->
					<td valign=3D"top" height=3D"332"><table width=3D"417" border=3D"0" =
cellspacing=3D"0" cellpadding=3D"0" align=3D"center" height=3D"5">
						<tr>=20
							<td width=3D"417" height=3D"5"><img src=3D"http://www.flowerdosa.c=
om/images/spacer.gif" width=3D"1" height=3D"2"></td>
						</tr>
						<tr>
							<TD><table width=3D"425" border=3D"0" cellspacing=3D"0" cellpaddin=
g=3D"0" align=3D"center" height=3D"18">
								<tr>=20
									<td height=3D"18" width=3D"70"><a href=3D"http://www.flowerdosa.=
com/index.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapI=
mage('Image8','','http://www.flowerdosa.com/images/subbutton_home_b.gif',=
1)" target=3D"_blank"><img name=3D"Image8" border=3D"0" src=3D"http://www=
.flowerdosa.com/images/subbutton_home_a.gif" width=3D"70" height=3D"18"><=
/a></td>
									<td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa.=
com/sub91.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapI=
mage('Image9','','http://www.flowerdosa.com/images/subbutton_sinbe_b.gif'=
,1)" target=3D"_blank"><img name=3D"Image9" border=3D"0" src=3D"http://ww=
w.flowerdosa.com/images/subbutton_sinbe_a.gif" width=3D"71" height=3D"18"=
></a></td>
									<td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa.=
com/sub92.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapI=
mage('Image10','','http://www.flowerdosa.com/images/subbutton_romance_b.g=
if',1)" target=3D"_blank"><img name=3D"Image10" border=3D"0" src=3D"http:=
//www.flowerdosa.com/images/subbutton_romance_a.gif" width=3D"71" height=3D=
"18"></a></td>
									<td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa.=
com/sub57.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapI=
mage('Image11','','http://www.flowerdosa.com/images/subbutton_lucky_b.gif=
',1)" target=3D"_blank"><img name=3D"Image11" border=3D"0" src=3D"http://=
www.flowerdosa.com/images/subbutton_lucky_a.gif" width=3D"71" height=3D"1=
8"></a></td>
									<td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa.=
com/sub54.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swapI=
mage('Image12','','http://www.flowerdosa.com/images/subbutton_madang_b.gi=
f',1)" target=3D"_blank"><img name=3D"Image12" border=3D"0" src=3D"http:/=
/www.flowerdosa.com/images/subbutton_madang_a.gif" width=3D"71" height=3D=
"18"></a></td>
									<td height=3D"18" width=3D"71"><a href=3D"http://www.flowerdosa.=
com/gallery.htm" onMouseOut=3D"MM_swapImgRestore()" onMouseOver=3D"MM_swa=
pImage('Image13','','http://www.flowerdosa.com/images/gallery_b2.gif',1)"=
 target=3D"_blank"><img name=3D"Image13" border=3D"0" src=3D"http://www.f=
lowerdosa.com/images/gallery_a2.gif" width=3D"71" height=3D"18"></a></td>
								</tr>
								</table></TD>
						</tr>
						<TR>
							<TD><table align=3D"center" valign=3D"top" border=3D"0" cellpaddin=
g=3D"0" cellspacing=3D"0" width=3D"620">
								<TR>
									<TD height=3D10></TD>
								</TR>
								<tr>
									<td align=3Dright><table border=3D0 cellpadding=3D0 cellspacing=3D=
0 width=3D542>
										<TR>
											<TD background=3D"http://www.flowerdosa.com/images/dosamail_00=
2.gif" WIDTH=3D"542" HEIGHT=3D"104" align=3Dmiddle><table border=3D0 cell=
padding=3D0 cellspacing=3D0 width=3D520>
												<TR>
												=09
                                        <TD>=C7=CF=B4=C3=BF=A1 =C2=F9=B6=F5=
=C7=D1 =BA=B0=C0=CC =BA=FB=B3=AA=B0=ED =B6=A5=BF=A1=B4=C2 =BE=C6=B8=A7=B4=
=D9=BF=EE =B2=C9=C0=CC =C7=C7=BE=EE=B3=AA=B5=ED=C0=CC,<BR>
                                          =BB=E7=B6=F7=BF=A1=B0=D4=B4=C2 =
=B5=FB=BD=BA=C7=D1 =BB=E7=B6=FB=C0=CC =C0=D6=BE=EE=BE=DF =C7=D1=B4=D9....=
<BR>
                                          <BR>
                                          =C7=C3=B6=F3=BF=F6=B5=B5=BB=E7=C0=
=C7 <b>"=C7=E0=BA=B9=C7=D1 =B2=C9=B9=E6"</b>=BF=A1=BC=AD <font color=3D"b=
lue"><b>[=C8=AD=C0=CC=C6=AE=B5=A5=C0=CC]</b></font> =BC=B1=B9=B0=C0=BB =C1=
=D8=BA=F1=C7=CF=BC=BC=BF=E4!</TD>
												</TR>
												</table></TD>
										</TR>
										<TR>
											<TD align=3Dright><IMG SRC=3D"http://www.flowerdosa.com/images=
/dosamail_003.gif" WIDTH=3D"142" HEIGHT=3D"94" BORDER=3D0 ALT=3D""></TD>
										</TR>
										</table></td>
								</tr>
								<tr>
									<TD><IMG SRC=3D"http://www.flowerdosa.com/images/dosamail_004.gi=
f" WIDTH=3D"573" HEIGHT=3D"39" BORDER=3D0 ALT=3D""></TD>
								</tr>
								<TR><!-- =BB=F3=C7=B0=C1=F8=BF=AD -->
									<TD align=3Dmiddle><table border=3D0 cellpadding=3D0 cellspacing=
=3D0 width=3D"98%">
										<TR>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
11.jpg" width=3D80 border=3D1 bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
21.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
41.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
51.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
61.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD></TR=
>
										<TR>
										  <TD>
											<P align=3Dcenter>=C8=A5=C7=D5=B2=C9=B9=D9=B1=B8=B4=CF+=BB=E7=C5=
=C1<BR>60,000=BF=F8</P></TD>
										  <TD>
											<P align=3Dcenter>=C0=E5=B9=CC=C7=CF=C6=AE=B9=D9=B1=B8=B4=CF+<=
br>=BB=E7=C5=C1<BR>65,000=BF=F8</P></TD>
										  <TD>
											<DIV align=3Dcenter>100=BC=DB=C0=CC=B2=C9=B9=D9=B1=B8=B4=CF+<b=
r>=BB=E7=C5=C1<BR>130,000=BF=F8</DIV></TD>
										  <TD>
											<P align=3Dcenter>100=BC=DB=C0=CC=BB=F3=C0=DA+=BB=E7=C5=C1<BR>=
130,000=BF=F8</P></TD>
										  <TD>
											<P align=3Dcenter>100=BC=DB=C0=CC=C7=CF=C6=AE=B9=DA=BD=BA+<br>=
=BB=E7=C5=C1<BR>150,000=BF=F8</P></TD></TR>
										<TR>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
71.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
81.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911000=
91.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911001=
01.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911001=
11.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD></TR=
>
										<TR>
										  <TD>
											<P align=3Dcenter>20=BC=DB=C0=CC=BB=F3=C0=DA+=BB=E7=C5=C1<BR>5=
0,000=BF=F8</P></TD>
										  <TD>
											<P align=3Dcenter>=C7=CF=C6=AE=B9=DA=BD=BA+=BB=E7=C5=C1<BR>100=
,000=BF=F8</P></TD>
										  <TD>
											<P align=3Dcenter>50=BC=DB=C0=CC=C7=CF=C6=AE(=BB=A1=B0=AD)+<br=
>=BB=E7=C5=C1<BR>80,000=BF=F8</P></TD>
										  <TD>
											<P align=3Dcenter>25=BC=DB=C0=CC=C7=CF=C6=AE+=BB=E7=C5=C1<BR>6=
0,000=BF=F8</P></TD>
										  <TD>
											<P align=3Dcenter>=BB=A1=B0=AD=C0=E5=B9=CC=B2=C9=B4=D9=B9=DF+=BB=
=E7=C5=C1<BR>50,000=BF=F8</P></TD></TR>
										<TR>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911001=
21.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911001=
31.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911001=
41.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter><A href=3D"http://www.flowerdosa.com/dosa_fl=
ower.htm" target=3D"_blank"><IMG=20
											height=3D80=20
											=20
											src=3D"http://seocho.flowerbhappy.com/flowerimg/9999/999911001=
51.jpg" width=3D80 border=3D1=20
                                bordercolor=3D"#CECECE"></A></P></TD>
										  <TD>
											<P align=3Dcenter> </P></TD></TR>
										<TR>
										  <TD>
											<DIV align=3Dcenter>20=BC=DB=C0=CC=C0=E5=B9=CC=B2=C9=B4=D9=B9=DF=
+<br>=BB=E7=C5=C1<BR>45,000=BF=F8</DIV></TD>
										  <TD>
											<DIV align=3Dcenter>=BA=D0=C8=AB=C0=E5=B9=CC=B2=C9=B4=D9=B9=DF=
+=BB=E7=C5=C1<BR>50,000=BF=F8</DIV></TD>
										  <TD>
											<DIV align=3Dcenter>=C8=A5=C7=D5=B2=C9=B4=D9=B9=DF+=BB=E7=C5=C1=
<BR>50,000=BF=F8</DIV></TD>
										  <TD>
											<DIV align=3Dcenter>100=BC=DB=C0=CC=B2=C9=B4=D9=B9=DF+=BB=E7=C5=
=C1<BR>130,000=BF=F8</DIV></TD>
										  <TD>
											<P align=3Dcenter>&nbsp;</P></TD>
										</TR>
										<TR>
											<TD colspan=3D5>				 =20
                                    <UL>
                                      <P><br><br><B>&nbsp;=C8=AD=C0=CC=C6=
=AE=B5=A5=C0=CC =BF=B9=BE=E0=C1=D6=B9=AE=C0=BB =B9=DE=BD=C0=B4=CF=B4=D9.(=
=B9=E8=B4=DE=BD=C3=B0=A3=C0=BA =BF=C0=C0=FC /=20
                                        =BF=C0=C8=C4 =B1=B8=BA=D0=C7=D5=B4=
=CF=B4=D9)<BR>
                                        <FONT=20
										color=3Dred>* =C8=AD=C0=CC=C6=AE=B5=A5=C0=CC =B9=E8=B4=DE=C1=D6=
=B9=AE=C0=BA =C1=D6=B9=AE=C6=F8=C1=D6=B7=CE =C0=CE=C7=D8 =B4=E7=C0=CF=BF=A1=
 =C7=D1=C7=CF=BF=A9=20
                                        =BF=C0=C0=FC/=BF=C0=C8=C4 =B9=E8=B4=
=DE=C0=BB =C7=D5=B4=CF=B4=D9.<BR>
                                        * =BB=E7=C5=C1=C0=BA =C1=F6=BF=AA=
=BA=B0=B7=CE =B4=D9=B8=A6 =BC=F6=B5=B5 =C0=D6=BD=C0=B4=CF=B4=D9.</FONT></=
B></P>
                                    </UL>
                                  </TD></TR>
								  <TR></TR>
										</table></TD>
								</TR><!-- =BB=F3=C7=B0=C1=F8=BF=AD=B3=A1 -->
								</table></TD>
						</TR>
						<TR><!-- =B1=A4=B0=ED=B8=DE=C0=CF=C7=A5=BD=C3 -->
							<TD><ul>=BB=E7=C0=FC =BE=E7=C7=D8=BE=F8=C0=CC =B8=DE=C0=CF=C0=BB =BA=
=B8=B3=BB=BC=AD =C1=CB=BC=DB=C7=D5=B4=CF=B4=D9.<BR>
							=BA=BB =B8=DE=C0=CF=C0=BA =C0=CE=C5=CD=B3=DD=BB=F3=BF=A1 =BF=C3=B6=
=F3=BF=C2 =B8=DE=C0=CF=C1=D6=BC=D2=B8=A6 =B9=DF=C3=E9=C7=CF=BF=A9 =B9=DF=BC=
=DB=C7=CF=BF=B4=BD=C0=B4=CF=B4=D9.<BR>
							=BA=BB =B8=DE=C0=CF=C0=BA =C1=A4=BA=B8 =C5=EB=BD=C5=B8=C1 =C0=CC=BF=
=EB =C3=CB=C1=F8 =B9=D7 =C1=A4=BA=B8=BA=B8=C8=A3 =B5=EE=BF=A1 =B0=FC=C7=D1=
 =B9=FD=B7=FC =C1=A6 50=C1=B6=BF=A1 =C0=C7=B0=C5=C7=D1 [=B1=A4=B0=ED] =B8=
=DE=C0=CF=C0=D4=B4=CF=B4=D9.<BR><BR>
							=BF=F8=C4=A1 =BE=CA=C0=B8=BD=C3=B8=E9 =BB=E8=C1=A6=C7=CF=BD=C3=B0=C5=
=B3=AA, <A href=3D"mailto:woo910@dreamwiz.com" title=3D=B8=DE=C0=CF=BC=F6=
=BD=C5=B0=C5=BA=CE!>[=BC=F6=BD=C5=B0=C5=BA=CE]</a>=B8=A6 =B4=AD=B7=AF=C1=D6=
=BC=BC=BF=E4!</ul>
							<p><CENTER>Copyright =A8=CF 2001-2002 &nbsp; J&amp;Y =C1=B6=B3=AA=B4=
=DC =C1=A4=BA=B8=C5=EB=BD=C5. All Rights Reserved.</CENTER>
                        <P></P></TD>
						</TR>
						</table></td>
				</tr>
				</table></TD>
		</TR>
		</table></TD>
</TR>
</table>=20
</body>
</html>

From moore+bounces-blast-parallel@cs.utk.edu Fri Mar  8 12:09:09 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id MAA26680; Fri, 8 Mar 2002 12:09:09 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Fri, 8 Mar 2002 12:09:09 -0500
Received: from orgio.net (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id MAA16117; Fri, 8 Mar 2002 12:09:10 -0500 (EST)
Message-Id: <200203081709.MAA16117@cs.utk.edu>
Received: from orgio.net (61.81.101.193)
 by cs.utk.edu (smtpshim v1.0); Fri, 8 Mar 2002 12:09:11 -0500
Reply-To: yupgishop@orgio.net
From: "?11b<%" <yupgishop@orgio.net>
To: <blast-parallel@cs.utk.edu>
Subject: [F/:0GQ1$0m]?11b@{@N ;sG0@;FD4B ?11b@|9.<nGN8t@T4O4Y.
Sender: "?11b<%" <yupgishop@orgio.net>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sat, 9 Mar 2002 02:09:51 +0900
X-User: 2.63-jmknhpnu-hprnpu-Hhmkl
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id MAA16132

PGJyPr7Is+fHz7y8v+Q/waS4uyC/+MShIL7KtMIguN7Az8C7ILq4s7u15bfBvK0gwcu828fV
tM+02S4NCjxicj7A+iC2x8fRILHisKG4t8j5ILzux8649MDMIL/Ax8LH37TCtaUgvsu4sSC5
5rn9wMwgvvi+7rytDQo8YnI+wMy3uLDUIL+wxKEgutKxuCDHz7DtILjewM/AuyC6uLPAtM+0
2S4NCjxicj6+xrehILvzx7DAuiC068elwPvAziC788ewwMyw7Q0KPGJyPrvnwMzGrrfOILCh
vcO46SA1MDC/qbChwfbAxyC788ewwMwgwNa9wLTPtNkuDQo8YnI+vu63wb/uILvzyLK/obyt
IL/Ax8LHz7DFtvMguLnAzCC55rmux8+/qSDB1r3DsO0NCjxicj6w3bfBx9ggwda9w7jpILCo
u+fHz7DavcC0z7TZLg0KPGJyPrjewM/AuyC53sC4vcUguPC157rQIA0KPGJyPsfXu/Mgx+C6
ucfPvcOw7SCwx7Ctx8+9w7DtDQo8YnI+vvDBprOqILDHvcLHz73DseK4piDB+L3JwLi3ziCx
4r/4x9W0z7TZLg0KPGJyPg0KPGJyPg0KPGJvZHkgb251bmxvYWQ9J3dpbmRvdy5vcGVuKCJo
dHRwOi8vd3d3Lnl1cGdpc2hvcC5jby5rciIpJz4gDQo8YSBocmVmPSJodHRwOi8vd3d3Lnl1
cGdpc2hvcC5jby5rciIgdGFyZ2V0PSJfYmxhbmsiPiANCjxpbWcgc3JjPSJodHRwOi8vd3d3
Lnl1cGdpc2hvcC5jby5rci9zaG9wL3VwZmlsZXMvMDIxMDAxMDAwMDIyMi5qcGciIHdpZHRo
PSIyMDAiIGhlaWdodD0iMjAwIj4gDQo8aW1nIHNyYz0iaHR0cDovL3d3dy55dXBnaXNob3Au
Y28ua3Ivc2hvcC91cGZpbGVzL3phLmpwZyIgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiPiAN
CjxpbWcgc3JjPSJodHRwOi8vd3d3Lnl1cGdpc2hvcC5jby5rci9zaG9wL3VwZmlsZXMvdHR0
LkpQRyIgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiPiANCjxpbWcgc3JjPSJodHRwOi8vd3d3
Lnl1cGdpc2hvcC5jby5rci9zaG9wL3VwZmlsZXMvMDIxMDA1MDAwMDA0Mi5qcGciIHdpZHRo
PSIyMDAiIGhlaWdodD0iMjAwIj4gDQo8aW1nIHNyYz0iaHR0cDovL3d3dy55dXBnaXNob3Au
Y28ua3Ivc2hvcC91cGZpbGVzLzAxNDAwNDAwMDAwMjIuanBnIiB3aWR0aD0iMjAwIiBoZWln
aHQ9IjIwMCI+IA0KPGltZyBzcmM9Imh0dHA6Ly93d3cueXVwZ2lzaG9wLmNvLmtyL3Nob3Av
dXBmaWxlcy8wMDkwMDEwMDAwMDIyLmdpZiIgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiPiAN
CjxpbWcgc3JjPSJodHRwOi8veXVwZ2lzaG9wLmNvLmtyL3Nob3AvdXBmaWxlcy8wMDQwMDEw
MDAwMDcyLmpwZyIgd2lkdGg9IjIwMCIgaGVpZ2h0PSIyMDAiPiANCjxpbWcgc3JjPSJodHRw
Oi8veXVwZ2lzaG9wLmNvLmtyL3Nob3AvdXBmaWxlcy8wMTEwMDIwMDAwMjMyLmdpZiIgd2lk
dGg9IjIwMCIgaGVpZ2h0PSIyMDAiPiANCjxpbWcgc3JjPSJodHRwOi8vd3d3Lnl1cGdpc2hv
cC5jby5rci9zaG9wL3VwZmlsZXMvMDA5MDAzMDAwMDA1Mi5qcGciIHdpZHRoPSIyMDAiIGhl
aWdodD0iMjAwIj4gDQo8Zm9udCBzaXplPTM+PGI+IA0KPGJyPrvnwMzGrrfOIMDMtb/Hz73D
t8G46SCx17iyILbHtMIgsdvAuyDFrLivx8+8vL/kIA0KPGZvbnQgc2l6ZT01IGNvbG9yPXJl
ZD4gDQq1tsavx9Egu/PHsCANCrHiud/H0SC788ewIA0Kv7Gx4sD7ILvzx7AgDQq/sbHiwPy5
riC87sfOuPQgDQo8L2I+DQo8YnI+DQo8YnI+DQo8QSBocmVmPSJtYWlsdG86eXVwZ2lzaG9w
QGludGl6ZW4uY29tIj689r3FsMW6zjwvYT4gDQo8YnI+IA0KPGJyPiANCjxwIGFsaWduPSJj
ZW50ZXIiPiZuYnNwOzxzcGFuIHN0eWxlPSJGT05ULVNJWkU6IDlwdCI+ursguN7Az8C6IMGk
urjF673Fus4gscew7bvnx9cguf23/CDBpiA1MMG2v6EgwMewxcfPv6kgIFuxpLDtXQ0KILje
wM/A08C7ILngyPy0z7TZLjxicj4gsc3Hz8DHILjewM8gwda80rTCILDLu/a/o8H4sPogwM+5
3SC758DMxq7AxyCw+LCzwPvAziCw97+hvK0NCiDD38Pix9EgsM3AzLjnLDxicj643sDPwda8
0iDAzL/cv6G0wiC02bilIMGkuri0wiDAz8O8ILjwuKO0zyC+yL3Jx8+9w7HiDQogudm2+LTP
tNkuIDxicj6758D8IMfjtvS++MDMILjewM/AuyC6uLO7sNQgtcggwaEgu+ew+rXluLO0z7TZ
LiCwqLvnx9W0z7TZLjwvc3Bhbj48L3A+PC9URD48L1RBQkxFPg0KPGJyPiANCjxicj4gDQo8
YnI+PC9mb250PjwvRk9OVD48L0JPRFk+PC9IVE1MPg0K

From moore+bounces-blast-parallel@cs.utk.edu Sat Mar  9 21:13:13 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id VAA25453; Sat, 9 Mar 2002 21:13:12 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sat, 9 Mar 2002 21:13:12 -0500
Received: from yahoo.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id VAA28646; Sat, 9 Mar 2002 21:13:13 -0500 (EST)
Message-Id: <200203100213.VAA28646@cs.utk.edu>
Received: from yahoo.com (211.202.87.13)
 by cs.utk.edu (smtpshim v1.0); Sat, 9 Mar 2002 21:13:14 -0500
Reply-To: pipi1227@yahoo.com
From: ">FEdGG>F" <pipi1227@yahoo.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m] ">FEdGG<: GG:N?0" 1X:9@; @'GQ =N@LF. <R03
Sender: ">FEdGG>F" <pipi1227@yahoo.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sun, 10 Mar 2002 11:14:52 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id VAA28647

<html>
<head>
<title>=B1=B9=B3=BB =C3=D6=B4=EB =B1=D4=B8=F0=C0=C7 =BE=C6=C5=E4=C7=C7 =C8=
=AF=C0=DA=B8=A6 =C0=A7=C7=D1 =C1=A4=BA=B8=B1=B3=B7=F9=C0=E5=B0=FA =C0=FC=B9=
=AE=BC=EE=C7=CE=B8=F4</title>
<meta name=3D"generator" content=3D"Namo WebEditor v4.0">
</head>
<body bgcolor=3D"white" text=3D"black" link=3D"blue" vlink=3D"purple" ali=
nk=3D"red">
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D680 bgColor=3D#ffd744 bord=
er=3D0>
<TBODY>
<TR height=3D85>
<TD align=3Dmiddle width=3D"100%" height=3D"56">
            <p style=3D"LINE-HEIGHT: 5mm"><b><font size=3D"4"><img src=3D=
"http://www.atopia.co.kr/images/fmfmfm.gif" width=3D"640" height=3D"136" =
border=3D"0" usemap=3D"#ImageMap1"></font></b></p>
</TD></TR>
<TR>
<TD vAlign=3Dtop align=3Dmiddle>
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"667" align=3Dcenter bgCol=
or=3D#ffffff=20
border=3D0 style=3D"LINE-HEIGHT: 5mm">
<TBODY>
<TR>
<TD colspan=3D"5" width=3D"667">
                        <p style=3D"LINE-HEIGHT: 5mm">&nbsp;</p>
</TD></TR>
<TR>
<TD height=3D"50" width=3D"14">
                        <p align=3D"center" style=3D"LINE-HEIGHT: 5mm"><b=
><span style=3D"FONT-SIZE: 12pt"=20
           ><IMG src=3D"http://218.145.54.39/1by1.gif"> </span></b></p></=
TD><TD height=3D"50" width=3D"605" align=3D"left" valign=3D"center" colsp=
an=3D"3">
                        <p align=3D"center" style=3D"LINE-HEIGHT: 5mm"><f=
ont size=3D"4" color=3D"blue"><b>
                        </b></font><font size=3D"4" color=3D"black"><b>=BE=
=C6=C5=E4=C7=C7=BE=C6</b></font><font size=3D"4" color=3D"blue"><b> </b><=
/font><font size=3D"4"><b>(</b><a href=3D"http://www.atopia.co.kr"><b>www=
.atopia.co.kr</b></a><b>)</b></font></p></TD><TD height=3D"50" width=3D"4=
8">
                        <p style=3D"LINE-HEIGHT: 5mm">&nbsp;</p>
</TD></TR>
<TR>
<TD width=3D"14" height=3D"166">
                        <p align=3D"center" style=3D"LINE-HEIGHT: 5mm">&n=
bsp;</p></TD><TD width=3D"248" height=3D"166" align=3D"left" valign=3D"to=
p">
                        <p align=3D"center" style=3D"LINE-HEIGHT: 5mm"><f=
ont size=3D"2"><img src=3D"http://www.atopia.co.kr/images/a1.gif" width=3D=
"200" height=3D"147" border=3D"1" usemap=3D"#ImageMap2"></font></p></TD><=
TD width=3D"5" height=3D"166" align=3D"left" valign=3D"top">
                        <p style=3D"LINE-HEIGHT: 5mm"><font size=3D"2"></=
font>&nbsp;</p>
</TD><TD width=3D"352" height=3D"166" align=3D"left" valign=3D"top">
                        <p style=3D"LINE-HEIGHT: 6mm" align=3D"left"><spa=
n style=3D"FONT-SIZE: 10pt">=A2=D1<font color=3D"blue">=20
                        </font><font color=3D"red"><b>=B1=B9=B3=BB=C3=D6=C3=
=CA =B1=B9=B3=BB =C3=D6=B4=EB=B1=D4=B8=F0</b></font>=C0=C7 =BE=C6=C5=E4=C7=
=C7=20
                        =C0=FC=B9=AE =C4=BF=B9=C2=B4=CF=C6=BC<br>=A2=D1 =C7=
=CF=B7=E7=C6=F2=B1=D5 =B9=E6=B9=AE=C0=DA=BC=F6 2=C3=B5=BF=A9=B8=ED, <b><f=
ont color=3D"red">=C3=D1=B9=E6=B9=AE=C8=BD=BC=F6=20
                        100=B8=B8 =B5=B9=C6=C4!</font></b><font color=3D"=
red"><br></font> =A2=D1 <font color=3D"red"><b>=BE=C6=C5=E4=C7=C7 =BE=C6=B1=
=E2=BA=CE=C5=CD =BC=BA=C0=CE=B1=EE=C1=F6</b></font><font color=3D"blue"> =
</font>=BE=C6=C5=E4=C7=C7 =C4=A1=B7=E1=20
                         =C1=A4=BA=B8=20
                        =B1=B3=C8=AF<br>=A2=D1 =BE=C6=C5=E4=C7=C7 =B0=E6=B7=
=C2 20=B3=E2=C0=C7 =BF=EE=BF=B5=C0=DA=B0=A1 =B8=BB=C7=D8=C1=D6=B4=C2 <fon=
t color=3D"red"><b>=BE=C6=C5=E4=C7=C7=20
                        =B1=D8=BA=B9 =B3=EB=C7=CF=BF=EC=BF=CD =B9=CC=B1=B9=
=B0=FA =C0=CF=BA=BB=C0=C7 =C3=D6=BD=C5 =C4=A1=B7=E1=C1=A4=BA=B8 =BC=D2=B0=
=B3</b></font><br>=20
                          =A2=D1<font color=3D"red"> KBS 2TV =B4=BA=BD=BA=
=C5=F5=B5=A5=C0=CC</font>=BF=A1 =BE=C6=C5=E4=C7=C7=BE=C6 =BC=D2=B0=B3=20
                        (2001.8.20)</span></p></TD><TD width=3D"48" heigh=
t=3D"166">
                        <p style=3D"LINE-HEIGHT: 5mm">&nbsp;</p>
</TD></TR>
<TR>
<TD width=3D"14" height=3D"57">
                        <p style=3D"LINE-HEIGHT: 5mm"><span style=3D"FONT=
-SIZE: 9pt"></span>&nbsp;</p>
</TD><TD width=3D"605" height=3D"57" align=3D"left" valign=3D"center" col=
span=3D"3">
                        <p style=3D"LINE-HEIGHT: 5mm" align=3D"center"><b=
><font size=3D"4" color=3D"black">=BE=C6=C5=E4=C7=C7=BC=A5</font><font si=
ze=3D"4" color=3D"red">=20
                        </font><font size=3D"4">(<a href=3D"http://www.at=
opyshop.com">www.atopyshop.com</a>)&nbsp;</font></b></p></TD><TD width=3D=
"48" height=3D"57" align=3D"left" valign=3D"top">
                        <p style=3D"LINE-HEIGHT: 5mm">&nbsp;</p>
</TD></TR>
<TR>
<TD width=3D"14" height=3D"176">
                        <p style=3D"LINE-HEIGHT: 5mm">&nbsp;</p>
</TD><TD width=3D"248" height=3D"176" align=3D"left" valign=3D"top">
                        <p style=3D"LINE-HEIGHT: 5mm" align=3D"center"><f=
ont size=3D"2">&nbsp;<img src=3D"http://www.atopia.co.kr/images/a2.gif" w=
idth=3D"200" height=3D"144" border=3D"1" usemap=3D"#ImageMap3"></font></p=
>
</TD><TD width=3D"5" height=3D"176" align=3D"left" valign=3D"top">
                        <p style=3D"LINE-HEIGHT: 5mm"><font size=3D"2"></=
font>&nbsp;</p>
</TD><TD width=3D"352" height=3D"176" align=3D"left" valign=3D"top">
                        <p style=3D"LINE-HEIGHT: 6mm" align=3D"left"><spa=
n style=3D"FONT-SIZE: 10pt"><br>=A2=D1=20
                        =BE=C6=C5=E4=C7=C7=BE=C6=B0=A1 =BF=EE=BF=B5=C7=CF=
=B4=C2 <font color=3D"red"><b>=B1=B9=B3=BB=C3=D6=C3=CA =BE=C6=C5=E4=C7=C7=
 =C0=FC=B9=AE =BC=EE=C7=CE=B8=F4</b></font><b><br></b> =A2=D1 =BA=B8=BD=C0=
=C1=A6,=20
                        =C3=B5=BF=AC=BF=AC=B0=ED, =BF=B0=BC=D2=C1=A6=B0=C5=
=BF=EB =BB=FE=BF=F6=B1=E2, =C0=CC=BF=C2=C0=FC=C7=D8=BC=F6=B1=E2, =C1=F5=BB=
=F3=B0=B3=BC=B1=C1=A6,=20
                        =B0=A1=B7=C1=BF=F2 =B0=B3=BC=B1=C1=A6=B5=EE &nbsp=
;<font color=3D"red"><b>=BE=C6=C5=E4=C7=C7 =B1=D8=BA=B9 =BE=C6=C0=CC=C5=DB=
 =C3=D1=C1=FD=C7=D5!</b></font><b>&nbsp;</b><br>=A2=D1=20
                        =BE=C6=C5=E4=C7=C7 =B0=FC=B7=C3 =C1=A6=C7=B0 =C0=DA=
=C3=BC =BF=AC=B1=B8, =B0=B3=B9=DF <br> =A2=D1 <font color=3D"red">=B5=BF=BE=
=C6=C0=CF=BA=B8,=20
                        =B0=E6=C7=E2=BD=C5=B9=AE, =BC=BC=B0=E8=C0=CF=BA=B8=
</font>=B5=EE=BF=A1 =BE=C6=C5=E4=C7=C7=BC=A5 =BC=D2=B0=B3.<br> </span></p=
>
</TD><TD width=3D"48" height=3D"176">
                        <p style=3D"LINE-HEIGHT: 5mm">&nbsp;</p>
</TD></TR>
<TR>
<TD width=3D"14" height=3D"37">
                        <p style=3D"LINE-HEIGHT: 7mm">&nbsp;&nbsp;<br>&nb=
sp;<b><span style=3D"FONT-SIZE: 16pt"><br></span></b><span style=3D"FONT-=
SIZE: 16pt"=20
           >&nbsp;</span></p>
</TD><TD width=3D"653" height=3D"37" colspan=3D"4">
                        <p style=3D"LINE-HEIGHT: 7mm"><b><span style=3D"F=
ONT-SIZE: 16pt"=20
           >=A1=D8=20
                        =C1=D6=BA=AF=BF=A1 =BE=C6=C5=E4=C7=C7=B7=CE =B0=ED=
=BB=FD=C7=CF=B4=C2 =BA=D0=B5=E9=C0=CC =C0=D6=C0=B8=B8=E9 =C0=A7=C0=C7 =B5=
=CE =BD=CE=C0=CC=C6=AE=B8=A6=20
                        =BE=CB=B7=C1=C1=D6=BC=BC=BF=E4. =B1=D7=BA=D0=BF=A1=
=B0=D5 =C5=AB =B5=B5=BF=F2=C0=CC =B5=C9 =BC=F6 =C0=D6=BD=C0=B4=CF=B4=D9. =
&nbsp;&nbsp;</span></b></p>
</TD></TR>
<TR>
<TD height=3D"49" width=3D"14" bgcolor=3D"#cccccc">
                        <p style=3D"LINE-HEIGHT: 5mm"><IMG=20
src=3D"http://218.145.54.39/1by1.gif"></p></TD><TD height=3D"49" width=3D=
"605" colspan=3D"3" bgcolor=3D"#cccccc">
                        <p style=3D"LINE-HEIGHT: 5mm"><span style=3D"FONT=
-SIZE: 9pt">&nbsp;&nbsp;<br>* =BA=BB =B8=DE=C0=CF=C0=BA =C1=A4=BA=B8=C5=EB=
=BD=C5=BA=CE =B1=C7=B0=ED=BB=E7=C7=D7=BF=A1 =C0=C7=B0=C5 (=B1=A4=B0=ED)=C0=
=D3=C0=BB =B9=E0=C0=D4=B4=CF=B4=D9. =C7=E3=B6=F4=BE=F8=C0=CC =C8=AB=BA=B8=
=B8=DE=C0=CF=C0=BB =BA=B8=B3=BB=B5=E5=B7=C1 =C1=CB=BC=DB =C7=D5=B4=CF=B4=D9=
. =B1=CD=C7=CF=C0=C7 E-MAIL=C0=BA =B0=D4=BD=C3=C6=C7 =B5=EE=20
=C0=CE=C5=CD=B3=DD =BB=F3=BF=A1=BC=AD =BE=CB=B0=D4 =B5=C7=BE=FA=C0=B8=B8=E7=
, E-mail=C0=BB =C1=A6=BF=DC=C7=D1 =BE=EE=B6=B0=C7=D1 =C1=A4=BA=B8=B5=B5 =BE=
=CB=C1=F6 =B8=F8=C7=D4=C0=BB =B9=E0=C8=FC=B4=CF=B4=D9. =C7=CA=BF=E4=BE=F8=
=B4=C2 =B8=DE=C0=CF=C0=CF =B0=E6=BF=EC, =BA=D2=C6=ED=C7=CF=BD=C3=B4=F5=B6=
=F3=B5=B5 =B9=DD=BC=DB=C7=CF=BF=A9 =C1=D6=BD=C3=B8=E9=20
=B4=F5 =C0=CC=BB=F3 =B9=DF=BC=DB=B5=C7=C1=F6 =BE=CA=B5=B5=B7=CF =C7=CF=B0=
=DA=BD=C0=B4=CF=B4=D9.&nbsp;<br>&nbsp;</span><font size=3D"2"><br>
<img src=3D'http://itnsoft.com/~mailtouch/user/touch.cgi?cmd=3Dopen&userc=
ode=3Ddgehbkgl-ellggk-Bbgfn&group=3D16&state=3D1&code=3D933731' height=3D=
0 width=3D0><center><a href=3D'http://itnsoft.com/~mailtouch/user/touch.c=
gi?cmd=3Drefuse_view&usercode=3Ddgehbkgl-ellggk-Bbgfn&group=3D16&name=3D&=
mail=3Dblast-parallel@cs.utk.edu'><img src=3D'http://itnsoft.com/~mailtou=
ch/user/mail-refuse.gif' border=3D0)></center></font></p>
</TD><TD height=3D"49" width=3D"48" bgcolor=3D"#cccccc">
                        <p style=3D"LINE-HEIGHT: 5mm"=20
       >&nbsp;</p>
</TD></TR></TBODY></TABLE></TD></TR>
<TR height=3D40>
<TD align=3Dmiddle>
<P style=3D"LINE-HEIGHT: 5mm" align=3Dcenter><FONT color=3Dwhite size=3D"=
1"><B>Copyright &copy; 1998 - 2002 ATOPIA. All rights=20
reserved.</B></FONT><B><font size=3D"1"> </font></B></P></TD></TR></TBODY=
></TABLE>
<p>&nbsp;</p>
<map name=3D"ImageMap1">
<area shape=3D"RECT" coords=3D"457,62,561,88" href   =3D"http://www.atopi=
a.co.kr">
<area shape=3D"RECT" coords=3D"456,91,562,117" href   =3D"http://www.atop=
yshop.com">
<area shape=3D"RECT" coords=3D"460,76,461,77" href   =3D"http://www.atopi=
a.co.kr" target=3D"_blank">
<area shape=3D"RECT" coords=3D"513,104,514,105" href   =3D"http://www.ato=
pyshop.com" target=3D"_blank">
</map><map name=3D"ImageMap2">
<area shape=3D"RECT" coords=3D"6,7,187,144" href   =3D"http://www.atopia.=
co.kr">
</map><map name=3D"ImageMap3">
<area shape=3D"RECT" coords=3D"7,10,193,138" href   =3D"http://www.atopys=
hop.com">
</map></body>
</html>

From moore+bounces-blast-parallel@cs.utk.edu Mon Mar 11 04:23:22 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id EAA15570; Mon, 11 Mar 2002 04:23:21 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 11 Mar 2002 04:23:21 -0500
Received: from imcard.net (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id EAA02651; Mon, 11 Mar 2002 04:23:23 -0500 (EST)
Message-Id: <200203110923.EAA02651@cs.utk.edu>
Received: from imcard.net (61.98.28.108)
 by cs.utk.edu (smtpshim v1.0); Mon, 11 Mar 2002 04:23:24 -0500
Reply-To: immail@imcard.net
From: IMCARD <immail@imcard.net>
To: <blast-parallel@cs.utk.edu>
Subject: <1$0m> Gv4k@N@; @'GQ Gv4k@N@G D+5e! Gv4k MD+5e!!
Sender: IMCARD <immail@imcard.net>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Mon, 11 Mar 2002 18:23:33 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id EAA02652

<HTML>
<HEAD>
<TITLE>=C7=F6=B4=EB=C0=CE=C0=BB =C0=A7=C7=D1 =C4=AB=B5=E5, =C7=F6=B4=EBM=C4=
=AB=B5=E5!</TITLE>
<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dks_c_5601=
-1987">
<META content=3D"MSHTML 6.00.2713.1100" name=3DGENERATOR>
</HEAD>
<BODY bgColor=3Dwhite onLoad=3D"">
<div align=3D"center"><font size=3D"2">=C7=E3=B6=F4=BE=F8=C0=CC =B8=DE=C0=
=CF=C0=BB =BA=B8=B3=BB=BC=AD =C1=CB=BC=DB=C7=D5=B4=CF=B4=D9. =B1=CD=C7=CF=
=C0=C7 =C0=CC=B8=DE=C0=CF=C0=BA =C0=A5=BC=AD=C7=CE=C1=DF =BE=CB=B0=D4 =B5=
=C7=BE=FA=C0=B8=B8=E7 =C0=FA=C8=F1=B4=C2=20
  =C0=CC=B8=DE=C0=CF =C0=CC=BF=DC=BF=A1 <br>
  =B1=CD=C7=CF=C0=C7 =BE=EE=B6=B0=C7=D1 =B0=B3=C0=CE=C1=A4=BA=B8=B5=B5 =B0=
=A1=C1=F6=B0=ED =C0=D6=C1=F6 =BE=CA=BD=C0=B4=CF=B4=D9. =BA=BB =B8=DE=C0=CF=
=C0=BA =C1=A4=C5=EB=BA=CE =B1=C7=B0=ED=BB=E7=C7=D7=BF=A1 =B5=FB=B6=F3 =C1=
=A6=B8=F1=BF=A1 &lt;=B1=A4=B0=ED&gt;=C7=A5=B1=E2=B8=A6 =C7=D1 =B8=DE=C0=CF=
=C0=D4=B4=CF=B4=D9. <br>
  </font> <br>
</div>
<TABLE height=3D735 cellSpacing=3D0 borderColorDark=3Dwhite cellPadding=3D=
0 width=3D590=20
bgColor=3D#99ccff borderColorLight=3Dblack align=3D"center" border=3D"0">
  <TBODY>=20
  <TR bgColor=3D#ffffff>
    <TD width=3D297><a href=3D"http://www.imcard.net" target=3D"_blank"><=
IMG height=3D43 src=3D"http://www.imcard.net/mainimage/toplogo2.jpg" widt=
h=3D300 border=3D0></a></TD>
    <TD class=3Dtext-black vAlign=3Dbottom align=3Dright width=3D293>&nbs=
p;</TD></TR>
  <TR>
    <TD class=3Dtk-white width=3D590 colSpan=3D2 height=3D36><IMG height=3D=
36 src=3D"http://www.imcard.net/mail/top.jpg" width=3D600></TD>
  </TR>
  <TR>
    <TD width=3D590 colSpan=3D2 height=3D12>&nbsp;</TD></TR>
  <TR>
    <TD vAlign=3Dtop align=3Dmiddle width=3D590 colSpan=3D2>
      <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D576 bgColor=3D#fffff=
f border=3D0 align=3D"center">
        <TBODY>=20
        <TR>
          <TD align=3Dmiddle width=3D576>
            <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D560 border=3D0=
>
              <TBODY>
              <TR>
                <TD width=3D560 height=3D341>
                  <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D561 bord=
er=3D0>
                    <TBODY>
                    <TR>
                      <TD width=3D561 height=3D506>=20
                        <P align=3Dcenter><a href=3D"http://www.imcard.ne=
t" target=3D"_blank"><IMG height=3D80 src=3D"http://www.imcard.net/mail/t=
op2.jpg" width=3D520 border=3D0></a>&nbsp;=20
                        <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D54=
3=20
                        align=3Dcenter border=3D0 height=3D"35">
                          <TBODY>=20
                          <TR>
                            <TD width=3D544 height=3D2><FONT face=3D=B1=BC=
=B8=B2=20
                              color=3D#ffffff size=3D2>.. </FONT></TD>
                          </TR>
                          <TR>
                            <TD width=3D544 height=3D24><FONT face=3D=B1=BC=
=B8=B2=20
                              color=3D#ffffff size=3D2>.</FONT><FONT=20
                              size=3D2>&nbsp;<font color=3D"#0000ff">=C7=E0=
=BB=E7=B1=E2=B0=A3(2002. 3. 1.~ 2002. 3.=20
                              30.)=BF=A1 =C7=F6=B4=EB=C4=AB=B5=E5=B8=A6 =BD=
=C5=C3=BB=C7=CF=BD=C3=B4=C2 =B8=F0=B5=E7=BA=D0=B2=B2 =C3=D6=BD=C5=C7=FC =C7=
=DA=B5=E5=C6=F9=B0=FA =C8=DE=B4=EB=BF=EB =C0=BD=C1=D6=C3=F8=C1=A4=B1=E2(=BC=
=B1=C2=F8=BC=F8 200=B8=ED)=B8=A6=20
                              =B9=AB=B7=E1=B7=CE =B5=E5=B8=B3=B4=CF=B4=D9=
. =B6=C7=C7=D1 =BD=C5=C3=BB=C7=CF=BD=C3=B4=C2 =B8=F0=B5=E7=BA=D0=B2=B2 =C1=
=A6=C1=D6=B5=B5 2=B9=DA 3=C0=CF =B9=AB=B7=E1 =B0=FC=B1=A4=B1=C7=B5=B5=20
                              =B5=E5=B8=B3=B4=CF=B4=D9. (=B4=DC, =C7=D7=B0=
=F8=B7=E1 =BA=BB=C0=CE=BA=CE=B4=E3) -=C7=F6=B4=EB=C4=AB=B5=E5 =B5=BF=B4=EB=
=B9=AE =B4=EB=B8=AE=C1=A1-</font>=20
                              </FONT></TD>
                          </TR></TBODY></TABLE>
                        <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D54=
4=20
                        align=3Dcenter border=3D0>
                          <TBODY>=20
                          <TR>=20
                            <TD height=3D145 width=3D"184">=20
                              <P align=3D"right"><a href=3D"http://www.im=
card.net" target=3D"_blank"><IMG height=3D120 src=3D"http://www.imcard.ne=
t/mail/stamfL.jpg" width=3D145 border=3D0></a><FONT=20
                              size=3D2> </FONT></P>
                            </TD>
                            <TD height=3D145 width=3D"172">
                              <div align=3D"center"><a href=3D"http://www=
.imcard.net" target=3D"_blank"><IMG height=3D120 src=3D"http://www.imcard=
.net/mail/stamfj.jpg" width=3D120 border=3D0></a></div>
                            </TD>
                            <TD height=3D145 width=3D"188"><a href=3D"htt=
p://www.imcard.net" target=3D"_blank"><IMG height=3D120 src=3D"http://www=
.imcard.net/mail/stamfR.jpg" width=3D145 border=3D0></a></TD>
                          </TR>
                          </TBODY>=20
                        </TABLE>
                        <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D54=
4=20
                        align=3Dcenter border=3D0>
                          <TBODY>=20
                          <TR>
                            <TD>&nbsp;</TD>
                          </TR>
                          <TR>
                            <TD height=3D"27"><IMG height=3D27 src=3D"htt=
p://www.imcard.net/mail/mcard.jpg" width=3D180></TD>
                          </TR>
                          <TR>
                            <TD height=3D34><font size=3D"2">=C7=F6=B4=EB=
=C0=DA=B5=BF=C2=F7 =B1=D7=B7=EC=C0=CC =B4=D9=C0=CC=B3=CA=BD=BA=C4=AB=B5=E5=
=B8=A6 =C0=CE=BC=F6=C7=CF=BF=A9=20
                              =BE=DF=BD=C9=C0=FB=C0=B8=B7=CE =C3=E2=B9=FC=
=C7=CF=B4=C2 =BB=F5=B7=CE=BF=EE =BD=C5=BF=EB=C4=AB=B5=E5=B7=CE=BC=AD =C6=AF=
=C8=F7 =C0=DA=B5=BF=C2=F7 =BF=EE=C0=FC=C0=DA=B5=E9=BF=A1=B0=D4 =B0=A1=C0=E5=
 =C7=CA=BF=E4=C7=D1 =C4=AB=B5=E5=C0=D4=B4=CF=B4=D9.</font></TD>
                          </TR>
                          <TR>
                            <TD height=3D92> <br>
                              <table width=3D"400" border=3D"0" cellspaci=
ng=3D"0" cellpadding=3D"0" align=3D"center" height=3D"87">
                                <tr bgcolor=3D"#ffffff">=20
                                  <td height=3D"107"> <font size=3D"2"><I=
MG height=3D12 src=3D"http://www.imcard.net/mail/bu_01.gif" width=3D12>=C1=
=D6=C0=AF=20
                                    1=B8=AE=C5=CD=B4=E7 40=BF=F8 =C7=D2=C0=
=CE<br>
                                    <IMG height=3D12 src=3D"http://www.im=
card.net/mail/bu_01.gif" width=3D12>=B1=E2=BE=C6=20
                                    / =C7=F6=B4=EB=C0=DA=B5=BF=C2=F7 =B1=B8=
=C0=D4=BD=C3 =C3=D6=B0=ED 200=B8=B8=BF=F8=B1=EE=C1=F6 =C7=D2=C0=CE<br>
                                    <IMG height=3D12 src=3D"http://www.im=
card.net/mail/bu_01.gif" width=3D12>=C4=AB=B5=E5=B0=E1=C1=A6=C1=D6=C0=AF=BF=
=CD=20
                                    =B5=BF=BD=C3 72=BD=C3=B0=A3=B5=BF=BE=C8=
 =C3=D6=B0=ED 1=C3=B5=B8=B8=BF=F8 =BB=F3=C7=D8=BA=B8=C7=E8 =C0=DA=B5=BF=B0=
=A1=C0=D4<br>
                                    <IMG height=3D12 src=3D"http://www.im=
card.net/mail/bu_01.gif" width=3D12>=C0=FC=B1=B9=20
                                    =C1=D6=BF=E4 =C0=DA=B5=BF=C2=F7 =B1=D8=
=C0=E5 =B9=AB=B7=E1 =C0=D4=C0=E5 (=BC=AD=BF=EF-=C0=E1=BD=C7 =C4=AE=B8=B62=
1, =BD=C3=B3=D7=B8=B6Q)<br>
                                    <IMG height=3D12 src=3D"http://www.im=
card.net/mail/bu_01.gif" width=3D12>=C0=FC=B1=B9=20
                                    =B0=A2=C1=F6 =C8=A3=C5=DA, =C4=DC=B5=B5=
=C7=D2=C0=CE =BC=AD=BA=F1=BD=BA(10-77%)<br>
                                    <IMG height=3D12 src=3D"http://www.im=
card.net/mail/bu_01.gif" width=3D12>=B1=B9=B3=BB=BC=B1,=20
                                    =B1=B9=C1=A6=BC=B1, =B0=ED=BC=D3=B9=F6=
=BD=BA, =C3=B6=B5=B5, =C7=D2=C0=CE=C7=FD=C5=C3 (5-7%)</font> </td>
                                </tr>
                              </table>
                              <br>
                            </TD>
                          </TR>
                          <TR bgcolor=3D"#cccccc">=20
                            <TD height=3D"30">=20
                              <table width=3D"96" border=3D"0" cellspacin=
g=3D"0" cellpadding=3D"0" align=3D"center">
                                <tr>
                                  <td height=3D"27"><a href=3D"http://www=
.imcard.net" target=3D"_blank"><IMG height=3D23 src=3D"http://www.imcard.=
net/mail/mswi1.jpg" width=3D124 border=3D0 name=3DImage13></a></td>
                                </tr>
                              </table>
                            </TD>
                          </TR></TBODY></TABLE>
                        <P></P></TD></TR></TBODY></TABLE></TD></TR>
              <TR>
                <TD align=3Dmiddle width=3D560 height=3D30>
                  <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D566 bord=
er=3D0>
                    <TBODY>
                    <TR>
                      <TD style=3D"FONT-SIZE: 8pt" align=3Dmiddle width=3D=
566=20
                      height=3D22>
                        <DIV align=3Dcenter>=B8=DE=C0=CF=BF=A1 =B4=EB=C7=D1=
 =B9=AE=C0=C7 =BB=E7=C7=D7=C0=CC =C0=D6=C0=BB =B0=E6=BF=EC =BB=F3=B4=E3=B8=
=DE=C0=CF=C0=BB =BA=B8=B3=BB=C1=D6=BC=BC=BF=E4. <A href=3D"mailto:im@imca=
rd.net"><IMG height=3D15 src=3D"http://www.imcard.net/mail/btn1.gif" widt=
h=3D101 border=3D0></A></DIV>
                      </TD></TR>
                    <TR>
                      <TD align=3Dmiddle width=3D566 bgColor=3D#ffffff>
                        <TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"1=
00%"=20
border=3D0>
                          <TBODY>
                          <TR>
                            <TD bgColor=3D#d7d7d7>
                              <TABLE cellSpacing=3D1 cellPadding=3D3 widt=
h=3D"100%"=20
                              border=3D0>
                                <TBODY>
                                <TR vAlign=3Dcenter bgColor=3D#ffffff>
                                  <TD class=3Dtk style=3D"LINE-HEIGHT: 13=
pt"=20
                                height=3D41><A=20
                                href=3D"mailto:gamsayo@yahoo.co.kr?subjec=
t=3D1004@1004d.com &Agrave;&Ccedil; &raquo;&ccedil;=A2=AF&euml;&Agrave;&U=
acute;=A1=A4&Icirc;=A8=F6&aacute; #=A8=F9&ouml;=A8=F6&Aring;&Agrave;&raqu=
o;=A1=C6&Aring;=A8=AC&Icirc;&Ccedil;&Otilde;=A2=A5&Iuml;=A2=A5&Ugrave;#&a=
mp;body=3D1004@1004d.com &Agrave;&raquo; =A1=BE&Iacute;&Ccedil;&Iuml;&Agr=
ave;&Ccedil; =A2=AC=A2=E7=A8=F6=A8=AC=A8=A1=A2=E7=A2=AF=A2=AE=A8=F9&shy; =
&raquo;&egrave;&Aacute;&brvbar;=A2=AF&auml;=A2=AC&Aacute;!"></A>&nbsp;<FO=
NT=20
                                size=3D2><B>=C0=CC =B8=DE=C0=CF=C0=BA =C0=
=CF=C8=B8=BC=BA =B1=A4=B0=ED=B8=DE=C0=CF=B7=CE=BC=AD =B4=D9=BD=C3 =B9=DF=BC=
=DB=B5=C7=C1=F6 =BE=CA=BD=C0=B4=CF=B4=D9. =C1=DF=BA=B9=B9=DF=BC=DB=C0=BA=20
                                    =C7=C1=B7=CE=B1=D7=B7=A5=C0=C7 =BF=C0=
=B7=F9=B7=CE =C0=CE=C7=D1 =B0=CD=C0=CC=BF=C0=B3=AA =C1=A4=C1=DF=C8=F7 =BB=
=E7=B0=FA=B5=E5=B8=AE=BF=C0=B8=E7 =BC=F6=BD=C5=B0=C5=BA=CE =C3=BC=C5=A9=B8=
=A6 =C7=CF=BD=C3=B8=E9=20
                                    =C1=EF=BD=C3 =C1=B6=C3=B3=C7=CF=B0=DA=
=BD=C0=B4=CF=B4=D9.</B></FONT> <A href=3D"mailto:im@imcard.net?subject=3D=
%BC%F6%BD%C5%B0%C5%BA%CE&amp;body=3D%BC%F6%BD%C5%B0%C5%BA%CE"><IMG height=
=3D18 src=3D"http://www.imcard.net/mail/btn2.gif" width=3D100 border=3D0>=
</A></TD>
                                </TR></TBODY></TABLE></TD></TR></TBODY></=
TABLE></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></TD></TR>
        <TR bgColor=3D#99ccff>
          <TD width=3D576 height=3D8>
            <P align=3Dcenter><FONT color=3Dgray size=3D2><B>&nbsp;</B></=
FONT><FONT=20
            size=3D2> <A href=3D"http://www.imcard.net"=20
            target=3D_blank>http://www.imcard.net</A></FONT></P>
          </TD></TR>
        <TR bgColor=3D#99ccff>
          <TD width=3D576=20
height=3D10>&nbsp;</TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE></B=
ODY></HTML>

From moore+bounces-blast-parallel@cs.utk.edu Mon Mar 11 05:48:15 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id FAA16869; Mon, 11 Mar 2002 05:48:15 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 11 Mar 2002 05:48:15 -0500
Received: from hotmail.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id FAA15309; Mon, 11 Mar 2002 05:48:17 -0500 (EST)
Message-Id: <200203111048.FAA15309@cs.utk.edu>
Received: from hotmail.com (210.110.47.35)
 by cs.utk.edu (smtpshim v1.0); Mon, 11 Mar 2002 05:48:18 -0500
Reply-To: ncstyle49@hotmail.com
From: "4:DZ=:" <ncstyle49@hotmail.com>
To: <blast-parallel@cs.utk.edu>
Subject: H-@eG0 >2=C4B ?)<::P88 :8<<?d.1&Bz@: =N@LF.8& <R03GO7A18?d..[1$ _0m]
Sender: "4:DZ=:" <ncstyle49@hotmail.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Mon, 11 Mar 2002 19:48:07 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id FAA15319

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD48Rk9OVCBjb2xvcj0jZmYwMDAwPiog
ud+9xcD8v+vAzLnHt84gvPa9xcDMILrSsKHH1bTPtNkuPC9GT05UPjwvUD4NCjxQPiogud21
5b3DIDxBIGhyZWY9Im1haWx0bzpuY21hbkBzaW1tYW5pLmNvbSI+wMyw9zwvQT4oPEEgDQpo
cmVmPSJtYWlsdG86bmNtYW5Ac2ltbWFuaS5jb20iPm5jbWFuQHNpbW1hbmkuY29tPC9BPinA
uLfOIMi4vcUgudm2+LTPtNkuPC9QPg0KPFA+KiC60sfKv+TH0SDBpLq4tvO46SZuYnNwO8H4
vcnAuLfOIMHLvNvH1bTPtNkuPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+vsiz58fPvLy/5D8g
yK3A5cewIL3OwMzGrjwvUD4NCjxQPjxBIGhyZWY9Imh0dHA6Ly93d3cubmV3Y29zLmNvLmty
Ij60usTavbooaHR0cDovL3d3dy5uZXdjb3MuY28ua3I8L0E+KbChILv1t84gDQq/wMfCx8+/
tL3AtM+02S48L1A+DQo8UD7H0bn4ILXpt6+8xbytILG4sObH2Lq4vLy/5C48L1A+DQo8UD6+
xri2ILChsN3AzCDA+rfFx9KwxbbzILv9sKLHz7jnLL7GwdYgsKPG7cfPsNQgsbi4xcfPvccg
vPYgwNbAu7DMtM+02S48L1A+DQo8UD7Ds8C9wMy28yC4ucDMILrOwbfHz8H2uLggwfbE0brB
wda8vL/kLjwvUD4NCjxQPjxCUj48QSBocmVmPSJodHRwOi8vd3d3Lm5ld2Nvcy5jby5rciI+
tdG3r7q4seIoxay4ryk8L0E+PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+odggursguN7Az8C6
IMGkurjF673FuMG/oSCw/MfRILn9t/wgwaYgNTDBtr+hIMDHsMXHz7+pIFuxpLDtXbjewM/A
08C7ILngyPy0z7TZLjwvUD4NCjxQPsfjtvS++MDMILjewM/AuyC6uLO9waEgwfi9ycC4t84g
wcu828fVtM+02S48L1A+DQo8UD7AzCC43sDPwLogwKW8rcfOILW1wd8gsPiws7XIILTUwMcg
uN7Az8C7ILq4sO0gurizu7XluK60wiCxpLDtwNS0z7TZLjxCUj6w4cTaLDxGT05UIGNvbG9y
PSNmZjAwMDA+uN7Az8HWvNLAzL/cILTUv6EgDQq068fRIL7utrIgwaS6uLW1ILChwfaw7SDA
1sH2IL7KvcC0z7TZLrjNvLzE2i4uLjwvRk9OVD48L1A+DQo8UD48Rk9OVCBjb2xvcj0jZmYw
MDAwPjxCUj48L0ZPTlQ+PC9QPg0KPFA+v8C0w7W1IMHxsMyw7SDH4Lq5x9Egx8+35yC1x7y8
v+R+fn5+PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+wMy43sDPwLogPEZPTlQgY29sb3I9I2Zm
MDAwMD65373FwPy/68DMuce3ziC89r3FwMwgutKwocfVtM+02S7By7zbx9W0z7TZLjwvRk9O
VD48L1A+DQo8UD48Rk9OVCBjb2xvcj0jZmYwMDAwPjwvRk9OVD4mbmJzcDs8L1A+DQo8UD65
3bXlvcMgvsa3ocDHILjewM+3ziC6uLO7wda9w7HiILnZtvi0z7TZLiCwxbXsIMHLvNvH1bTP
tNkuPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+WzxBIA0KaHJlZj0ibWFpbHRvOm5ld2Nvc21h
bkBzaW1tYW5pLmNvbT9zdWJqZWN0PVu89r3FsMW6zl0mYW1wO2JvZHk9vPa9xbDFus4gv+TD
uy4iPrz2vcWwxbrOuN7Az7q4s7ux4jwvQT4oPEEgDQpocmVmPSJtYWlsdG86bmNtYW5Ac2lt
bWFuaS5jb20pIj5uY21hbkBzaW1tYW5pLmNvbSk8L0E+XSZuYnNwOzwvUD4NCjxQPiZuYnNw
OzwvUD4NCjxQPjxjZW50ZXI+PGEgaHJlZj0naHR0cDovLzIxMC4xMTAuNDcuMzU6OTA4MC9y
ZWZ1c2UvcmVmdXNlP2NtZD12aWV3Jmdyb3VwPTcmbmFtZT0mbWFpbD1ibGFzdC1wYXJhbGxl
bEBjcy51dGsuZWR1Jz48aW1nIHNyYz0naHR0cDovLzIxMC4xMTAuNDcuMzU6OTA4MC9yZWZ1
c2UvbWFpbC1yZWZ1c2UuZ2lmJyBib3JkZXI9MCk+PC9jZW50ZXI+PC9QPg0KPFA+Jm5ic3A7
PC9QPg0KPC9CT0RZPg0KPC9IVE1MPg0K

From moore+bounces-blast-parallel@cs.utk.edu Mon Mar 11 17:09:53 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id RAA05573; Mon, 11 Mar 2002 17:09:52 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 11 Mar 2002 17:09:52 -0500
Received: from netian.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id RAA16226; Mon, 11 Mar 2002 17:09:55 -0500 (EST)
Message-Id: <200203112209.RAA16226@cs.utk.edu>
Received: from netian.com (61.254.180.186)
 by cs.utk.edu (smtpshim v1.0); Mon, 11 Mar 2002 17:09:56 -0500
Reply-To: dzon21@netian.com
From: dazon21 <dzon21@netian.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]@L:84Y 4u=N8i 5N9hH/:R
Sender: dazon21 <dzon21@netian.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 12 Mar 2002 07:09:21 +0900
X-User: 2.62-hkilfmmw-jppofm-Ffkin
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id RAA16230

PGh0bWw+DQo8aGVhZD4NCjxtZXRhIGh0dHAtZXF1aXY9ImNvbnRlbnQtdHlwZSIgY29udGVu
dD0idGV4dC9odG1sOyBjaGFyc2V0PWV1Yy1rciI+DQo8dGl0bGU+NcDPIMDlxc3H4LvnITwv
dGl0bGU+DQo8bWV0YSBuYW1lPSJnZW5lcmF0b3IiIGNvbnRlbnQ9Ik5hbW8gV2ViRWRpdG9y
IHY1LjAiPg0KPC9oZWFkPg0KPGJvZHkgYmdjb2xvcj0id2hpdGUiIHRleHQ9ImJsYWNrIiBs
aW5rPSJibHVlIiB2bGluaz0icHVycGxlIiBhbGluaz0icmVkIj4NCjxkaXYgYWxpZ249Imxl
ZnQiPg0KICAgIDxwPiZuYnNwOzwvcD4NCiAgICA8dGFibGUgYm9yZGVyPSIwIiB3aWR0aD0i
NDkwIiBiZ2NvbG9yPSIjY2NjY2NjIj4NCiAgICAgICAgPHRyPg0KICAgICAgICAgICAgPHRk
IHdpZHRoPSI1NzAiIGJnY29sb3I9IiNmZmZmY2MiPg0KICAgICAgICAgICAgICAgIDxwIGFs
aWduPSJsZWZ0Ij48Zm9udCBmYWNlPSK8rb/vtbXGriIgY29sb3I9IiM5OTAwNjYiPjxzcGFu
IHN0eWxlPSJGT05ULVNJWkU6IDIycHQiIA0KICAgICA+Jm5ic3A7PC9zcGFuPjwvZm9udD48
c3BhbiBzdHlsZT0iRk9OVC1TSVpFOiAyNHB0IiANCiAgICAgPjxhIGhyZWY9Imh0dHA6Ly93
d3cuZGF6b24yMS5jb20iIHRhcmdldD0iX2JsYW5rIj48Zm9udCBmYWNlPSK8rb/vtbXGriIg
Y29sb3I9IiM5OTAwNjYiPjXAz8Dlxc3H4LvnITwvZm9udD48L2E+PC9zcGFuPjwvcD4NCiAg
ICAgICAgICAgICAgICA8cCBhbGlnbj0ibGVmdCI+PGZvbnQgZmFjZT0ivK2/77zSs6q5q00i
PjxzcGFuIHN0eWxlPSJGT05ULVNJWkU6IDE2cHQiPjxhIGhyZWY9Imh0dHA6Ly93d3cuZGF6
b24yMS5jb20iIHRhcmdldD0iX2JsYW5rIj4mbmJzcDsgJm5ic3A7NcDPIMDlxc0gwabHsMHf
IMW4ILzux8649CC6uLTZIA0KICAgICAgICAgICAgICAgILrxvdIgsOa/7Dxicj4gJm5ic3A7
Jm5ic3A7wve+18DHIDK56LimIMivutIgx9i15biztM+02S48L2E+PC9zcGFuPjwvZm9udD48
L3A+DQogICAgICAgICAgICA8L3RkPg0KICAgICAgICA8L3RyPg0KICAgICAgICA8dHI+DQog
ICAgICAgICAgICA8dGQgd2lkdGg9IjU3MCIgYmdjb2xvcj0iI2ZmZmZjYyI+DQogICAgICAg
ICAgICAgICAgPHA+PGZvbnQgZmFjZT0ivK2/77W1xq4iIGNvbG9yPSJmdWNoc2lhIj48c3Bh
biBzdHlsZT0iRk9OVC1TSVpFOiAyNHB0IiANCiAgICAgPiZuYnNwOzwvc3Bhbj48L2ZvbnQ+
PGEgaHJlZj0iaHR0cDovL3d3dy5kYXpvbjIxLmNvbSIgdGFyZ2V0PSJfYmxhbmsiPjxzcGFu
IHN0eWxlPSJGT05ULVNJWkU6IDI0cHQiIA0KICAgICA+PGZvbnQgZmFjZT0ivK2/77W1xq4i
IGNvbG9yPSJmdWNoc2lhIj7BpjE4wvcgDQogICAgICAgICAgICAgICAgsPi1v7G4uMXH4Lvn
ITwvZm9udD48L3NwYW4+PC9hPjwvcD4NCiAgICAgICAgICAgICAgICA8cD48YSBocmVmPSJo
dHRwOi8vd3d3LmRhem9uMjEuY29tIiB0YXJnZXQ9Il9ibGFuayI+Jm5ic3A7Jm5ic3A7Jm5i
c3A7PC9hPjxmb250IGZhY2U9Irytv++80rOquatNIj48c3BhbiBzdHlsZT0iRk9OVC1TSVpF
OiAxNnB0Ij48YSBocmVmPSJodHRwOi8vd3d3LmRhem9uMjEuY29tIiB0YXJnZXQ9Il9ibGFu
ayI+M7/5IA0KICAgICAgICAgICAgICAgIDTAz7rOxc0gvce9wzxicj4gPGJyPjwvYT48L3Nw
YW4+PC9mb250PjwvcD4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgIDwvdHI+DQogICAg
ICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB3aWR0aD0iNTcwIiBiZ2NvbG9yPSIjZmZmZmNj
Ij4NCiAgICAgICAgICAgICAgICA8cCBhbGlnbj0ibGVmdCI+PHNwYW4gc3R5bGU9IkZPTlQt
U0laRTogMzZwdCIgDQogICAgID48YSBocmVmPSJodHRwOi8vd3d3LmRhem9uMjEuY29tIiB0
YXJnZXQ9Il9ibGFuayI+PGZvbnQgZmFjZT0ivK2/77W1xq4iIGNvbG9yPSIjY2M5OTMzIj4m
bmJzcDs8L2ZvbnQ+PC9hPjwvc3Bhbj48c3BhbiBzdHlsZT0iRk9OVC1TSVpFOiAyNHB0IiAN
CiAgICAgPjxhIGhyZWY9Imh0dHA6Ly93d3cuZGF6b24yMS5jb20iIHRhcmdldD0iX2JsYW5r
Ij48Zm9udCBmYWNlPSK8rb/vtbXGriIgY29sb3I9IiNjYzk5MzMiPrW/tOu5riANCiAgICAg
ICAgICAgICAgICDG0LzHILCzwOXA07naITwvZm9udD48L2E+PC9zcGFuPjwvcD4NCiAgICAg
ICAgICAgICAgICA8cCBhbGlnbj0ibGVmdCI+PGZvbnQgZmFjZT0ivK2/77zSs6q5q00iPjxz
cGFuIHN0eWxlPSJGT05ULVNJWkU6IDE4cHQiPjxhIGhyZWY9Imh0dHA6Ly93d3cuZGF6b24y
MS5jb20iIHRhcmdldD0iX2JsYW5rIj4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsyMDAwsLMg
DQogICAgICAgICAgICAgICAgwMy788DHILW/tOu5riDA/LmuxtC8x8GhwMw8YnI+ICZuYnNw
OyZuYnNwOyZuYnNwOyZuYnNwO7TZsKG/ybTPtNkuPC9hPjwvc3Bhbj48L2ZvbnQ+PC9wPg0K
ICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgPC90cj4NCiAgICA8L3RhYmxlPg0KPC9kaXY+
DQo8cD4mbmJzcDs8L3A+DQo8cD48c3BhbiBzdHlsZT0iRk9OVC1TSVpFOiAxMHB0Ij48YSBo
cmVmPSJodHRwOi8vd3d3LmRhem9uMjEuY29tIiB0YXJnZXQ9Il9ibGFuayI+PGZvbnQgY29s
b3I9IiNmZjY2MDAiPqHaIA0KyLi/+MC4t84gsKHA1MfPvcO46SDAzL20v80gwMy6pcaute4s
vsvCpSDBpLq4v80gsKLBviDH/cXDwLsgud7AuL3HILz2IMDWvcC0z7TZLjwvZm9udD48L2E+
PGZvbnQgY29sb3I9IiNmZjY2MDAiPjxicj48L2ZvbnQ+PGZvbnQgY29sb3I9IiM2NjY2NjYi
PqHavO7Hzrj0IA0Kv+6/tb+hILD8vckgwNbAuL3FutDAuiA8L2ZvbnQ+PGEgaHJlZj0iaHR0
cDovL2tzczIyMzAuaGlob21lLmNvbS9zaG9waW5mby5odG0iIHRhcmdldD0iX2JsYW5rIj48
Zm9udCBjb2xvcj0iIzAwMDBjYyI+W7+pseJdPC9mb250PjwvYT48L3NwYW4+PC9wPg0KPHA+
PHNwYW4gc3R5bGU9IkZPTlQtU0laRTogMTBwdCI+Jm5ic3A7PC9zcGFuPjxzcGFuIHN0eWxl
PSJGT05ULVNJWkU6IDlwdCI+PGZvbnQgY29sb3I9IiM5OTk5OTkiPrHNx8/AxyANCrjhwda8
0rTCIMClvK3HzsHfIL7LsNQgtce++sC4uOcguOHB1rzSIMDMv9zAxyC02bilIMGkuri0wiDA
z8O8IL7LwfYguPjH1bTPtNkuIA0KPGJyPiAmbmJzcDu02b3DILjhwLsgurizu8H2IL7KwLsg
sM3AzL/AtM8mbmJzcDvAz7rOt68gvPa9xbDFus4gx8/B9iC+ysC4vMW1tSANCsHBvcC0z7TZ
Ljxicj4gJm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7PC9mb250PjxBIGhyZWY9Im1haWx0bzpkYXpvbjIxQG5ldGlh
bi5jb20iPjxmb250IGNvbG9yPSIjOTk5OTk5Ij4mbmJzcDsmbmJzcDsmbmJzcDtbvPa9xbDF
us5dPC9mb250PjwvYT48L3NwYW4+PC9wPg0KPC9ib2R5Pg0KPC9odG1sPg0K

From moore+bounces-blast-parallel@cs.utk.edu Tue Mar 12 07:44:07 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id HAA23554; Tue, 12 Mar 2002 07:44:06 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 12 Mar 2002 07:44:06 -0500
Received: from doye.info (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id HAA08475; Tue, 12 Mar 2002 07:44:05 -0500 (EST)
Message-Id: <200203121244.HAA08475@cs.utk.edu>
Received: from doye.info (61.81.72.142)
 by cs.utk.edu (smtpshim v1.0); Tue, 12 Mar 2002 07:44:05 -0500
Reply-To: mail@doye.info
From: "55?9A$:8" <mail@doye.info>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]Gv@g H(<nGN?!<- 9f<[A_@N 55?9@[G0@; @NEM3]?!<- 883*:8<<?d.
Sender: "55?9A$:8" <mail@doye.info>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 12 Mar 2002 21:43:24 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id HAA08480

PCFET0NUWVBFIEhUTUwgUFVCTElDICItLy9XM0MvL0RURCBIVE1MIDQuMCBUcmFuc2l0aW9u
YWwvL0VOIj4NCjxIVE1MPjxIRUFEPg0KPE1FVEEgaHR0cC1lcXVpdj1Db250ZW50LVR5cGUg
Y29udGVudD0idGV4dC9odG1sOyBjaGFyc2V0PWV1Yy1rciI+DQo8U1RZTEU+IHAge2ZvbnQt
c2l6ZToxMHB0fSA8L1NUWUxFPg0KPE1FVEEgY29udGVudD0iTVNIVE1MIDYuMDAuMjYwMC4w
IiBuYW1lPUdFTkVSQVRPUj48L0hFQUQ+DQo8Qk9EWT4NCjxUQUJMRSBjZWxsU3BhY2luZz0w
IGNlbGxQYWRkaW5nPTAgd2lkdGg9NzAwIGFsaWduPWNlbnRlcj4NCiAgDQogIDxUUj4NCiAg
ICA8VEQgd2lkdGg9NzAwPg0KICAgICAgPFAgYWxpZ249Y2VudGVyPjxGT05UIHNpemU9NT48
Qj61tb+5waS6uFuxpLDtuea82108QlI+PC9CPjwvRk9OVD48Rk9OVCBjb2xvcj1yZWQgDQog
ICAgICBzaXplPTM+x/bA5yDIqLzux86/obytILnmvNvB38DOILW1v7nA28ewwLsgwM7FzbPd
v6G8rSC4uLOquri8vL/kLjxCUj48L0ZPTlQ+PEZPTlQgY29sb3I9cmVkIA0KICAgICAgc2l6
ZT0zPrnmvNvAuyC6uL3Dt8G46SBXaW5kb3dzIE1lZGlhIFBsYXllciAmbmJzcDu9xbn2wa/A
zCDHyr/kx9W0z7TZLjwvRk9OVD48L1A+PC9URD48L1RSPg0KICA8VFI+DQogICAgPFREPg0K
ICAgICAgPFAgYWxpZ249Y2VudGVyPiZuYnNwOzwvUD48L1REPjwvVFI+DQogIDxUUj4NCiAg
ICA8VEQ+DQogICAgICA8VEFCTEUgY2VsbFNwYWNpbmc9MCBib3JkZXJDb2xvckRhcms9d2hp
dGUgd2lkdGg9IjEwMCUiIGFsaWduPWNlbnRlciANCiAgICAgIGJnQ29sb3I9I2ZmZjBmZiBi
b3JkZXJDb2xvckxpZ2h0PSM5OTk5OTkgYm9yZGVyPTE+DQogICAgICAgIA0KICAgICAgICA8
VFI+DQogICAgICAgICAgPFREIHdpZHRoPSIyNSUiPg0KICAgICAgICAgICAgPFAgYWxpZ249
Y2VudGVyPjxCPr3Wv+u8+LHdtN64trnpwNo8Rk9OVCBjb2xvcj1yZWQ+PEJSPjwvRk9OVD48
L0I+PEEgDQogICAgICAgICAgICBocmVmPSJodHRwOi8vd3d3LmRveWUuaW5mby93bXYvZG95
ZV80LndtdiI+PElNRyBoZWlnaHQ9MjAwIA0KICAgICAgICAgICAgYWx0Pb3Wv+u8+LHdtN64
trnpwNogc3JjPSJodHRwOi8vd3d3LmRveWUuaW5mby9pbWFnZXMvZG95ZV80MC5qcGciIHdp
ZHRoPTE1MCANCiAgICAgICAgICAgIGJvcmRlcj0wPjxCUj6xpLDtuea82zwvQT48L1A+PC9U
RD4NCiAgICAgICAgICA8VEQgd2lkdGg9IjI1JSI+DQogICAgICAgICAgICA8UCBhbGlnbj1j
ZW50ZXI+PEI+vPix3bHdsK2w5rnpwNo8Rk9OVCBjb2xvcj1yZWQ+PEJSPjwvRk9OVD48L0I+
PEEgDQogICAgICAgICAgICBocmVmPSJodHRwOi8vd3d3LmRveWUuaW5mby93bXYvZG95ZV8z
LndtdiI+PElNRyBoZWlnaHQ9MjAwIA0KICAgICAgICAgICAgYWx0Pbz4sd2x3bCtsOa56cDa
IHNyYz0iaHR0cDovL3d3dy5kb3llLmluZm8vaW1hZ2VzL2RveWVfMzAuanBnIiB3aWR0aD0x
NTAgDQogICAgICAgICAgICBib3JkZXI9MD48QlI+saSw7bnmvNs8L0E+PC9QPjwvVEQ+DQog
ICAgICAgICAgPFREIHdpZHRoPSIyNSUiPg0KICAgICAgICAgICAgPFAgYWxpZ249Y2VudGVy
PjxCPrHdtN64trndvt+9ybDmtbXA2rHiPEZPTlQgY29sb3I9cmVkPjxCUj48L0ZPTlQ+PC9C
PjxBIA0KICAgICAgICAgICAgaHJlZj0iaHR0cDovL3d3dy5kb3llLmluZm8vd212L2RveWVf
Mi53bXYiPjxJTUcgaGVpZ2h0PTIwMCANCiAgICAgICAgICAgIGFsdD2x3bTeuLa53b7fvcmw
5rW1wNqx4iBzcmM9Imh0dHA6Ly93d3cuZG95ZS5pbmZvL2ltYWdlcy9kb3llXzIwLmpwZyIg
DQogICAgICAgICAgICB3aWR0aD0xNTAgYm9yZGVyPTA+PEJSPrGksO255rzbPC9BPjwvUD48
L1REPg0KICAgICAgICAgIDxURCB3aWR0aD0iMjUlIj4NCiAgICAgICAgICAgIDxQIGFsaWdu
PWNlbnRlcj48Qj691r/rsPzAvbvnuK656cDaPEZPTlQgY29sb3I9cmVkPjxCUj48L0ZPTlQ+
PC9CPjxBIA0KICAgICAgICAgICAgaHJlZj0iaHR0cDovL3d3dy5kb3llLmluZm8vd212L2Rv
eWVfMS53bXYiPjxJTUcgaGVpZ2h0PTIwMCANCiAgICAgICAgICAgIGFsdD291r/rsPzAvbvn
uK656cDaIHNyYz0iaHR0cDovL3d3dy5kb3llLmluZm8vaW1hZ2VzL2RveWVfMTAuanBnIiB3
aWR0aD0xNTAgDQogICAgICAgICAgICBib3JkZXI9MD48QlI+saSw7bnmvNs8L0E+PC9QPjwv
VEQ+PC9UUj4NCiAgICAgICAgPFRSPg0KICAgICAgICAgIDxURCB3aWR0aD0iMjUlIj4NCiAg
ICAgICAgICAgIDxQIGFsaWduPWNlbnRlcj68urD4uf2757ytv7nA28ew3dY8QlI+MjRLsd3A
5bTruvHB1iwgyLKx3byxxKe60jxCUj6w1LijuLa0vcfVvLozwb6/sMHWvLzGrjwvUD48L1RE
Pg0KICAgICAgICAgIDxURCB3aWR0aD0iMjUlIj4NCiAgICAgICAgICAgIDxQIGFsaWduPWNl
bnRlcj7H2L/uvLG757yxuay03ri2tbU8QlI+MjRLsd3A5bTruvHB1iwgyLKx3byxxKe60jxC
Uj6w1LijuLa0vcfVvLozwb6/sMHWvLzGrjwvUD48L1REPg0KICAgICAgICAgIDxURCB3aWR0
aD0iMjUlIj4NCiAgICAgICAgICAgIDxQIGFsaWduPWNlbnRlcj660sDav+u9w7DoPEJSPsfY
w7W9urTUvK2/ucDbx7A8QlI+ud2+373JsObd1sDaPC9QPjwvVEQ+DQogICAgICAgICAgPFRE
IHdpZHRoPSIyNSUiPg0KICAgICAgICAgICAgPFAgYWxpZ249Y2VudGVyPrrSwNq/673DsOg8
QlI+x9jDtb26tNS8rb+5wNvHsDxCUj653b7fvcmw5t3WwNo8L1A+PC9URD48L1RSPg0KICAg
ICAgICA8VFI+DQogICAgICAgICAgPFREIHdpZHRoPSIyNSUiPg0KICAgICAgICAgICAgPFAg
YWxpZ249Y2VudGVyPjxBIA0KICAgICAgICAgICAgaHJlZj0iaHR0cDovL3d3dy5idWRkaGEu
bmUua3IvdGVjaG5vdGUvcmVhZC5jZ2k/Ym9hcmQ9QnVkZGhhU2hvcF9DQyZhbXA7eV9udW1i
ZXI9MyI+PEZPTlQgDQogICAgICAgICAgICBjb2xvcj1ibHVlPrChsN06NzkwLDAwML/4PC9G
T05UPjxCUj48Rk9OVCANCiAgICAgICAgICAgIGNvbG9yPXJlZD7Gr7qwuri9w7ChOjE5OCww
MDC/+DwvRk9OVD48QlI+wda5rsfPseI8L0E+PC9QPjwvVEQ+DQogICAgICAgICAgPFREIHdp
ZHRoPSIyNSUiPg0KICAgICAgICAgICAgPFAgYWxpZ249Y2VudGVyPjxBIA0KICAgICAgICAg
ICAgaHJlZj0iaHR0cDovL3d3dy5idWRkaGEubmUua3IvdGVjaG5vdGUvcmVhZC5jZ2k/Ym9h
cmQ9QnVkZGhhU2hvcF9DQyZhbXA7eV9udW1iZXI9MiI+PEZPTlQgDQogICAgICAgICAgICBj
b2xvcj1ibHVlPrChsN06NzkwLDAwML/4PC9GT05UPjxCUj48Rk9OVCANCiAgICAgICAgICAg
IGNvbG9yPXJlZD7Gr7qwuri9w7ChOjE5OCwwMDC/+DwvRk9OVD48QlI+wda5rsfPseI8L0E+
PC9QPjwvVEQ+DQogICAgICAgICAgPFREIHdpZHRoPSIyNSUiPg0KICAgICAgICAgICAgPFAg
YWxpZ249Y2VudGVyPjxBIA0KICAgICAgICAgICAgaHJlZj0iaHR0cDovL3d3dy5idWRkaGEu
bmUua3IvdGVjaG5vdGUvcmVhZC5jZ2k/Ym9hcmQ9QnVkZGhhU2hvcF9DQyZhbXA7eV9udW1i
ZXI9MSI+PEZPTlQgDQogICAgICAgICAgICBjb2xvcj1ibHVlPrChsN06MjQwLDAwML/4PC9G
T05UPjxCUj48Rk9OVCANCiAgICAgICAgICAgIGNvbG9yPXJlZD7Gr7qwuri9w7ChOjE0OSww
MDC/+DwvRk9OVD48QlI+wda5rsfPseI8L0E+PC9QPjwvVEQ+DQogICAgICAgICAgPFREIHdp
ZHRoPSIyNSUiPg0KICAgICAgICAgICAgPFAgYWxpZ249Y2VudGVyPjxBIA0KICAgICAgICAg
ICAgaHJlZj0iaHR0cDovL3d3dy5idWRkaGEubmUua3IvdGVjaG5vdGUvcmVhZC5jZ2k/Ym9h
cmQ9QnVkZGhhU2hvcF9DQyZhbXA7eV9udW1iZXI9MCI+PEZPTlQgDQogICAgICAgICAgICBj
b2xvcj1ibHVlPrChsN06MjgwLDAwML/4PC9GT05UPjxCUj48Rk9OVCANCiAgICAgICAgICAg
IGNvbG9yPXJlZD7Gr7qwuri9w7ChOjE1OCwwMDC/+DwvRk9OVD48QlI+wda5rsfPseI8L0E+
PC9QPjwvVEQ+PC9UUj48L1RBQkxFPjwvVEQ+PC9UUj4NCiAgPFRSPg0KICAgIDxURD4NCiAg
ICAgIDxQIGFsaWduPWNlbnRlcj48QSBocmVmPSJodHRwOi8vd3d3LkJ1ZGRoYVNob3BwaW5n
LmNvbSI+PEZPTlQgDQogICAgICBzaXplPTU+PEI+aHR0cDovL3d3dy5CdWRkaGFTaG9wcGlu
Zy5jb208L0I+PC9GT05UPjwvQT4gPC9QPjwvVEQ+PC9UUj4NCiAgPFRSPg0KICAgIDxURD4N
CiAgICAgIDxQPjwvUD48L1REPjwvVFI+DQogIDxUUj4NCiAgICA8VEQ+DQogICAgICA8UCBh
bGlnbj1jZW50ZXI+TyDH47b0vvjAzCC43sDPwLsgurizuyDBy7zbx9W0z7TZLiC89r3FsMW6
ziDHz73DuOkgtNm9w7TCILjewM/AuyC6uLO7wfYgvsqw2r3AtM+02S48QlI+TyANCiAgICAg
IMGkurjF673FuMEgwMy/68PLwfggudcgwaS6uLq4yKMgte6/oSCw/MfRILn9t/wgwaY8Qj41
MDwvQj7Btr+hIMDHsMXH0SBbsaSw7V243sDPwNS0z7TZLjxCUj5PILjewM/B1rzStMIgwM7F
zbPdu/O/obytIA0KICAgICAgw+u15sffwLi45ywgwda80r/cIL7utrDH0SCws8DOIMGkuri1
tSCwrrDtIMDWwfYgvsq9wLTPtNkuPC9QPjwvVEQ+PC9UUj4NCiAgPFRSPg0KICAgIDxURD4N
CiAgICAgIDxQIGFsaWduPWNlbnRlcj4mbmJzcDs8L1A+PC9URD48L1RSPg0KICA8VFI+DQog
ICAgPFREPg0KICAgICAgPFAgYWxpZ249Y2VudGVyPjxBIA0KICAgICAgaHJlZj0ibWFpbHRv
OmRveWVAZG95ZS5pbmZvP3N1YmplY3Q9W7z2vcWwxbrOXSZhbXA7Ym9keT3H47b0vvjAzCC4
3sDPwLsgurizuyDBy7zbx9W0z7TZLiC89r3FsMW6ziDHz73DuOkgtNm9w7TCILjewM/AuyC6
uLO7wfYgvsqw2r3AtM+02S4iPjxCPjxGT05UIA0KICAgICAgY29sb3I9cmVkIHNpemU9NT5b
PC9GT05UPjwvQj48Rk9OVCBjb2xvcj1yZWQgDQogICAgICBzaXplPTU+PEI+vPa9xbDFus48
L0I+PC9GT05UPjxCPjxGT05UIGNvbG9yPXJlZCANCiAgc2l6ZT01Pl08L0ZPTlQ+PC9CPjwv
QT48L1A+PC9URD48L1RSPjwvVEFCTEU+PC9CT0RZPjwvSFRNTD4NCg==

From moore+bounces-blast-parallel@cs.utk.edu Thu Mar 14 11:01:47 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id LAA20127; Thu, 14 Mar 2002 11:01:47 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Thu, 14 Mar 2002 11:01:47 -0500
Received: from hotmail.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id LAA22830; Thu, 14 Mar 2002 11:01:46 -0500 (EST)
Message-Id: <200203141601.LAA22830@cs.utk.edu>
Received: from hotmail.com (211.49.203.84)
 by cs.utk.edu (smtpshim v1.0); Thu, 14 Mar 2002 11:01:48 -0500
Reply-To: bojaki@hotmail.com
From: bojagicard <bojaki@hotmail.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]F/:0GQ C;C8@e@; 885i>n :8<<?d.
Sender: bojagicard <bojaki@hotmail.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Fri, 15 Mar 2002 01:01:49 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id LAA22841

<HTML>
<HEAD>
<META content=3D"text/html; charset=3Dks_c_5601-1987" http-equiv=3DConten=
t-Type>
<STYLE> p, font, span { line-height:120%; margin-top:0; margin-bottom:0; =
}</STYLE>
<title>:::[=B1=A4=B0=ED]=BA=B8=C0=DA=B1=E2=C4=AB=B5=E5 =C3=BB=C3=B8=C0=E5=
:::</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Deuc-kr"=
>
<STYLE type=3Dtext/css>A {
	FONT-SIZE: 9pt; LINE-HEIGHT: 120%
}
A:link {
	COLOR: #003399; text-decoration;color: red
}
A:hover {
	COLOR: red; TEXT-DECORATION: underline
}
A:visited {
	COLOR: #660055; TEXT-DECORATION: none
}
A:active {
	COLOR: #008400; text-decoration;color: red
}
TD {
	FONT-SIZE: 9pt
}
FONT {
	FONT-SIZE: 9pt; LINE-HEIGHT: 125%
}
</STYLE>
</head>
<body bgcolor=3D"#ffffff" text=3D"#000000">
<table width=3D"500" border=3D"1" cellspacing=3D"0" cellpadding=3D"0">
  <tr>=20
    <td>=20
      <table width=3D"500" border=3D"0" cellspacing=3D"0" cellpadding=3D"=
0">
        <tr>=20
          <td height=3D"177" bgcolor=3D"#ffffff" colspan=3D"3">=20
            <div align=3D"center"><font color=3D"#ffffff"><a href=3D"http=
://www.bojagicard.com/index.htm"><img src=3D"http://www.bojagicard.com/PR=
/1.gif" width=3D"500" height=3D"177" border=3D"0"></a></font></div>
          </td>
        </tr>
        <tr>=20
          <td valign=3D"top" width=3D"158" rowspan=3D"4">=20
            <div align=3D"left">=20
              <p>&nbsp;</p>
            </div>
          </td>
          <td valign=3D"top" width=3D"12" background=3D"http://www.bojagi=
card.com/PR/line.gif" rowspan=3D"4">&nbsp;</td>
          <td valign=3D"top" width=3D"330" height=3D"26" background=3D"ht=
tp://www.bojagicard.com/PR/2.gif">&nbsp;</td>
        </tr>
        <tr>
          <td valign=3D"top" width=3D"330" bgcolor=3D"#ffffff"><br>
            <b><font color=3D"#ffffff">.</font><font color=3D"#000099"> <=
/font></b><font color=3D"#000099">=A1=DD=20
            =BA=B8=C0=DA=B1=E2=C4=AB=B5=E5=B4=C2 =B1=E2=BC=BA =C3=BB=C3=B8=
=C0=E5 =BC=EE=C7=CE=B8=F4=C0=CC =BE=C6=B4=D5=B4=CF=B4=D9.</font><br>
            <br>
            <font color=3D"#ffffff">..</font><font color=3D"#666666">=A4=B7=
=C3=BB=C3=B8=C0=E5=C0=C7 =C0=DB=C7=B0=C8=AD =BC=B1=BE=F0</font><br>
            <font color=3D"#ffffff">..</font><font color=3D"#666666">=A4=B7=
=C8=F1=BC=D2=B0=A1=C4=A1,=BC=D2=C0=E5=B0=A1=C4=A1 =C0=D6=B4=C2=20
            =C3=BB=C3=B8=C0=E5</font><br>
            <font color=3D"#ffffff">..</font><font color=3D"#666666">=A4=B7=
=C0=FA=B7=C5=C7=D1 =B0=A1=B0=DD=BF=A1 =B8=C2=C3=E3=C4=AB=B5=E5=B8=A6=20
            =C1=A6=C0=DB=C7=D5=B4=CF=B4=D9.<br>
            </font><br>
            <font color=3D"#ffffff">..</font><font color=3D"#cc0000">* =C8=
=B8=BF=F8=B0=A1=C0=D4 =B8=B8=C0=B8=B7=CE =B0=E1=C8=A5=20
            =C0=CF=C1=A4=B0=FC=B8=AE<b><br>
            <font color=3D"#ffffff">... </font></b>=B6=F3=BA=A7 =C3=E2=B7=
=C2 =C7=C1=B7=CE=B1=D7=B7=A5=C0=BB =C0=CC=BF=EB =C7=CF=BD=C7 =BC=F6 =C0=D6=
=BD=C0=B4=CF=B4=D9. <b><br>
            <br>
            </b></font><font color=3D"#ffffff">..</font><font color=3D"#c=
c0000"><font color=3D"#000000">=A4=D3<a href=3D"http://www.bojagicard.com=
/login1.php" target=3D"_blank"><font color=3D"#990000">=B9=AB=B7=E1=20
            =B0=E1=C8=A5=C0=CF=C1=A4=B0=FC=B8=AE</font></a>=A4=D3<a href=3D=
"http://www.bojagicard.com/index.htm" target=3D"_blank"><font color=3D"#9=
90000">=BA=B8=C0=DA=B1=E2=C4=AB=B5=E5=20
            </font></a><font color=3D"#990000"><a href=3D"http://www.boja=
gicard.com/index.htm">=C8=A8</a></font>=A4=D3<a href=3D"http://www.bojagi=
card.com/sample1.php"><font color=3D"#990000">=B9=AB=B7=E1=20
            =BB=F9=C7=C3=BD=C5=C3=BB</font></a>=A4=D3<br>
            <font color=3D"#ffffff">.</font> </font></font></td>
        </tr>
        <tr>
          <td valign=3D"top" width=3D"330" height=3D"26" background=3D"ht=
tp://www.bojagicard.com/PR/3.gif">&nbsp;</td>
        </tr>
        <tr>
          <td valign=3D"top" width=3D"330"><font color=3D"#000099"><b><fo=
nt color=3D"#ffffff"><br>
            .</font><font color=3D"#000099"> </font></b><font color=3D"#0=
00099">=A1=DD=20
            </font>=BA=B8=C0=DA=B1=E2=C4=AB=B5=E5 =B8=B8=C0=C7 =B9=AB=B7=E1=
 =BC=AD=BA=F1=BD=BA.</font><br>
            <br>
            <font color=3D"#ffffff">..</font><font color=3D"#000000">=A4=B7=
</font><a href=3D"http://www.bojagicard.com/index.htm" target=3D"_blank">=
<font color=3D"#333333">3=B0=A1=C1=F6=20
            =B1=EE=C1=F6 =B9=AB=B7=E1=B7=CE =BB=F9=C7=C3 =B9=DF=BC=DB =C0=
=BB =C7=D8 =B5=E5=B8=B3=B4=CF=B4=D9.</font><br>
            </a><br>
            <font color=3D"#ffffff">..</font><font color=3D"#000000">=A4=B7=
</font><a href=3D"http://www.bojagicard.com/e.htm" target=3D"_blank"><fon=
t color=3D"#333333">4=BF=F930=C0=CF=B1=EE=C1=F6=20
            =C1=D6=B9=AE=C7=CF=BD=C5 =C3=BB=C3=B8=C0=E5 =C1=D6=B9=AE =BD=C5=
=B6=FB=BD=C5=BA=CE=B4=D4 =BF=A1=B0=D4...</font></a><br>
            <font color=3D"#ffffff">.=A4=B7</font> <font color=3D"#999999=
"><a href=3D"http://www.bojagicard.com/e.htm">(=C3=DF=C3=B7=C8=C4=20
            =B9=E9=C8=AD=C1=A1 =BB=F3=C7=B0=B1=C7=B5=EE =B0=A8=BB=E7=C0=C7=
 =BC=B1=B9=B0=C0=BB =B5=E5=B8=B3=B4=CF=B4=D9.)</a></font><br>
            <br>
            <font color=3D"#ffffff">..</font><font color=3D"#000000">=A4=B7=
</font><a href=3D"http://www.bojagicard.com/index.htm" target=3D"_blank">=
<font color=3D"#333333">=C1=D6=B9=AE=B0=ED=B0=B4=B8=F0=B5=CE=20
            =B9=AB=B7=E1 =C0=CC=B8=DE=C0=CF =C3=BB=C3=B8=C0=E5=C0=BB =C1=A6=
=C0=DB =C7=CF=BF=A9 =B5=E5=B8=B3=B4=CF=B4=D9.</font></a><br>
            <font color=3D"#ffffff">..=A4=B7</font>(=BA=B0=B5=B5=C0=C7 =C0=
=CC=B8=DE=C0=CF =BC=AD=B9=F6 =BE=F8=C0=CC =BD=CE=C0=CC=C6=AE =B3=BB=BF=A1=
=BC=AD =B9=DF=BC=DB.)<br>
            <br>
            <font color=3D"#ffffff">..</font><font color=3D"#000000"><a h=
ref=3D"http://www.bojagicard.com/index.htm"><font color=3D"#333333">=A4=B7=
</font></a></font><font color=3D"#333333"><a href=3D"http://www.bojagicar=
d.com/index.htm">=BD=C5=BF=EB=C4=AB=B5=E5=20
            =BC=F6=BC=F6=B7=E1 =D9=ED , =C4=AB=B5=E5=BA=B0 =B9=AB=C0=CC=C0=
=DA =C7=FD=C5=C3</a></font><br>
            <br>
            <font color=3D"#ffffff">..</font><font color=3D"#000000">=A4=B7=
</font>=C3=BB=C3=B8=C0=E5 =C1=A6=C0=DB=20
            =C1=F8=C7=E0=BB=F3=C8=B2=C0=BB <br>
            <font color=3D"#ffffff">..=A4=B7</font>=BF=C2=B6=F3=C0=CE=C0=B8=
=B7=CE =BD=C5=BC=D3=C7=CF=B0=D4 =B0=CB=C5=E4 =C7=CF=BD=C7 =BC=F6 =C0=D6=BD=
=C0=B4=CF=B4=D9.<br>
            <font color=3D"#cc0000"><font color=3D"#000000"><font color=3D=
"#ffffff">.</font>=20
            </font></font> </td>
        </tr>
        <tr>=20
          <td valign=3D"top" colspan=3D"3">=20
            <table width=3D"500" border=3D"0" cellspacing=3D"0" cellpaddi=
ng=3D"0">
              <tr bgcolor=3D"#999999">=20
                <td width=3D"20" height=3D"25">&nbsp;</td>
                <td width=3D"130" height=3D"25">=20
                  <div align=3D"right"></div>
                </td>
                <td width=3D"35" height=3D"25">&nbsp;</td>
                <td width=3D"130" height=3D"25">=20
                  <div align=3D"right"></div>
                </td>
                <td width=3D"35" height=3D"25">&nbsp;</td>
                <td width=3D"130" height=3D"25">=20
                  <div align=3D"right"></div>
                </td>
                <td width=3D"20" height=3D"25">&nbsp;</td>
              </tr>
              <tr bgcolor=3D"#999999">=20
                <td width=3D"20">&nbsp;</td>
                <td width=3D"130"><a href=3D"http://www.bojagicard.com/in=
dex.htm"><img src=3D"http://www.bojagicard.com/PR/gb_17.gif" width=3D"130=
" height=3D"88" border=3D"0"></a></td>
                <td width=3D"35">&nbsp;</td>
                <td width=3D"130"><a href=3D"http://www.bojagicard.com/in=
dex.htm"><img src=3D"http://www.bojagicard.com/PR/gb_15.gif" width=3D"130=
" height=3D"88" border=3D"0"></a></td>
                <td width=3D"35">&nbsp;</td>
                <td><a href=3D"http://www.bojagicard.com/index.htm"><img =
src=3D"http://www.bojagicard.com/PR/gb_5.gif" width=3D"130" height=3D"88"=
 border=3D"0"></a></td>
                <td width=3D"20">&nbsp;</td>
              </tr>
              <tr bgcolor=3D"#999999">=20
                <td width=3D"20" height=3D"5">&nbsp;</td>
                <td width=3D"130" height=3D"5">&nbsp;</td>
                <td width=3D"35" height=3D"5">&nbsp;</td>
                <td width=3D"130" height=3D"5">&nbsp;</td>
                <td width=3D"35" height=3D"5">&nbsp;</td>
                <td height=3D"5">&nbsp;</td>
                <td width=3D"20" height=3D"5">&nbsp;</td>
              </tr>
            </table>
           =20
          </td>
        </tr>
        <tr>=20
          <td height=3D"20" bgcolor=3D"#999999" colspan=3D"3">=20
            <div align=3D"right"><font color=3D"#ffffff">( =C0=CC=B8=DE=C0=
=CF=C0=BA =B5=CE=B9=F8=B4=D9=BD=C3 =B9=DF=BC=DB=B5=C7=C1=F6 =BE=CA=BD=C0=B4=
=CF=B4=D9.)<font color=3D"#999999">....................................</=
font><a href=3D"http://www.bojagicard.com/index.htm" target=3D"_blank"><f=
ont color=3D"#ffffff">www.Bojagicard.com</font>=20
              </a><font color=3D"#999999">.</font> </font></div>
          </td>
        </tr>
      </table>
    </td>
  </tr>
</table>
<A href=3D"mailto:bogagi@korea.com">=A4=D3=BC=F6=BD=C5=B0=C5=BA=CE=A4=D3<=
/A>
</body>
</HTML>

From moore+bounces-blast-parallel@cs.utk.edu Fri Mar 15 11:44:45 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id LAA25963; Fri, 15 Mar 2002 11:44:44 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Fri, 15 Mar 2002 11:44:44 -0500
Received: from yahoo.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id LAA26630; Fri, 15 Mar 2002 11:44:38 -0500 (EST)
Message-Id: <200203151644.LAA26630@cs.utk.edu>
Received: from yahoo.com (211.202.87.13)
 by cs.utk.edu (smtpshim v1.0); Fri, 15 Mar 2002 11:44:43 -0500
Reply-To: pipi1227@yahoo.com
From: "A6H-@/" <pipi1227@yahoo.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]A6H-@/?5>n ?%GG>28. GC79@L>n 9+7a @L:%F.!!!
Sender: "A6H-@/" <pipi1227@yahoo.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sat, 16 Mar 2002 01:46:36 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id LAA26645

<!-- saved from url=3D(0022)http://internet.e-mail -->
<html>
<head>
<title>::::: =C1=B6=C8=AD=C0=AF=C0=C7 =B9=CC=B1=B9=BF=B5=BE=EE :::::</tit=
le>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Deuc-kr"=
>
</head>
<body bgcolor=3D"#ffffff" text=3D"#000000" leftmargin=3D"0" topmargin=3D"=
0" marginwidth=3D"0" marginheight=3D"0" background=3D"http://www.dialtalk=
s.com/mail/version_02/images/img_mail_09.gif">
<center>
  <br>
  <table width=3D"600" border=3D"0" cellspacing=3D"0" cellpadding=3D"0">
    <tr>=20
      <td colspan=3D"2"><a href=3D"http://www.dialtalks.com" target=3D"_b=
lank" onfocus=3D"this.blur()"><img src=3D"http://www.dialtalks.com/mail/v=
ersion_02/images/img_mail_01.gif" width=3D"600" height=3D"56" border=3D"0=
"></a></td>
    </tr>
    <tr>=20
      <td colspan=3D"2"><a href=3D"http://www.dialtalks.com" target=3D"_b=
lank" onfocus=3D"this.blur()"><img src=3D"http://www.dialtalks.com/mail/v=
ersion_02/images/img_mail_02.gif" width=3D"600" height=3D"159" border=3D"=
0"></a></td>
    </tr>
    <tr>=20
      <td colspan=3D"2"><a href=3D"http://www.dialtalks.com" target=3D"_b=
lank" onfocus=3D"this.blur()"><img src=3D"http://www.dialtalks.com/mail/v=
ersion_02/images/img_mail_03.gif" width=3D"600" height=3D"63" border=3D"0=
"></a></td>
    </tr>
    <tr>=20
      <td width=3D"129"><a href=3D"http://www.dialtalks.com" target=3D"_b=
lank" onfocus=3D"this.blur()"><img src=3D"http://www.dialtalks.com/mail/v=
ersion_02/images/img_mail_04.gif" width=3D"129" height=3D"585" border=3D"=
0"></a></td>
      <td width=3D"471" valign=3D"top"><a href=3D"http://www.dialtalks.co=
m" target=3D"_blank" onfocus=3D"this.blur()"><img src=3D"http://www.dialt=
alks.com/mail/version_02/images/img_mail_05.gif" width=3D"471" height=3D"=
202" border=3D"0"></a><img src=3D"http://www.dialtalks.com/mail/version_0=
2/images/img_mail_06.gif" width=3D"471" height=3D"17"><a href=3D"http://w=
ww.dialtalks.com" target=3D"_blank" onfocus=3D"this.blur()"><img src=3D"h=
ttp://www.dialtalks.com/mail/version_02/images/img_mail_07.gif" width=3D"=
471" height=3D"239" border=3D"0"><img src=3D"http://www.dialtalks.com/mai=
l/version_02/images/img_mail_08.gif" width=3D"471" height=3D"127" border=3D=
"0"></a></td>
    </tr>
    <tr align=3D"middle">=20
      <td colspan=3D"2" height=3D"50" bgcolor=3D"#ffffff">               =
         <p style=3D"LINE-HEIGHT: 5mm" align=3D"left"><span style=3D"FONT=
-SIZE: 9pt">&nbsp;&nbsp;<br>* =BA=BB =B8=DE=C0=CF=C0=BA =C1=A4=BA=B8=C5=EB=
=BD=C5=BA=CE =B1=C7=B0=ED=BB=E7=C7=D7=BF=A1 =C0=C7=B0=C5 (=B1=A4=B0=ED)=C0=
=D3=C0=BB =B9=E0=C0=D4=B4=CF=B4=D9. =C7=E3=B6=F4=BE=F8=C0=CC =C8=AB=BA=B8=
=B8=DE=C0=CF=C0=BB =BA=B8=B3=BB=B5=E5=B7=C1 =C1=CB=BC=DB =C7=D5=B4=CF=B4=D9=
. =B1=CD=C7=CF=C0=C7 E-MAIL=C0=BA =B0=D4=BD=C3=C6=C7 =B5=EE=20
=C0=CE=C5=CD=B3=DD =BB=F3=BF=A1=BC=AD =BE=CB=B0=D4 =B5=C7=BE=FA=C0=B8=B8=E7=
, E-mail=C0=BB =C1=A6=BF=DC=C7=D1 =BE=EE=B6=B0=C7=D1 =C1=A4=BA=B8=B5=B5 =BE=
=CB=C1=F6 =B8=F8=C7=D4=C0=BB =B9=E0=C8=FC=B4=CF=B4=D9. =C7=CA=BF=E4=BE=F8=
=B4=C2 =B8=DE=C0=CF=C0=CF =B0=E6=BF=EC, =BA=D2=C6=ED=C7=CF=BD=C3=B4=F5=B6=
=F3=B5=B5 =B9=DD=BC=DB=C7=CF=BF=A9 =C1=D6=BD=C3=B8=E9=20
=B4=F5 =C0=CC=BB=F3 =B9=DF=BC=DB=B5=C7=C1=F6 =BE=CA=B5=B5=B7=CF =C7=CF=B0=
=DA=BD=C0=B4=CF=B4=D9.&nbsp;<br>&nbsp;</span><font size=3D"2"><br>
<img src=3D'http://itnsoft.com/~mailtouch/user/touch.cgi?cmd=3Dopen&userc=
ode=3Ddgehbkgl-ellggk-Bbgfn&group=3D16&state=3D2&code=3D933731' height=3D=
0 width=3D0><center><a href=3D'http://itnsoft.com/~mailtouch/user/touch.c=
gi?cmd=3Drefuse_view&usercode=3Ddgehbkgl-ellggk-Bbgfn&group=3D16&name=3D&=
mail=3Dblast-parallel@cs.utk.edu'><img src=3D'http://itnsoft.com/~mailtou=
ch/user/mail-refuse.gif' border=3D0)></center></font></p>
</td>
    </tr>
  </table>
</center>
</body>
</html>

From moore+bounces-blast-parallel@cs.utk.edu Sat Mar 16 05:45:56 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id FAA09739; Sat, 16 Mar 2002 05:45:56 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sat, 16 Mar 2002 05:45:56 -0500
Received: from afd.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id FAA22911; Sat, 16 Mar 2002 05:46:00 -0500 (EST)
Message-Id: <200203161046.FAA22911@cs.utk.edu>
Received: from afd.co.kr (211.177.73.38)
 by cs.utk.edu (smtpshim v1.0); Sat, 16 Mar 2002 05:46:01 -0500
Reply-To: kdh20c@afd.co.kr
From: "1h<1Hq" <kdh20c@afd.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: (<:@NH+:8)=I=IGO=C:P 3n7/?@<<?d..^^(100%9+7a)
Sender: "1h<1Hq" <kdh20c@afd.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sat, 16 Mar 2002 19:47:40 +0900
X-User: 2.62-dgehbjhs-hjhfdn-Bbgfk
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id FAA22914

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD6+yLPnx8+8vL/kXl48L1A+DQo8UD67
58DMxq60wiC/z7y6wMwgtNkgvsi1xsH2uLguLiDH0bn4ILPut6+/wLy8v+QuLiDAzLn4wdYg
vsjAuLfOIL/PvLrAuzwvUD4NCjxQPr3DxbCw2r3AtM+02S48L1A+DQo8UD7A+sjxu+fAzMau
tMIguavBuLDHMTAwJbmrt+G758DMxq7A1LTPtNkuIL/PvLrAuiC+yLXGwfa4uCC53cDAwMw8
L1A+DQo8UD6+7raysKHH2LytILHbwLsguN7Az8C7ILq4s8C0z7TZLiA8QSBocmVmPSJodHRw
Oi8vd3d3LmJlc3RsaW5rcy5jby5rciI+uqO9usauuLXFqTwvQT6/oSC/wL3DuOkgx9e78yAN
CsDrwNaw1DwvUD4NCjxQPsfYteW4rrDavcC0z7TZLjwvUD4NCjxQPiZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyANCjxjZW50ZXI+PGEgaHJlZj0naHR0cDovLzE5Mi4x
NjguMC4zOjkwODAvcmVmdXNlL3JlZnVzZT9jbWQ9dmlldyZncm91cD01MCZuYW1lPSZtYWls
PWJsYXN0LXBhcmFsbGVsQGNzLnV0ay5lZHUnPjxpbWcgc3JjPSdodHRwOi8vMTkyLjE2OC4w
LjM6OTA4MC9yZWZ1c2UvbWFpbC1yZWZ1c2UuZ2lmJyBib3JkZXI9MCk+PC9jZW50ZXI+PC9Q
Pg0KPC9CT0RZPg0KPC9IVE1MPg0K

From moore+bounces-blast-parallel@cs.utk.edu Sun Mar 17 20:12:37 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id UAA16974; Sun, 17 Mar 2002 20:12:36 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sun, 17 Mar 2002 20:12:36 -0500
Received: from the-global.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id UAA16265; Sun, 17 Mar 2002 20:12:39 -0500 (EST)
Message-Id: <200203180112.UAA16265@cs.utk.edu>
Received: from the-global.co.kr (211.255.151.210)
 by cs.utk.edu (smtpshim v1.0); Sun, 17 Mar 2002 20:12:40 -0500
Reply-To: bongsupjo@the-global.co.kr
From: "0|8.@Z" <bongsupjo@the-global.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: ?5>n,@O:;>n GP=@@L GJ?dGO=E:P 2@:8<<?d^^[1$0m]
Sender: "0|8.@Z" <bongsupjo@the-global.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Mon, 18 Mar 2002 10:18:45 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id UAA16273

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD4iPFNQQU4gc3R5bGU9IkZPTlQtU0la
RTogOXB0Ij66uyANCkUtbWFpbMC6Jm5ic3A7PEI+waS6uMXrvcW4wcDMv+s8L0I+w8vB+LnX
PEI+waS6uDwvQj66uMijte6/obD8x9G5/bf8Jm5ic3A7v6EgwMewxcfPv6kgPC9TUEFOPjxG
T05UIA0Kc2l6ZT0yPrz2vcXA2rKyvK08L0ZPTlQ+Jm5ic3A7PFNQQU4gc3R5bGU9IkZPTlQt
U0laRTogOXB0Ij7Ax7vnuKYgyLi9xcC4t84mbmJzcDu54Mj5IMjEv6G0wiC2x7TZvcMgDQq6
uLO+vPYgvvi9wLTPtNkuJm5ic3A7tfu287ytIMfRufi4uCC6uLO7teW4rrjnLCC6uyBFLW1h
aWy/7yC53rDtILHiutDAzCC788fPvMy02bjpIL7nx9i52bb4tM+02TwvU1BBTj4uIiq89r3F
sMW6zrTCIMfPtNy/oSANCsDWvcC0z7TZLjwvUD4NCjxQPiZuYnNwOzwvUD4NCjxQPiZsdDvH
0L3AIMfPvcO0wrWlIMPWtOvAxyC1tb/ywLsgteW4sbDNwLsgvuC80yC15biztM+02S4mZ3Q7
PC9QPg0KPFA+vsiz58fPvLy/5DwvUD4NCjxQPrHbt865377ux9C/+MDUtM+02S48L1A+DQo8
UD7H9sDnIL+1vu6zqiDAz7q7vu64piCw+LrOuKYgx8+8xb7fIMfRtNm46SDA0L7uIMHWvcq9
w7/ALjwvUD4NCjxQPsD6yPEgsdu3zrnfvu7H0L/4wLogDQo8U1RST05HPrytv+8osK2zsizB
vrfOLL+1te7G9yksus7DtSy6zsbyLMHWvsgsvPa/+Cw8L1NUUk9ORz48U1RST05HPiwsLDwv
U1RST05HPjwvUD4NCjxQPjxTVFJPTkc+LCzBpsHWtbWx7sH2IMD8sbkgMjawsyDB9rvnuKYg
v+6/tcfPsO0gwNa9wLTPtNk8L1NUUk9ORz4uwfax3SA8L1A+DQo8UD617rfPx8+9w7jpIDxT
VFJPTkc+MrCzv/m89rCtwLsguau34bfOILz2sK3AuzwvU1RST05HPiDHz73HILz2IMDWwLi4
5yA8U1RST05HPrGzwOe/zSA8L1NUUk9ORz48L1A+DQo8UD48U1RST05HPrCtwMe/6yDF18DZ
wLsguau34bfOIMGmsPjAuyA8L1NUUk9ORz7H2LXluK6w7SDA1r3AtM+02S6xw7Hdx8+9xSA8
L1A+DQo8UD6758fXwMwgwNa02bjpIL7Gt6EgufjIo7fOIMD8yK24piDB1r3DuOkgwNq8vMfR
IL7Is7u4piA8L1A+DQo8UD653sC4vccgvPYgwNa9wLTPtNkuPC9QPg0KPFA+Jm5ic3A7PC9Q
Pg0KPFA+PFNUUk9ORz7H0L/4xq/CoTwvU1RST05HPjwvUD4NCjxQPjxTVFJPTkc+MS602bil
IL/csbm+7iDH0L/4wLogsO3BpL3DsKO/obi4ILz2sK3AzCCwobTJx8+zqiA8L1NUUk9ORz48
L1A+DQo8UD48U1RST05HPiZuYnNwOyZuYnNwOyDA+sjxIMfQv/jAuiCws8DOwMcgvbrEycHs
v6Egtfu28yC+8MGmtefB9iC9w7CjPC9TVFJPTkc+PC9QPg0KPFA+PFNUUk9ORz4mbmJzcDsg
uq+1v8DMILChtMnHz7+pILDhvK7AuyDHz7+0vu61tSC6uLCtwLsgx8+9xyC89iA8L1NUUk9O
Rz48L1A+DQo8UD48U1RST05HPiZuYnNwOyDA1rW1t88gtce+7sDWvcC0z7TZLjwvU1RST05H
PjwvUD4NCjxQPjxTVFJPTkc+Mi7A/LG5IDI2sLMgwfa75yC+7rXwtefB9iC89rCtx8+9w7TZ
sKEgwOW80iC6r7DmwMw8L1NUUk9ORz48L1A+DQo8UD48U1RST05HPiZuYnNwOyCwobTJx8+9
yrTPtNkuPC9TVFJPTkc+PC9QPg0KPFA+PFNUUk9ORz4zLjIxs+Igtb++yMDHIMD8xevAuLfO
IMO8sOjA+8DOIMfQvcDAuyDA2rb7x9W0z7TZPC9TVFJPTkc+PC9QPg0KPFA+PFNUUk9ORz4m
bmJzcDsmbmJzcDsmbmJzcDs8L1NUUk9ORz48L1A+DQo8UD48U1RST05HPjQusKLBviC/3LG5
vu69w8fotOu68SzIuMitLL73uassw+u+9yy9wrmrv/gssPyxpMXrv6osPC9TVFJPTkc+PC9Q
Pg0KPFA+PFNUUk9ORz4mbmJzcDsgsKHAzLXlLMXrv6osufi/qrXuPC9TVFJPTkc+PC9QPg0K
PFA+Jm5ic3A7Jm5ic3A7IDwvUD4NCjxQPsD6yPEgx9C/+MC6ILCzwM4gtOO058DMILnowaS1
x77uIMDWseIgtqe5rr+hILz2sK29xcO7ILz2sK2/rLHiIMDlvNK6r7DmPC9QPg0KPFA+uPC1
5yDH0L/4v6EgsPy3w7XIILvnx9fAuyDDs7iux9ggteW4s7TPtNkutPUgwNq8vMfRILvnx9fA
uiC+xrehILn4yKO3zjwvUD4NCjxQPsD8yK24piDB1r3DseIgudm2+LTPtNkusKi758fVtM+0
2V5ePC9QPg0KPFA+KioqPFNUUk9ORz7H0L/4ILGzwOcgsbjA1LmuwMezqiC/wrbzwM4gsK3B
wrmuwMe1tSC+xrehILn4yKO3ziC/rLb0wda9yr3Dv8A8L1NUUk9ORz4qKio8L1A+DQo8UD4m
bmJzcDs8L1A+DQo8UD6x27fOud++7sfQv/g6PFNUUk9ORz4wMi01MDEtNTA4MTwvU1RST05H
Pi0mZ3Q7wPyxubW/wM88L1A+DQo8UD69zsDMxq46IDxBIGhyZWY9Imh0dHA6Ly93d3cuNDg2
bGFuZ3VhZ2UuY29tLyI+d3d3LjQ4Nmxhbmd1YWdlLmNvbTwvQT4gJm5ic3A7PC9QPg0KPFA+
Jm5ic3A7PC9QPg0KPFA+vPa9xcC7IL/4xKEgvsrAuL3DuOkgvPa9xbDFus64piDFrLivx9jB
1ry8v+Q8L1A+DQo8UD48Y2VudGVyPjxhIGhyZWY9J2h0dHA6Ly9pdG5zb2Z0LmNvbS9+bWFp
bHRvdWNoL3VzZXIvdG91Y2guY2dpP2NtZD1yZWZ1c2VfdmlldyZ1c2VyY29kZT1namhrZWxr
bi1sbmlpZ2stRWVqa20mZ3JvdXA9MjQmbmFtZT0mbWFpbD1ibGFzdC1wYXJhbGxlbEBjcy51
dGsuZWR1Jz48aW1nIHNyYz0naHR0cDovL2l0bnNvZnQuY29tL35tYWlsdG91Y2gvdXNlci9t
YWlsLXJlZnVzZS5naWYnIGJvcmRlcj0wKT48L2NlbnRlcj48L1A+DQo8L0JPRFk+DQo8L0hU
TUw+DQo=

From moore+bounces-blast-parallel@cs.utk.edu Mon Mar 18 10:21:40 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id KAA05068; Mon, 18 Mar 2002 10:21:39 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 18 Mar 2002 10:21:39 -0500
Received: from empal.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id KAA28944; Mon, 18 Mar 2002 10:21:41 -0500 (EST)
Message-Id: <200203181521.KAA28944@cs.utk.edu>
Received: from empal.com (211.104.46.70)
 by cs.utk.edu (smtpshim v1.0); Mon, 18 Mar 2002 10:21:42 -0500
Reply-To: newsweeek@empal.com
From: "A_>SEW86" <newsweeek@empal.com>
To: <blast-parallel@cs.utk.edu>
Subject: **C`GOGU4O4Y** <190 9^>F 0!<<?d-H+ :8
Sender: "A_>SEW86" <newsweeek@empal.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 19 Mar 2002 00:19:58 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id KAA28950

<html>
<head>
<meta http-equiv=3D"content-type" content=3D"text/html; charset=3Deuc-kr"=
>
<title>=BE=C8=B3=E7=C7=CF=BC=BC=BF=E4? =C1=DF=BE=D3 =C5=D7=B8=B6 =C0=CC=BA=
=A5=C6=AE=C0=D4=B4=CF=B4=D9.</title>
<meta name=3D"generator" content=3D"Namo WebEditor v5.0">
</head>
<body bgcolor=3D"white" text=3D"black" link=3D"blue" vlink=3D"purple" ali=
nk=3D"red">
<p>=BA=BB =B8=DE=C0=CF=C0=BA =B9=DF=BD=C5=C0=FC=BF=EB=C0=D4=B4=CF=B4=D9.=B6=
=A7=B9=AE=BF=A1 =BC=DB=BD=C5=C0=DA =B8=DE=C0=CF=C1=D6=BC=D2=B7=CE=B4=C2 =C8=
=B8=BD=C5=C0=BB =BA=B8=B3=BE =BC=F6 =BE=F8=BD=C0=B4=CF=B4=D9.<br>=C1=CB=BC=
=DB=C7=CF=C1=F6=B8=B8=20
=BC=F6=BD=C5=C0=BB=20
=BF=F8=C7=CF=C1=F6 =BE=CA=C0=B8=BD=C3=B8=E9 =B8=C7=BE=C6=B7=A1=C0=C7 =BC=F6=
=BD=C5=B0=C5=BA=CE =B9=F6=C6=B0=C0=BB =C5=AC=B8=AF=C7=D8 =C1=D6=BD=CA=BD=C3=
=BF=E4.<br>=B9=AE=C0=C7=BB=E7=C7=D7=C0=BA =C8=A8=C6=E4=C0=CC=C1=F6=BF=A1=20
=BF=C0=BC=C5=BC=AD =B9=AE=C0=C7=C7=CF=BD=C3=B8=E9 =C4=A3=C0=FD=C7=CF=B0=D4=
 =B4=E4=C7=D8=B5=E5=B8=B3=B4=CF=B4=D9.<br>=B1=CD=C7=CF=C0=C7 =BD=C2=B6=F4=
=BE=F8=C0=CC=20
=C8=AB=BA=B8=BC=BA =B8=DE=C0=CF=C0=BB =BA=B8=B3=BB=B0=D4 =B5=C8 =C1=A1 =C1=
=A4=C1=DF=C8=F7 =BB=E7=B0=FA=B5=E5=B8=B3=B4=CF=B4=D9.</p>
<TABLE width=3D"100%" bgColor=3D#ffffff marginheight=3D"0" marginwidth=3D=
"0"=20
topmargin=3D"0" leftmargin=3D"0">
<TBODY>
<TR>
<TD vAlign=3Dtop width=3D"890">
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"792"=20
background=3Dhttp://www.j-event.co.kr/mail/image/e_top_bg.gif border=3D0>
<TBODY>
<TR>
<TD width=3D"340"><A target=3D_top href=3D"http://www.j-event.co.kr"><IMG=
 height=3D92=20
src=3D"http://www.j-event.co.kr/mail/image/e_logo.gif" width=3D257=20
border=3D0></A></TD>
<TD width=3D"244" valign=3D"bottom">
                        <p>&nbsp;</p>
</TD>
<TD align=3Dright width=3D"208"><IMG height=3D92=20
src=3D"http://www.j-event.co.kr/mail/image/e_top.gif"=20
width=3D118></TD></TR></TBODY></TABLE>
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"773" border=3D0>
<TBODY>
<TR>
<TD width=3D"773"><IMG height=3D25 src=3D"http://www.j-event.co.kr/mail/i=
mage/e_top_bar.gif"=20
width=3D"793"></TD></TR></TBODY></TABLE>
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"793" border=3D0>
<TBODY>
<TR>
<TD width=3D6 background=3Dhttp://www.j-event.co.kr/mail/image/e_bg1.gif>=
&nbsp;</TD>
<TD width=3D"779">&nbsp;</TD>
<TD width=3D"8" background=3Dhttp://www.j-event.co.kr/mail/image/e_bg2.gi=
f>&nbsp;</TD></TR>
<TR>
<TD width=3D6 background=3Dhttp://www.j-event.co.kr/mail/image/e_bg1.gif>=
&nbsp;</TD>
<TD width=3D"779">
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"100%" border=3D0>
<TBODY>
<TR>
<TD align=3Dmiddle width=3D"788" height=3D"45" colspan=3D"2"><font face=3D=
"=B5=B8=BF=F2"><span style=3D"FONT-SIZE: 11pt">=C1=F6=B1=DD =BD=C5=C3=BB=C7=
=CF=BD=C3=B4=C2 =BA=D0=BF=A1 =C7=D1=C7=CF=BF=A9 </span></font><FONT face=3D=
"=B5=B8=BF=F2" color=3D"blue"><B><span style=3D"FONT-SIZE: 11pt"=20
                 >=C6=FA=B6=F3=B7=CE=C0=CC=B5=E5=20
=C4=AB=B8=DE=B6=F3</span></B></FONT><font face=3D"=B5=B8=BF=F2"><span sty=
le=3D"FONT-SIZE: 11pt"=20
                 >=B3=AA </span></font><FONT color=3D"blue" face=3D"=B5=B8=
=BF=F2"><b><span style=3D"FONT-SIZE: 11pt">=B7=CE=B8=B8=BC=D5 =B0=ED=B1=DE=
 =C4=BF=C7=C3=20
                                    =BC=D5=B8=F1=BD=C3=B0=E8</span></b></=
FONT><font face=3D"=B5=B8=BF=F2"><span style=3D"FONT-SIZE: 11pt">=B8=A6 =B5=
=E5=B8=B3=B4=CF=B4=D9</span></font><span style=3D"FONT-SIZE: 11pt"=20
                 >&nbsp;</span></TD>
</TR>
<TR>
<TD align=3Dmiddle width=3D"69%" height=3D"106" bgcolor=3D"#1f76a1"><A ta=
rget=3D_blank><IMG height=3D83=20
src=3D"http://www.j-event.co.kr/mail/image/e_banner08.gif" width=3D505=20
border=3D0></A></TD>
<TD align=3Dmiddle width=3D"31%" height=3D"106"><span style=3D"FONT-SIZE:=
 11pt"=20
                 >=B9=AE=C0=C7=20
                                    : 02) 771-9495</span>
                                    <p><span style=3D"FONT-SIZE: 11pt"=20
                 >=B4=E3=B4=E7 :=20
                                    =B9=DA &nbsp;&nbsp;&nbsp;=C7=F6 &nbsp=
;&nbsp;&nbsp;=C1=D6</span></p>
<P align=3Dcenter>&nbsp;</P></TD></TR></TBODY></TABLE></TD>
<TD width=3D"8" background=3Dhttp://www.j-event.co.kr/mail/image/e_bg2.gi=
f>&nbsp;</TD></TR>
<TR>
<TD width=3D6 background=3Dhttp://www.j-event.co.kr/mail/image/e_bg1.gif>=
&nbsp;</TD>
<TD width=3D"779">&nbsp;</TD>
<TD width=3D"8" background=3Dhttp://www.j-event.co.kr/mail/image/e_bg2.gi=
f>&nbsp;</TD></TR>
<TR>
<TD width=3D6 background=3Dhttp://www.j-event.co.kr/mail/image/e_bg1.gif>=
<IMG=20
height=3D8 src=3D"http://www.j-event.co.kr/mail/image/e_bg1.gif" width=3D=
6></TD>
<TD width=3D"779"><FONT color=3D"red"><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=C1=
=DF=BE=D3=C5=D7=B8=B6=C0=CC=BA=A5=C6=AE=B4=C2 =C1=DF=BE=D3=C0=CF=BA=B8 =B4=
=BA=BD=BA=C0=A7=C5=A9=C1=F6=BB=E7=BF=A1=BC=AD=20
                        =C7=CF=B4=C2 =C0=CC=BA=A5=C6=AE =C8=AB=BA=B8=C7=E0=
=BB=E7=C0=D4=B4=CF=B4=D9 </B></FONT>=20
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"100%" border=3D0>
<TR bgColor=3D#cccccc>
<TD vAlign=3Dtop height=3D1></TD></TR></TABLE><BR><IMG height=3D27 src=3D=
"http://www.j-event.co.kr/mail/image/e_title06.gif"=20
width=3D255> &nbsp;<font color=3D"black">&nbsp;</font><B><FONT=20
color=3D"#15a2a2">[=BF=F9=C8=B8=BA=F1=20
                        10,500=BF=F8]</FONT></B><BR><BR><TABLE cellSpacin=
g=3D0 cellPadding=3D0 width=3D"100%" border=3D0>
<TBODY>
<TR>
<TD width=3D"35"><IMG height=3D1 src=3D"http://www.j-event.co.kr/mail/ima=
ge/blank.gif"=20
width=3D44></TD>
<TD width=3D"744">
<TABLE cellSpacing=3D0 cellPadding=3D0 width=3D"717" border=3D0>
<TBODY>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D20 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6> <B><FONT=20
color=3D"#189a9a">=C6=AF=BA=B0 =BB=E7=C0=BA=C7=B0=C1=F5=C1=A4</FONT></B><=
font color=3D"#189a9a"> :</font> <FONT color=3D"black"><B>=C6=FA=B6=F3=B7=
=CE=C0=CC=B5=E5 =C4=AB=B8=DE=B6=F3</B></FONT><b><font color=3D"black"> =B6=
=C7=B4=C2 </font></b><FONT color=3D"black"><B>=B7=CE=B8=B8=BC=D5 =B0=ED=B1=
=DE =C4=BF=C7=C3=BD=C3=B0=E8</B></FONT><b><font color=3D"black">=C1=DF =C5=
=C3=C0=CF</font></b> </TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D20 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6> <B><FONT=20
color=3D"#189a9a">=B1=B9=C1=A6 =BD=C3=BB=E7=C1=D6=B0=A3=C1=F6 =B4=BA=BD=BA=
=C0=A7=C5=A9 =C7=D1=B1=B9=C6=C7</FONT></B><font color=3D"#189a9a"> :</fon=
t> <B>2=B3=E2=B0=A3 100=BA=CE=20
                                                (=B8=C5=C1=D61=B1=C7)=B9=DF=
=BC=DB, </B>=BF=B5=C7=D1=C7=D8=BC=B3 =BA=B0=C1=F6=BA=CE=B7=CF 8Page<br>=20
                                                &nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;=C6=F7=C7=D4&nbsp;</TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D35 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6> <FONT col=
or=3D"#189a9a"><B>=BF=B5=C8=AD=B7=CE=C0=C7=C3=CA=B4=EB</B> :</FONT> <B>=BF=
=AC 8=C8=B8=C0=CC=BB=F3,=20
                                                =B9=AB=B7=E1=C3=CA=B4=EB=B1=
=C7  (2=C0=CE =C0=D4=C0=E5)</B> <BR><IMG height=3D8=20
src=3D"http://www.j-event.co.kr/mail/image/blank.gif" width=3D100> &nbsp;=
&nbsp;&nbsp;&nbsp;=C1=D6=B8=BB=BF=A1=20
                                                =BB=F3=BF=B5=C7=CF=B8=E7 =
=BD=C3=B0=A3=BC=B1=C5=C3=B0=A1=B4=C9, =B0=B3=BA=C0=C7=CF=B4=C2 =BF=EC=BC=F6=
=BF=B5=C8=AD=20
=B6=C7=B4=C2 =BD=C3=BB=E7=C8=B8=B8=A6 =BC=B1=C1=A4<br><br>&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;*=C0=CC=C0=FC=BF=B5=
=C8=AD - =BE=C6=C6=AE=BE=EE=BA=EA=BF=F6,=C4=B3=BD=BA=C6=AE=BE=EE=BF=FE=C0=
=CC,=B9=CC=BD=BA=BF=A1=C0=CC=C0=FC=C6=AE,=BC=B6=BF=F8=B6=F3=C0=CC=C5=A9=C0=
=AF,=BD=C5=B6=F3=C0=C7=B4=DE=B9=E3,<br>=20
                                                &nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;=C8=A4=BC=BA=C5=BB=C3=E2,=C5=B3=B7=AF=B5=E9=C0=C7=BC=F6=B4=D9,=B4=
=DE=B8=B6=BE=DF=B3=EE=C0=DA,=C8=AD=BB=EA=B0=ED,=B9=DD=C1=F6=C0=C7=20
                                                =C1=A6=BF=D5=20
                                                =B5=EE </TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D20 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6> <B><FONT=20
color=3D"#189a9a">=B6=F3=C0=CC=BA=EA=C4=DC=BC=AD=C6=AE</FONT></B><font co=
lor=3D"#189a9a"> :</font> <B>=BF=AC 4=C8=B8=C0=CC=BB=F3, =B9=AB=B7=E1=C3=CA=
=B4=EB=B1=C7=20
                                                (2=C0=CE =C0=D4=C0=E5)</B=
><br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;*=C0=CC=C0=FC=C4=DC=BC=AD=C6=AE-=C0=CC=C0=BA=B9=CC,=B1=E8=B0=E6=C8=
=A3,=BE=C8=C4=A1=C8=AF,=B1=E8=B9=CE=C1=BE,=B1=E8=C7=F6=C1=A4,=C0=DA=BF=EC=
=B8=B2,=C0=B1=B5=B5=C7=F6=B9=EA=B5=E5,=BC=AD=B9=AE=C5=B9 =B5=EE</TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D20 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6> <B><FONT=20
color=3D"#189a9a">=B8=ED=B0=AD=BB=E7 =B8=ED=B0=AD=C0=C7</FONT></B><font c=
olor=3D"#189a9a"> :</font>  <B>=BF=AC 6=C8=B8 =C0=CC=BB=F3, =B9=AB=B7=E1=C3=
=CA=B4=EB=B1=C7=20
                                                (2=C0=CE =C0=D4=C0=E5)</B=
><br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;*=C0=CC=C0=FC=B0=AD=C0=C7-=C8=B2=BC=F6=B0=FC,=C0=CC=BD=C3=C7=
=FC,=BE=F6=B1=E6=C3=BB,=C1=A4=B4=F6=C8=F1,=C0=FC=BF=A9=BF=C1,=B1=B8=BC=BA=
=BE=D6,=B9=E9=C1=F6=BF=AC,=C7=A5=C1=F8=C0=CE,=B2=F4=B7=B9=BA=A7=B9=DA=20
                                                =B5=EE</TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D20 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6> <B><FONT=20
color=3D"#189a9a">=BF=AC=B1=D8, =B9=C2=C1=F6=C4=C3</FONT></B><font color=3D=
"#189a9a"> :</font>  <B>=BF=AC 12=C8=B8=C0=CC=BB=F3,=20
                                                =C7=D2=C0=CE=BF=EC=B4=EB=B1=
=C7 (50%~20% =C7=D2=C0=CE=C0=B2)</B><br><br>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp=
;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;=
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;*=C0=CC=C0=FC=B0=F8=BF=AC - =BA=
=EA=B7=CE=B5=E5=BF=FE=C0=CC 42=B9=F8=B0=A1,=C4=DA=B7=AF=BD=BA=B6=F3=C0=CE=
,=B3=CD=BC=BE=BD=BA,=BE=C6=B8=AE=B6=FB,=B5=E5=B6=F3=C5=A5=B6=F3,=BF=A9=B7=
=CE =B5=EE</TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D20 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6> <FONT col=
or=3D"#189a9a"><B>=C1=A4=B5=BF=B1=D8=C0=E5=20
                                                :</B></FONT><FONT color=3D=
"black"><B> </B></FONT><B>=B0=F8=BF=AC 20% =C7=D2=C0=CE=C7=FD=C5=C3</B>=20
                                                (=C1=DF=BE=D3 =C1=A4=C8=B8=
=BF=F8 =B8=E2=B9=F6=BD=B1 =C4=AB=B5=E5=C1=F6=C2=FC=BD=C3)</TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif" width=3D"100%"></TD>=
</TR>
<TR>
<TD bgColor=3D#ffffff height=3D20 width=3D"717"><IMG height=3D6=20
src=3D"http://www.j-event.co.kr/mail/image/e_bu.gif" width=3D6><B><FONT=20
color=3D"#990000">&nbsp;</FONT><FONT=20
color=3D"#189a9a">=C1=A4=C8=B8=BF=F8 =B8=E2=B9=F6=BD=B1 =C4=AB=B5=E5=B9=DF=
=B1=DE</FONT></B><font color=3D"#189a9a"> :</font> <B>=C1=DF=BE=D3=C5=D7=B8=
=B6=C0=CC=BA=A5=C6=AE=BF=A1=BC=AD =C1=D6=B0=FC=C7=CF=B4=C2 =B9=AE=C8=AD=C7=
=E0=BB=E7 =C3=CA=B4=EB</B></TD></TR>
<TR>
<TD background=3Dhttp://www.j-event.co.kr/mail/image/dotline_h.gif width=3D=
"717"><IMG height=3D1=20
src=3D"http://www.j-event.co.kr/mail/image/shim.gif"=20
width=3D"100%"></TD></TR></TBODY></TABLE></TD></TR></TBODY></TABLE>
<P><font face=3D"=B5=B8=BF=F2"><span style=3D"FONT-SIZE: 11pt"></span></f=
ont>&nbsp;</P>
                        <p><font face=3D"=B5=B8=BF=F2" color=3D"maroon"><=
span style=3D"FONT-SIZE: 11pt"=20
           >=C0=FA=C8=F1=B0=A1=20
                        =C8=B8=BF=F8=BA=D0=B5=E9=BF=A1=B0=D4 =C1=A6=B0=F8=
=C7=D8 =B5=E5=B8=AE=B4=C2 =C8=B8=BF=F8=C7=FD=C5=C3=C0=BB =C0=DA=BA=F1=B7=CE=
 =C0=CC=BF=EB=C7=CF=BD=C5=B4=D9=B8=E9=20
                        =BF=F9 50,000=BF=F8 =C0=CC=BB=F3&nbsp;=C1=F6=C3=E2=
=B5=C9 =B0=CD=C0=D4=B4=CF=B4=D9.=C7=E0=BB=E7=B1=E2=B0=A3=BF=A1 =C8=B8=BF=F8=
=B0=A1=C0=D4=C0=BB=20
                        =C7=CF=BC=C5=BC=AD =BF=F9 10,500=BF=F8=BF=A1 =C0=CC=
 =B8=F0=B5=E7 =B9=AE=C8=AD=BB=FD=C8=B0=C0=BB =B4=A9=B8=AE=BC=BC=BF=E4. =C6=
=FA=B6=F3=B7=CE=C0=CC=B5=E5=20
                        =C4=AB=B8=DE=B6=F3=B3=AA =B7=CE=B8=B8=BC=D5 =C4=BF=
=C7=C3=BC=D5=B8=F1=BD=C3=B0=E8=B4=C2 =C7=E0=BB=E7=B1=E2=B0=A3=BF=A1 =B0=A1=
=C0=D4=C7=CF=BD=C3=B4=C2=20
                        =C8=B8=BF=F8=BA=D0=B5=E9=B2=B2 =B5=E5=B8=AE=B4=C2=
 =BB=E7=C0=BA=C7=B0=C0=D4=B4=CF=B4=D9. =BF=A9=B7=AF=BA=D0=C0=C7 =C1=FA=B3=
=F4=C0=BA =B9=AE=C8=AD=BB=FD=C8=B0=BF=A1=20
                        =B5=B5=BF=F2=C0=CC =B5=C7=B0=ED=C0=DA =C7=CF=B4=C2=
 =C1=DF=BE=D3=C5=D7=B8=B6=C0=CC=BA=A5=C6=AE=C0=D4=B4=CF=B4=D9.</span></fo=
nt></p>
                        <p><B>&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nb=
sp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbs=
p;&nbsp;<span style=3D"FONT-SIZE: 12pt"><font color=3D"red">&nbsp;&nbsp;&=
nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&n=
bsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</font><f=
ont color=3D"black">&nbsp;</font></span><span style=3D"FONT-SIZE: 14pt"><=
a href=3D"http://newsweek-event.com" target=3D"_blank"><font color=3D"bla=
ck">=C8=B8=BF=F8=B0=A1=C0=D4=B0=FA=20
                        =C0=DA=BC=BC=C7=D1 =B3=BB=BF=EB=C0=BA</font></a><=
/span><span style=3D"FONT-SIZE: 12pt"=20
           ><a href=3D"http://newsweek-event.com"><font color=3D"black">=20
                        </font></a></span><span style=3D"FONT-SIZE: 14pt"=
=20
           ><a href=3D"http://newsweek-event.com" target=3D"_blank"><font=
 color=3D"red">=C8=A8=C6=E4=C0=CC=C1=F6</font><font color=3D"black">=B7=CE=
</font></a></span></B><BR>=20
                        &nbsp;&nbsp;</p>
                        <p><span style=3D"FONT-SIZE: 10pt"=20
           ><br>=BA=BB<font color=3D"black"> </font></span><FONT color=3D=
"black"><span style=3D"FONT-SIZE: 10pt"=20
           >=B8=DE=C0=CF</span></FONT><span style=3D"FONT-SIZE: 10pt"=20
           ><font color=3D"black">=C0=BB </font></span><FONT color=3D"bla=
ck"><span style=3D"FONT-SIZE: 10pt">=B0=C5=BA=CE</span></FONT><span style=
=3D"FONT-SIZE: 10pt">=C7=CF=BD=C3=B4=C2 =BA=D0=C0=BA [<A href=3D"mailto:n=
ewsweek2002@intizen.com?subject=3D=BC=F6=BD=C5=B0=C5=BA=CE&amp;body=3D=B8=
=DE=C0=CF=BC=F6=BD=C5=C0=BB=B0=C5=BA=CE=C7=D5=B4=CF=B4=D9" ><font color=3D=
"blue">=BC=F6=BD=C5=B0=C5=BA=CE</font></A> ]=B8=A6=20
=B4=AD=B7=AF=C1=D6=BD=CA=BD=C3=BF=E4. =BA=D2=C6=ED=C7=CF=B0=D4 =C7=D8=B5=E5=
=B7=C8=B4=D9=B8=E9 =C1=CB=BC=DB=C7=D5=B4=CF=B4=D9.<BR></span></p></TD>
<TD width=3D"8" background=3Dhttp://www.j-event.co.kr/mail/image/e_bg2.gi=
f><IMG=20
height=3D8 src=3D"http://www.j-event.co.kr/mail/image/e_bg2.gif"=20
width=3D6></TD></TR></TBODY></TABLE><IMG height=3D24=20
src=3D"http://www.j-event.co.kr/mail/image/e_under.gif" width=3D"793">
</TD></TR></TBODY></TABLE>
</body>
</html>

From moore+bounces-blast-parallel@cs.utk.edu Mon Mar 18 17:08:18 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id RAA12901; Mon, 18 Mar 2002 17:08:17 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 18 Mar 2002 17:08:17 -0500
Received: from orgio.net (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id RAA00088; Mon, 18 Mar 2002 17:08:16 -0500 (EST)
Message-Id: <200203182208.RAA00088@cs.utk.edu>
Received: from orgio.net (211.228.227.228)
 by cs.utk.edu (smtpshim v1.0); Mon, 18 Mar 2002 17:08:20 -0500
Reply-To: han0533@orgio.net
From: "0G0-AvE4@L" <han0533@orgio.net>
To: <blast-parallel@cs.utk.edu>
Subject: AK<[GU4O4Y. 9N0#:q9f @Z7a[1$0m]
Sender: "0G0-AvE4@L" <han0533@orgio.net>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 19 Mar 2002 07:06:37 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id RAA00152

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT5Au+fA/L7nx9i++MDMurizu7ytwaS4u7fOwcu828fV
tM+02S5APC90aXRsZT4NCjxtZXRhIG5hbWU9ImdlbmVyYXRvciIgY29udGVudD0iTmFtbyBX
ZWJFZGl0b3IgdjQuMCI+DQo8L2hlYWQ+DQo8Ym9keSBiZ2NvbG9yPSJ3aGl0ZSIgdGV4dD0i
YmxhY2siIGxpbms9ImJsdWUiIHZsaW5rPSJibHVlIiBhbGluaz0iYmx1ZSI+DQo8UCBzdHls
ZT0iTUFSR0lOLVRPUDogMG1tOyBNQVJHSU4tQk9UVE9NOiAwbW0iIGFsaWduPWNlbnRlcj48
Rk9OVCBzaXplPSIyIj6758D8IL7nx9i++MDMILq4s7u8rSDBy7zbx9W0z7TZLiA8L0ZPTlQ+
PC9QPg0KPHAgYWxpZ249ImNlbnRlciIgc3R5bGU9Ik1BUkdJTi1UT1A6IDFtbTsgTUFSR0lO
LUJPVFRPTTogMG1tIj48Rk9OVCBzaXplPTI+PEZPTlQgc2l6ZT0yPrq7ILO7v+vAuiC9usbU
uN7Az8DHIMCvx/y/oSC+xrmrsM21tSC808fPwfYgvsq9wLTPtNkuKMfHtvO5zLXlLCZuYnNw
OyDH4L/uwMfG7cH2LCC8usDOsPy3w8irurggDQq17ik8QlI+PC9GT05UPjwvRk9OVD48Rk9O
VCBzaXplPSIyIj66uyC43sDPwLogwM7FzbPdu/O/oSC/w7bzIMDWtMIguN7Az8HWvNK4piC6
uLDtILnfw+nHz7+pILnfvNvHz7+0vcC0z7TZLiANCjxCUj66uyC43sDPwLogwaS6uMXrvcW4
wSDAzL/rw8vB+CC51yDBpLq4urjIoyC17r+hILD8x9Eguf23/CDBpiA1MMG2v6EgwMewxcfR
IFuxpLDtXSC43sDPwNS0z7TZLiA8QlI+PC9GT05UPjxQIHN0eWxlPSJNQVJHSU4tVE9QOiAw
bW07IE1BUkdJTi1CT1RUT006IDBtbSIgYWxpZ249Y2VudGVyPjxGT05UIHNpemU9IjIiPjxi
Pr7Gv/S36MDNvbrHwbe5vbq/obytIA0KIFNtdHAgwfa/+MDMILXHwfYgvsrAuL3DtMIgutDA
uiC89rDtvbq3tMH2uLggJmx0O7z2vcWwxbrOJmd0Oye4piA8L2I+PC9GT05UPjwvUD4NCjxw
IGFsaWduPSJjZW50ZXIiIHN0eWxlPSJNQVJHSU4tVE9QOiAwbW07IE1BUkdJTi1CT1RUT006
IDJtbSI+PEZPTlQgc2l6ZT0iMiI+PGI+aGFubmEwNTMzQG9yZ2lvLm5ldCANCrfOILq5u+cg
yMQsILrZv6mz1rHiIMfPv6kgx9jB1ry8v+QuPC9iPjwvRk9OVD48L3A+DQo8UCBzdHlsZT0i
TUFSR0lOLVRPUDogM21tOyBNQVJHSU4tQk9UVE9NOiAxbW0iIGFsaWduPWNlbnRlcj48QSAN
CmhyZWY9Im1haWx0bzpoYW5uYTA1MzNAb3JnaW8ubmV0Ij48Rk9OVCBjb2xvcj0jMzM5OTk5
PjxJTUcgaGVpZ2h0PTE5IA0Kc3JjPSJodHRwOi8vd3d3Lm5pY2VpLmNvLmtyL2UtbWFpbC9p
bWFnZS9idXR0b24uZ2lmIiB3aWR0aD03MSANCmJvcmRlcj0wPjwvRk9OVD48L0E+PC9QPg0K
PFAgc3R5bGU9Ik1BUkdJTi1UT1A6IDBtbTsgTUFSR0lOLUJPVFRPTTogMG1tIiBhbGlnbj1j
ZW50ZXI+PEZPTlQgDQpjb2xvcj0jMzM5OTk5PjxCPj09PT09PT09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PTwvQj48L0ZPTlQ+PC9Q
Pg0KPFAgc3R5bGU9Ik1BUkdJTi1UT1A6IDFtbTsgTUFSR0lOLUJPVFRPTTogMG1tIiBhbGln
bj1jZW50ZXI+osKiwqLCPFNQQU4gDQpzdHlsZT0iRk9OVC1TSVpFOiAxNHB0Ij4mbmJzcDs8
L1NQQU4+PFNQQU4gDQpzdHlsZT0iRk9OVC1TSVpFOiAxNHB0OyBCQUNLR1JPVU5ELUNPTE9S
OiB5ZWxsb3ciPjxCPjxGT05UIGNvbG9yPXJlZD7Iq8itvr7AxyDIv7TJwLsgtPW/7SANCrP0
wM4gwK/IssiryK2+viA8L0ZPTlQ+PC9CPjwvU1BBTj6iwqLCosI8L1A+DQo8UCBzdHlsZT0i
TUFSR0lOLVRPUDogNG1tOyBNQVJHSU4tQk9UVE9NOiAwcHg7IExJTkUtSEVJR0hUOiAxNTAl
IiANCmFsaWduPWNlbnRlcj48U1BBTiBzdHlsZT0iRk9OVC1TSVpFOiAxNHB0Ij4mbmJzcDs8
L1NQQU4+PEZPTlQgc2l6ZT0zPr7Gwfex7sH2IMCvyLLIq8itvr6woSC5q775wM7B9iANCsDf
ILjwuKO9w7TCILrQtem1tSCw6L3Dwfa/5C48L0ZPTlQ+PC9QPg0KPFAgc3R5bGU9Ik1BUkdJ
Ti1UT1A6IDBweDsgTUFSR0lOLUJPVFRPTTogMHB4OyBMSU5FLUhFSUdIVDogMTUwJSIgDQph
bGlnbj1jZW50ZXI+PEZPTlQgc2l6ZT0zPsH2sd2x7sH2ILCiwb4gPC9GT05UPjxGT05UIGNv
bG9yPXllbGxvdyBzaXplPTM+PFNQQU4gDQpzdHlsZT0iQkFDS0dST1VORC1DT0xPUjogZ3Jl
ZW4iPjxCPsDPud3Iq8itvr63ziDIv7D6wLsgwOe067fOILj4uri9xSC60LXpPC9CPjwvU1BB
Tj48L0ZPTlQ+PEZPTlQgDQpzaXplPTM+wLogssAguea5rsfYwda8vL/kLjwvRk9OVD48L1A+
DQo8UCBzdHlsZT0iTUFSR0lOLVRPUDogM3B4OyBNQVJHSU4tQk9UVE9NOiAwcHg7IExJTkUt
SEVJR0hUOiAxNTAlIiANCmFsaWduPWNlbnRlcj48Rk9OVCBzaXplPTM+wK/Isr/AuK6woSC4
9r+hIMHBtNm0wiCwzcC6ILTZIL7GvcPB9r/kLjwvRk9OVD48L1A+DQo8UCBzdHlsZT0iTUFS
R0lOLVRPUDogMHB4OyBNQVJHSU4tQk9UVE9NOiAwcHg7IExJTkUtSEVJR0hUOiAxNTAlIiAN
CmFsaWduPWNlbnRlcj48Rk9OVCBzaXplPTM+udm3ziDAr8iywLsguNS/qbytILHXt6/H0SCw
zcDUtM+02S48L0ZPTlQ+PC9QPg0KPFAgYWxpZ249Y2VudGVyPjxTUEFOIHN0eWxlPSJCQUNL
R1JPVU5ELUNPTE9SOiByZ2IoNTEsMCwyNTUpIj48Rk9OVCANCmNvbG9yPXllbGxvdz48Qj7A
r8iyyKvIrb6+tMIgsdcgyL+0ycC7ILT1v+0gs/TAzLHiIMCnx9i8rSDAr8iywLsgu9G3wbyt
IMCvyLLAzCCwocH4PC9CPjwvU1BBTj48L0ZPTlQ+PC9QPg0KPFAgYWxpZ249Y2VudGVyPjxG
T05UIGNvbG9yPXllbGxvdz48U1BBTiANCnN0eWxlPSJCQUNLR1JPVU5ELUNPTE9SOiByZ2Io
NTEsMCwyNTUpIj48Qj7BwcC6ILq4vue8urrQwLsgyKvIrbChIMjtvPY8L0I+PC9TUEFOPjwv
Rk9OVD7Hz7W1t88gDQrH0S4uLi48L1A+DQo8cCBhbGlnbj0iY2VudGVyIj48Yj48Zm9udCBj
b2xvcj0icmVkIj7Iv7D6uKYguri9xSC4ucC6ILrQtenAxyAmbHQ7sObH6Lvnt8omZ3Q7tbUg
DQq/w7bzv80gwNa9wLTPtNkuPC9mb250PjwvYj48L3A+DQo8VEFCTEUgY2VsbFNwYWNpbmc9
MCBib3JkZXJDb2xvckRhcms9d2hpdGUgY2VsbFBhZGRpbmc9MCB3aWR0aD0iMTAwJSIgDQpi
b3JkZXJDb2xvckxpZ2h0PWJsYWNrIGJvcmRlcj0wIGFsaWduPSJjZW50ZXIiPg0KPFRCT0RZ
Pg0KPFRSPg0KPFREIGFsaWduPWxlZnQgd2lkdGg9NDExIGhlaWdodD0yNDc+DQo8VEFCTEUg
Y2VsbHNwYWNpbmc9IjAiIHdpZHRoPSI1ODYiIGFsaWduPSJjZW50ZXIiIGNlbGxwYWRkaW5n
PSIwIj4NCjxUQk9EWT4NCjxUUj4NCjxURCB3aWR0aD0iODkiIGhlaWdodD0iMzIzIiBiZ2Nv
bG9yPSJ3aGl0ZSI+DQogICAgICAgICAgICAgICAgICAgICAgICA8cCBhbGlnbj0ibGVmdCI+
PGI+PGZvbnQgY29sb3I9ImJsdWUiPiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOzwvYj48L0ZPTlQ+PC9wPg0KPC9URD48VEQgd2lkdGg9IjQ5NyIg
aGVpZ2h0PSIzMjMiIGJnY29sb3I9IiNlNWU1ZTgiPg0KPFRBQkxFIGJvcmRlcj0xIGNlbGxz
cGFjaW5nPSIyIiB3aWR0aD0iNDk2IiBhbGlnbj0iY2VudGVyIj4NCjxUQk9EWT4NCjxUUj4N
CjxURCB3aWR0aD0iODAwIiBoZWlnaHQ9IjI3IiBiZ2NvbG9yPSIjZTVlNWU4IiBhbGlnbj0i
bWlkZGxlIiB2YWxpZ249ImNlbnRlciI+DQogICAgICAgICAgICAgICAgICAgICAgICA8cCBh
bGlnbj0ibGVmdCI+PGI+PGZvbnQgY29sb3I9ImJsdWUiPiZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOzApILvAsKEg
us63r8GuvK0gwN8gJiM0ODY3NzvB9iANCiAgICAgICAgICAgICAgICAgICAgICAgIL7KtMIg
utA8L2I+PC9GT05UPjwvcD4NCjwvVEQ+PC9UUj4NCjxUQk9EWT4NCjxUUj4NCjxURCB3aWR0
aD0iODAwIiBoZWlnaHQ9MTkgYmdjb2xvcj0iI2U1ZTVlOCIgYWxpZ249Im1pZGRsZSIgdmFs
aWduPSJjZW50ZXIiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHAgYWxpZ249ImxlZnQi
IHN0eWxlPSJMSU5FLUhFSUdIVDogMTUwJSI+PGI+PGZvbnQgY29sb3I9ImJsdWUiPiZuYnNw
OyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw
OyZuYnNwOzEpIA0KICAgICAgICAgICAgICAgICAgICAgICAgv8IguPbAzCC+pb3DsO0gsOG4
rr3DtMIgutA8L2I+PC9GT05UPjwvcD4NCjwvVEQ+PC9UUj4NCjxUUj4NCjxURCB3aWR0aD0i
ODAwIiBoZWlnaHQ9MTkgYmdjb2xvcj0iI2U1ZTVlOCIgYWxpZ249Im1pZGRsZSIgdmFsaWdu
PSJjZW50ZXIiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHAgYWxpZ249ImxlZnQiIHN0
eWxlPSJMSU5FLUhFSUdIVDogMTUwJSI+PGI+PGZvbnQgY29sb3I9ImJsdWUiPiZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOzIpIA0KICAgICAgICAgICAgICAgICAgICAgICAgvu64sMDMILy6wOUgwOW+1jwvYj48
L0ZPTlQ+PC9wPg0KPC9URD48L1RSPg0KPFRCT0RZPg0KPFRSPg0KPFREIHdpZHRoPSI4MDAi
IGhlaWdodD0iMjMiIGJnY29sb3I9IiNlNWU1ZTgiIGFsaWduPSJtaWRkbGUiIHZhbGlnbj0i
Y2VudGVyIj4NCjxQIGFsaWduPSJsZWZ0IiBzdHlsZT0iTElORS1IRUlHSFQ6IDE1MCUiPjxG
T05UIGZhY2U9IrG8uLIiIHNpemU9IjMiIGNvbG9yPSJibHVlIj48Qj4mbmJzcDsmbmJzcDsm
bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsz
KSANCiAgICAgICAgICAgICAgICAgICAgICAgILvAsKEgvuDH0SC60DwvQj48L0ZPTlQ+PC9Q
PjwvVEQ+PC9UUj4NCjxUUj4NCjxURCB3aWR0aD0iODAwIiBoZWlnaHQ9IjIzIiBiZ2NvbG9y
PSIjZTVlNWU4IiBhbGlnbj0ibWlkZGxlIiB2YWxpZ249ImNlbnRlciI+DQo8UCBhbGlnbj0i
bGVmdCIgc3R5bGU9IkxJTkUtSEVJR0hUOiAxNTAlIj48Rk9OVCBmYWNlPSKxvLiyIiBzaXpl
PSIzIiBjb2xvcj0iYmx1ZSI+PEI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i
c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7NCkguPbAzCDHx7Dvx8+w7SC5q7DF
v+4gutA8L0I+PC9GT05UPjwvUD48L1REPjwvVFI+DQo8VFI+DQo8VEQgd2lkdGg9IjgwMCIg
aGVpZ2h0PSIyMyIgYmdjb2xvcj0iI2U1ZTVlOCIgYWxpZ249Im1pZGRsZSIgdmFsaWduPSJj
ZW50ZXIiPg0KICAgICAgICAgICAgICAgICAgICAgICAgPHAgYWxpZ249ImxlZnQiIHN0eWxl
PSJMSU5FLUhFSUdIVDogMTUwJSI+PGZvbnQgc2l6ZT0iMyIgY29sb3I9ImJsdWUiPjxiPiZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOzUpIA0KICAgICAgICAgICAgICAgICAgICAgICAgtOu6ryC6uLHisKEgyPu1
5b3FILrQPC9iPjwvZm9udD48L3A+DQo8L1REPjwvVFI+DQo8VFI+DQo8VEQgd2lkdGg9Ijgw
MCIgaGVpZ2h0PSIyMyIgYmdjb2xvcj0iI2U1ZTVlOCIgYWxpZ249Im1pZGRsZSIgdmFsaWdu
PSJjZW50ZXIiPg0KPFAgYWxpZ249ImxlZnQiIHN0eWxlPSJMSU5FLUhFSUdIVDogMTUwJSI+
PEZPTlQgZmFjZT0isby4siIgc2l6ZT0iMyIgY29sb3I9ImJsdWUiPjxCPiZuYnNwOyZuYnNw
OyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw
OzYpIL/CuPbAzCDC97DtIMD6uK69xSC60DwvQj48L0ZPTlQ+PC9QPjwvVEQ+PC9UUj4NCjxU
Uj4NCjxURCB3aWR0aD0iODAwIiBoZWlnaHQ9IjIzIiBiZ2NvbG9yPSIjZTVlNWU4IiBhbGln
bj0ibWlkZGxlIiB2YWxpZ249ImNlbnRlciI+DQo8UCBhbGlnbj0ibGVmdCIgc3R5bGU9IkxJ
TkUtSEVJR0hUOiAxNTAlIj48Rk9OVCBmYWNlPSKxvLiyIiBzaXplPSIzIiBjb2xvcj0iYmx1
ZSI+PEI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7Nykgw+K76iDIxCC76sjEwba4rrimIMfPvcO0wiANCrrQPC9C
PjwvRk9OVD48L1A+PC9URD48L1RSPg0KPFRSPg0KPFREIHdpZHRoPSI4MDAiIGhlaWdodD0i
MjMiIGJnY29sb3I9IiNlNWU1ZTgiIGFsaWduPSJtaWRkbGUiIHZhbGlnbj0iY2VudGVyIj4N
CjxQIGFsaWduPSJsZWZ0IiBzdHlsZT0iTElORS1IRUlHSFQ6IDE1MCUiPjxGT05UIGZhY2U9
IrG8uLIiIHNpemU9IjMiIGNvbG9yPSJibHVlIj48Qj4mbmJzcDsmbmJzcDsmbmJzcDsmbmJz
cDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDs4KSC8rbytIMDP
x8+x4iC2p7muv6Egud/AzCC617DtIMfHsO/Hz73FIA0KutA8L0I+PC9GT05UPjwvUD48L1RE
PjwvVFI+DQo8VFI+DQo8VEQgd2lkdGg9IjgwMCIgaGVpZ2h0PSIyMyIgYmdjb2xvcj0iI2U1
ZTVlOCIgYWxpZ249Im1pZGRsZSIgdmFsaWduPSJjZW50ZXIiPg0KPFAgYWxpZ249ImxlZnQi
IHN0eWxlPSJMSU5FLUhFSUdIVDogMTUwJSI+PEZPTlQgZmFjZT0isby4siIgc2l6ZT0iMyIg
Y29sb3I9ImJsdWUiPjxCPiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOzkpILPrvuDA2iC51yCwx7CtyLi6ucC7IL/k
x8+0wiANCiAgICAgICAgICAgICAgICAgICAgICAgILrQPC9CPjwvRk9OVD48L1A+PC9URD48
L1RSPg0KPFRSPg0KPFREIHdpZHRoPSI4MDAiIGhlaWdodD0iMjEiIGJnY29sb3I9IiNlNWU1
ZTgiIGFsaWduPSJtaWRkbGUiIHZhbGlnbj0iY2VudGVyIj4NCjxQIGFsaWduPSJsZWZ0IiBz
dHlsZT0iTElORS1IRUlHSFQ6IDE1MCUiPjxGT05UIGZhY2U9IrG8uLIiIHNpemU9IjMiIGNv
bG9yPSJibHVlIj48Qj4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJz
cDsmbmJzcDsmbmJzcDsmbmJzcDsxMCkgsKLBviC8usDOurQgv7m55sfPvccgutA8L0I+PC9G
T05UPjwvUD48L1REPjwvVFI+DQo8L1RCT0RZPjwvVEFCTEU+DQo8L1REPjwvVFI+DQo8L1RC
T0RZPjwvVEFCTEU+DQo8L1REPjwvVFI+PC9UQk9EWT48L1RBQkxFPg0KPFAgYWxpZ249ImNl
bnRlciI+Jm5ic3A7PEI+PEZPTlQgY29sb3I9YmxhY2s+v6y3zsfPvcUgus648LTUIMi/tbUg
vLG5sLfOILHXuLggwNS0z7TZLjwvRk9OVD48L0I+PC9QPg0KPHAgYWxpZ249ImNlbnRlciI+
PGI+PHNwYW4gc3R5bGU9IkJBQ0tHUk9VTkQtQ09MT1I6IHllbGxvdyI+PGZvbnQgY29sb3I9
ImJsdWUiPr3EvPa3ziANCrG4vPbHz7+pILq4uK7C9yC6uLTZILT1ILjAwMwgwcG9wLTPtNku
ICjB+rq0IL+5ueYpPC9mb250Pjwvc3Bhbj48L2I+PC9wPg0KPFAgYWxpZ249Y2VudGVyPqLC
PGZvbnQgY29sb3I9InJlZCI+IDxiPsioxuTAzMH2PC9mb250PjwvQj4gPEZPTlQgc2l6ZT00
PiZuYnNwOzxBIA0KaHJlZj0iaHR0cDovL3d3dy5ob25nd2hhLm5ldC8iIHRhcmdldD0iX2Js
YW5rIj48Qj5odHRwOi8vd3d3Lmhvbmd3aGEubmV0LzwvQT48YSBocmVmPSJodHRwOi8vd3d3
Lmhvbmd3aGEubmV0LyIgdGFyZ2V0PSJfcGFyZW50Ij4gPC9hPjwvQj48L0ZPTlQ+Jm5ic3A7
PGZvbnQgY29sb3I9InJlZCI+PGI+wMyw98C7IMH2sd0gDQq52bfOIDwvZm9udD48Zm9udCBj
b2xvcj0iYmxhY2siPqLCIDwvQj48L2ZvbnQ+PFAgc3R5bGU9Ik1BUkdJTi1UT1A6IDNtbTsg
TUFSR0lOLUJPVFRPTTogMW1tIiBhbGlnbj1jZW50ZXI+PGZvbnQgY29sb3I9InJlZCI+PGI+
uea5rsfYwda8vL/kPC9mb250PjwvQj48L1A+DQo8UCBzdHlsZT0iTUFSR0lOLVRPUDogMG1t
OyBNQVJHSU4tQk9UVE9NOiAwbW0iIA0KYWxpZ249Y2VudGVyPj09PT09PT09PT09PT09PT09
PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09PT09
PT09PC9QPg0KPFAgc3R5bGU9Ik1BUkdJTi1UT1A6IDBtbTsgTUFSR0lOLUJPVFRPTTogMG1t
IiBhbGlnbj1jZW50ZXI+PEZPTlQgc2l6ZT0iMiI+u+fA/CC+58fYvvjAzCC6uLO7vK0gtNm9
wyANCsfRufggsO2wsyC897+pILvnsPq15biztM+02S4gPC9GT05UPjwvUD4NCjxwIGFsaWdu
PSJjZW50ZXIiIHN0eWxlPSJNQVJHSU4tVE9QOiAwbW07IE1BUkdJTi1CT1RUT006IDBtbSI+
PEZPTlQgc2l6ZT0iMiI+sc0gDQqwocGkv6EgvvDBprTPIMfgurmw+iCwx7CtwMwgx9SysiDH
z73DseK4piAuLi4uPC9GT05UPjwvcD4NCjxwIGFsaWduPSJjZW50ZXIiIHN0eWxlPSJNQVJH
SU4tVE9QOiAwbW07IE1BUkdJTi1CT1RUT006IDBtbSI+PEZPTlQgc2l6ZT0iMiI+PC9GT05U
PiZuYnNwOzwvcD4NCjwvYm9keT4NCjwvaHRtbD4NCg==

From moore+bounces-blast-parallel@cs.utk.edu Fri Mar 22 02:27:17 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu ([127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id CAA09782; Fri, 22 Mar 2002 02:27:16 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Fri, 22 Mar 2002 02:27:16 -0500
Received: from yahoo.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id CAA05409; Fri, 22 Mar 2002 02:27:14 -0500 (EST)
Message-Id: <200203220727.CAA05409@cs.utk.edu>
Received: from yahoo.co.kr (218.51.149.79)
 by cs.utk.edu (smtpshim v1.0); Fri, 22 Mar 2002 02:27:15 -0500
Reply-To: park000a@yahoo.co.kr
From: "9ZA>@O" <park000a@yahoo.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: :q13GR<v>x4B @L8^@O<RGAF.7N 8ECb@;109h(H+:8)
Sender: "9ZA>@O" <park000a@yahoo.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sat, 23 Mar 2002 04:33:54 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id CAA05416

PGh0bWw+DQo8aGVhZD4NCjxtZXRhIGh0dHAtZXF1aXY9ImNvbnRlbnQtdHlwZSIgY29udGVu
dD0idGV4dC9odG1sOyBjaGFyc2V0PWV1Yy1rciI+DQo8dGl0bGU+sKW89rfPIMShv63H2MH2
tMIguLm+xsH2tMIgyKjG5MDMwfa16SCxzbvnsKEgw6TFw8fPsO0gwNa0wiDIq7q4ILnmvcTA
uiA8L3RpdGxlPg0KPG1ldGEgbmFtZT0iZ2VuZXJhdG9yIiBjb250ZW50PSJOYW1vIFdlYkVk
aXRvciB2NS4wIj4NCjwvaGVhZD4NCjxib2R5IGJnY29sb3I9IiNmZmZmY2MiIHRleHQ9ImJs
YWNrIiBsaW5rPSJibHVlIiB2bGluaz0icHVycGxlIiBhbGluaz0icmVkIj4NCjxQPrClvPa3
zyDEob+tx9jB9rTCILi5vsbB9rTCIMioxuTAzMH2tekgPEZPTlQgZmFjZT21uL/yPrHNu+ew
oSA8L0ZPTlQ+PEZPTlQgY29sb3I9IzAwMzNmZiBmYWNlPbHDvK3DvCANCnNpemU9ND7DpMXD
x8+w7SDA1rTCIMirurgguea9xDwvRk9OVD7AuiA8L1A+DQo8UD65q775wNS0z7HuICZuYnNw
Oz8/ICZuYnNwO73Fua6xpLDtt9AgwabHsMbIvsa1tSC89sDNwMwgs7LB9iC+yrTCtNmw7SAm
bmJzcDu4u764x8+9w7TCILrQtPrAzLTDvvq9wLTPtNkuPC9QPg0KPFA+wPy03MH2tbUgwNDB
9iC+yrTCIMPfvLy28yAmbmJzcDu4tralx9EgsaSw7SC89rTcwMwgvvi0wiDH9r3DwaG/obyt
sPjCpb+hILChse6/7iC68b/rwLi3ziDAzsXNs92787+hvK0gPC9QPg0KPFA+sc2758DHILvz
x7DAuyDGyL7GwdkgJm5ic3A7wMy43sDPILi2xM/Gw8C7ILHHx9W0z7TZLjwvUD4NCjxQPiZu
YnNwOyoqKioqKioqKjxGT05UIGZhY2U9scO8rcO8IHNpemU9ND6x17PJILDLu/a+7rimIMDU
t8LHz7HiuLggx9i1tSDD38Pitce0wiDA2rW/sMu79ri4wLi30CC6zsG3x8+03CCwzSANCr7G
vcq0z7HuPzwvRk9OVD48L1A+DQo8UD4mbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsm
bmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsm
bmJzcDsmbmJzcDsmbmJzcDs8Rk9OVCBjb2xvcj1yZWQgZmFjZT2xw7ytw7wgc2l6ZT00PrDU
vcPGx8C7ILi4tenB9iC+yrTCILvnwMzGrrChICZuYnNwO8D9ud3AuyCz0bDUIA0KwvfB9sfV
tM+02TwvRk9OVD4uICZuYnNwO8DMt7Gw5r/uPC9QPg0KPFA+Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7vu62u7DUIMPfw+LHz73DsNq9wLTPse4/IDxGT05UIGNvbG9yPXJlZD7Apb3OwMzG
riC55rmuuLggx8+46SAmbmJzcDvA2rW/wLi3ziDD38Pix9jB1rTCPC9GT05UPjwvUD4NCjxQ
PiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNw
OyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwO8PWsO3AxyDD38PiseKwoSCzqr/UvcC0z7TZLioq
KioqKioqKioqKioqPC9QPg0KPFA+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i
c3A7Jm5ic3A7PC9QPg0KPFA+wMy43sDPIMPfw+Kx4iArILnfvNux4iArIMDMuN7Az7XwuvEg
wMwgw7W4uLCzuKYgPSAzNbi4v/i/oSAmbmJzcDvGx7jFx9W0z7TZLjwvUD4NCjxQPjxCUj7A
zLjewM8guLbEycbDwMwgwM7FzbPdILrxwe60z726uKYgx8+9w7TCILrQwMyzqiDBpsewwLsg
xse4xcfPsO3A2iDH0iC2pyA8QlI+vvbDu7OtIMi/sPq4prSpuK60wiCwzSAmbmJzcDu+xr3D
wdI/IDwvUD4NCjxQPisrKysrK7/4xay4ryC89r3FsMW6zsDaIMDatb+76MGmILHitMkrKysr
KysrIMDatb/B37q5waawxSCx4rTJKysrKysrKysrPC9QPg0KPFA+MSwgwMy43sDPIMPfw+Kx
4sHfIMClveHHzsfPuOm8rSDD38Pix9IgvPYgwNa0wiCwzSC6uLzMvcC0z7HuPyAowKW94cfO
w9/D4rHitMkgKcGmsPjH1bTPtNkuPC9QPg0KPFA+Jm5ic3A7Jm5ic3A7PEZPTlQgZmFjZT2x
w7ytw7wgc2l6ZT0zPrz2uLnAuiDHwbfOsde3pcDWwfa4uCAmbmJzcDvA2rHisKEgvc7AzMau
ILnmua7Hz7jpIMDatb/AuLfOIMPfw+LHz7TCILDNwLogDQq4+Lq4vMzAu7DMtM+02S48L0ZP
TlQ+PC9QPg0KPFA+MiwgJm5ic3A7KMDatb8gsMu79r7uILHitMkpwaaw+MfVtM+02S4gsKG3
ySC5q7+qwMy29SC03L7uIMfPs6oguLggwNS3wsfPuOkgPC9QPg0KPFA+Jm5ic3A7Jm5ic3A7
uPC15yDApb3OwMzGrr+hvK0gwNq1v8C4t84gw9/D4sfVtM+02S48L1A+DQo8UD4zLCDHz7fn
ud+828Gmx9G3rr74wMwguavBpsfRIMDatb+537zbtcu0z7TZLiAmbmJzcDs8L1A+DQo8UD40
LiC89r3FsMW6ziC/+MWsuK8gu+jBpiAmbmJzcDvA2rW/wd+6ucGmsMUgseK0ySAmbmJzcDuw
o8btx8+w7SCwrbfCx9W0z7TZLjwvUD4NCjxQPjUuILCzwM7Hx76+uKYgvK259sitx8+0wiCx
4rTJwLi3ziAmbmJzcDu8rbn2vvjAzCDB773DILvnv+vH0iC89iDA1r3AtM+02S48L1A+DQo8
UD42LiDHwbfOsde3pbqwt84gwM7B9bn4yKMgus6/qbXHtMIgwaTHsMDUtM+02S48L1A+DQo8
UD48QlI+LSAxutC/oSDD1rDtIDEwMDCws8DMu/MguavBpsfRIMPfw+K1y7TPtNkuPEJSPi0g
sbmzu7/cIDgwJcDMu/PAxyDAzLjewM8gvPbB/bTJt8IgPEJSPi0gvcO9usXbILvnvue/oSC1
+7bzILTZvPbAxyANCsfBt86x17elIL3Hx+AgsKG0yS48QlI+LSC537zbseIgx8G3zrHXt6Ug
wNrDvL+hvK0gwd+6ucO8xaksILz2vcWwxbrOwNoguPG3zyCw/LiusKG0yS48QlI+LSDB9bCo
sKosIMPKseKwqiC17rXuIL7ut8G/7iC8s8GkwLogDQrA/Mf0vvjAvS4gu+e/68DMILCjtNzH
1bTPtNkuIDxCUj4tICZuYnNwO7ChwaS/obytIMDavcXAxyDExMe7xc2/oSDFrLivIMfRufi/
oSC8s8ShsKG0ycfPuOcgvLPEocjEIMHvvcMgu+e/68DMILChtMnH1bTPtNk8L1A+DQo8UD48
QlI+sbjA1Lnmuf0gOiDH9sDnIMD6yPGwoSC537zbvcMgu+e/68fRILjewM+3ziDIuL3FwLsg
x8+/qSDB1r3DuOkgtOS6r8C7ILXluK7B9iC4+MfVtM+02S48L1A+DQo8UD4mbmJzcDsmbmJz
cDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJzcDsmbmJz
cDvAzLjewM+w6MGkv6Egud2827jewM/AzCCz0cPEvK0gJm5ic3A7sOjBpMDMIMDawdYgsvex
6bTPtNkuPEJSPiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyA8QlI+Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5i
c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7wPzIrbn4yKMgDQovwMy4
pyAvyLi757jtICZuYnNwO8D7vu68rSA8QSANCmhyZWY9Im1haWx0bzpwYXJram9uZzdAeWFo
b28uY28ua3IiPnBhcmtqb25nN0B5YWhvby5jby5rcjwvQT7AuLfOPC9QPg0KPFA+Jm5ic3A7
Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7
Jm5ic3A7urizu8HWvcO46SDA+ry8x9EgvLO47bytv80gwMy5zMH2IMbEwM/AuyAmbmJzcDu6
uLO7teW4rrDavcC0z7TZLiA8L1A+DQo8UD4mbmJzcDs8L1A+DQo8UD7AzLjewM/AuiDBpMXr
us4gwLG4rrHUwaTAuyDB2Lz2x9EguN7Az8DUtM+02S48L1A+DQo8UD689r3FsMW6zrimIMfP
vcOw7SC9zcC6utDAuiAmbmJzcDs8QSANCmhyZWY9Im1haWx0bzpwYXJram9uZzlAaG90bWFp
bC5jb20iPnBhcmswMGFAaG90bWFpbC5jb208L0E+IMC4t84gvPa9xbDFus4gx9jB1ry8v+Q8
L1A+DQo8UD7AzLjewM/B1rzSv9y/oSC+xrmrt7EgwaS6uLW1ILChwfaw7SDA1sH2IL7KvcC0
z7TZLjwvUD4NCjxQPiZuYnNwOzwvUD4NCjxQPiZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZu
YnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOyZuYnNwOzwvUD4NCjwvYm9keT4NCjwvaHRt
bD4NCg==

From moore+bounces-blast-parallel@cs.utk.edu Fri Mar 22 14:16:03 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id OAA29467; Fri, 22 Mar 2002 14:16:02 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Fri, 22 Mar 2002 14:16:02 -0500
Received: from hotmail.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id OAA05613; Fri, 22 Mar 2002 14:15:51 -0500 (EST)
Message-Id: <200203221915.OAA05613@cs.utk.edu>
Received: from hotmail.com (211.37.22.59)
 by cs.utk.edu (smtpshim v1.0); Fri, 22 Mar 2002 14:15:52 -0500
Reply-To: malca1004@hotmail.com
From: "@L<v9L" <malca1004@hotmail.com>
To: <blast-parallel@cs.utk.edu>
Subject: `wlQ88 E,8/GXAV<<?d!!!
Sender: "@L<v9L" <malca1004@hotmail.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Sat, 23 Mar 2002 04:15:59 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id OAA05634

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD7AzLjewM/AuiDAz8i4v+sgud+828DM
uOcgsO2wtLTUwMcgvu62sMfRIMGkurg8QlI+tbUgsKHB9rDtIMDWwfYgvsq9wLTPtNkuPC9Q
Pg0KPFA+Jm5ic3A7PC9QPg0KPFA+vLrAzrvnwMzGrrTCILi5vcC0z7TZLjxCUj6x17evs6og
tbezu7DtIL7GsfXB9iC+yrDUIMDMv+vH0rz2wNa0wiC758DMxq60wiA8QlI+v6mx4rnbv6Eg
vvi9wLTPtNkuJm5ic3A7IMjEyLjHz8H2IA0KvsrAuL3HsMy0z7TZLjwvUD4NCjxQPiZuYnNw
OzwvUD4NCjxQPiZuYnNwOzwvUD4NCjxQPjxBIGhyZWY9Imh0dHA6Ly80LjM2LjIzNC4xOTIv
fmRlYnVkZWJ1L2NnaS1iaW4vaW5kZXguY2dpPzYzMzAyNTkiPjxGT05UIA0KY29sb3I9I2Zm
MDAwMCBzaXplPTQ+vLrAzri4IMWsuK/H2MHWvLy/5CEhISC5zLy6s+LA2rTCILvnwP0hISEh
PC9GT05UPiA8L0E+PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPC9CT0RZPg0KPC9IVE1MPg0K

From moore+bounces-blast-parallel@cs.utk.edu Sun Mar 24 10:57:18 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id KAA11616; Sun, 24 Mar 2002 10:57:18 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sun, 24 Mar 2002 10:57:18 -0500
Received: from trend1020.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id KAA28664; Sun, 24 Mar 2002 10:57:15 -0500 (EST)
Message-Id: <200203241557.KAA28664@cs.utk.edu>
Received: from trend1020.com (218.144.60.206)
 by cs.utk.edu (smtpshim v1.0); Sun, 24 Mar 2002 10:57:16 -0500
Reply-To: open@trend1020.com
From: "open@trend1020.com" <open@trend1020.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$0m]5?4k9.558E;s@N5i@L :83;5e8.4B :=Gb1b 0!5fGQ FP<GA$:8
Sender: "open@trend1020.com" <open@trend1020.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Mon, 25 Mar 2002 00:53:46 +0900

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=Content-Type content="text/html; charset=euc-kr">
<META content="MSHTML 6.00.2600.0" name=GENERATOR></HEAD>
<BODY> <table>
  
  <TR>
	<TD align=left><TABLE WIDTH=621 BORDER=0 CELLPADDING=0 CELLSPACING=0>
	<TR>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=19 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=7 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=70 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=33 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=13 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=99 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=45 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=30 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=97 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=7 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=47 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=65 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=17 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=35 HEIGHT=1></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=37 HEIGHT=1></TD>
		<TD></TD>
	</TR>
	<TR>
		<TD COLSPAN=15>
			<IMG SRC="http://trend1020.com/md/images/mm_01.jpg" WIDTH=621 HEIGHT=31></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=31></TD>
	</TR>
	<TR>
		<TD COLSPAN=3 ROWSPAN=9>
			<IMG SRC="http://trend1020.com/md/images/mm_02.jpg" WIDTH=96 HEIGHT=688></TD>
		<TD COLSPAN=3 ROWSPAN=2>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3641"><IMG SRC="http://trend1020.com/md/images/mm_03.jpg" WIDTH=145 HEIGHT=163 border=0></a></TD>
		<TD COLSPAN=9>
			<IMG SRC="http://trend1020.com/md/images/mm_04.jpg" WIDTH=380 HEIGHT=63></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=63></TD>
	</TR>
	<TR>
		<TD COLSPAN=6 ROWSPAN=2>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3391"><IMG SRC="http://trend1020.com/md/images/mm_05.jpg" WIDTH=291 HEIGHT=153 border=0></a></TD>
		<TD COLSPAN=3 ROWSPAN=3>
			<IMG SRC="http://trend1020.com/md/images/mm_06.jpg" WIDTH=89 HEIGHT=259></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=100></TD>
	</TR>
	<TR>
		<TD COLSPAN=3 ROWSPAN=7>
			<IMG SRC="http://trend1020.com/md/images/mm_07.jpg" WIDTH=145 HEIGHT=525></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=53></TD>
	</TR>
	<TR>
		<TD COLSPAN=6>
			<IMG SRC="http://trend1020.com/md/images/mm_08.jpg" WIDTH=291 HEIGHT=106></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=106></TD>
	</TR>
	<TR>
		<TD COLSPAN=4 ROWSPAN=2>
			<IMG SRC="http://trend1020.com/md/images/mm_09.jpg" WIDTH=179 HEIGHT=147></TD>
		<TD COLSPAN=3>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3612"><IMG SRC="http://trend1020.com/md/images/mm_10.jpg" WIDTH=129 HEIGHT=141 border=0></a></TD>
		<TD COLSPAN=2 ROWSPAN=12>
			<IMG SRC="http://trend1020.com/md/images/mm_11.jpg" WIDTH=72 HEIGHT=999></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=141></TD>
	</TR>
	<TR>
		<TD COLSPAN=3 ROWSPAN=2>
			<IMG SRC="http://trend1020.com/md/images/mm_12.jpg" WIDTH=129 HEIGHT=10></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=6></TD>
	</TR>
	<TR>
		<TD ROWSPAN=13>
			<IMG SRC="http://trend1020.com/md/images/mm_13.gif" WIDTH=45 HEIGHT=1203></TD>
		<TD COLSPAN=2 ROWSPAN=2>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3586"><IMG SRC="http://trend1020.com/md/images/mm_14.jpg" WIDTH=127 HEIGHT=144 border=0></a></TD>
		<TD ROWSPAN=6>
			<IMG SRC="http://trend1020.com/md/images/mm_15.jpg" WIDTH=7 HEIGHT=544></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=4></TD>
	</TR>
	<TR>
		<TD COLSPAN=3>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3588"><IMG SRC="http://trend1020.com/md/images/mm_16.jpg" WIDTH=129 HEIGHT=140 border=0></a></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=140></TD>
	</TR>
	<TR>
		<TD COLSPAN=2 ROWSPAN=4>
			<IMG SRC="http://trend1020.com/md/images/mm_17.jpg" WIDTH=127 HEIGHT=400></TD>
		<TD COLSPAN=3 ROWSPAN=4>
			<IMG SRC="http://trend1020.com/md/images/mm_18.jpg" WIDTH=129 HEIGHT=400></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=75></TD>
	</TR>
	<TR>
		<TD ROWSPAN=10>
			<IMG SRC="http://trend1020.com/md/images/mm_19.jpg" WIDTH=19 HEIGHT=984></TD>
		<TD COLSPAN=3>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3610"><IMG SRC="http://trend1020.com/md/images/mm_20.jpg" WIDTH=110 HEIGHT=177 border=0></a></TD>
		<TD COLSPAN=2>
			<IMG SRC="http://trend1020.com/md/images/mm_21.jpg" WIDTH=112 HEIGHT=177></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=177></TD>
	</TR>
	<TR>
		<TD COLSPAN=5>
			<IMG SRC="http://trend1020.com/md/images/mm_22.jpg" WIDTH=222 HEIGHT=97></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=97></TD>
	</TR>
	<TR>
		<TD COLSPAN=5>
			<IMG SRC="http://trend1020.com/md/images/mm_23.jpg" WIDTH=222 HEIGHT=51></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=51></TD>
	</TR>
	<TR>
		<TD ROWSPAN=7>
			<IMG SRC="http://trend1020.com/md/images/mm_24.jpg" WIDTH=7 HEIGHT=659></TD>
		<TD COLSPAN=3>
			<IMG SRC="http://trend1020.com/md/images/mm_25.jpg" WIDTH=116 HEIGHT=145 border=0></TD>
		<TD ROWSPAN=7>
			<IMG SRC="http://trend1020.com/md/images/mm_26.jpg" WIDTH=99 HEIGHT=659></TD>
		<TD ROWSPAN=7>
			<IMG SRC="http://trend1020.com/md/images/mm_27.jpg" WIDTH=30 HEIGHT=659></TD>
		<TD COLSPAN=3 ROWSPAN=2>
			<IMG SRC="http://trend1020.com/md/images/mm_28.jpg" WIDTH=151 HEIGHT=163 border=0></TD>
		<TD COLSPAN=2 ROWSPAN=4>
			<IMG SRC="http://trend1020.com/md/images/mm_29.gif" WIDTH=82 HEIGHT=308></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=145></TD>
	</TR>
	<TR>
		<TD COLSPAN=3 ROWSPAN=2>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3655"><IMG SRC="http://trend1020.com/md/images/mm_30.jpg" WIDTH=116 HEIGHT=150 border=0></a></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=18></TD>
	</TR>
	<TR>
		<TD COLSPAN=3 ROWSPAN=2>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=4395"><IMG SRC="http://trend1020.com/md/images/mm_31.jpg" WIDTH=151 HEIGHT=145 border=0></a></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=132></TD>
	</TR>
	<TR>
		<TD COLSPAN=3 ROWSPAN=4>
			<IMG SRC="http://trend1020.com/md/images/mm_32.jpg" WIDTH=116 HEIGHT=364></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=13></TD>
	</TR>
	<TR>
		<TD COLSPAN=3 ROWSPAN=3>
			<IMG SRC="http://trend1020.com/md/images/mm_33.gif" WIDTH=151 HEIGHT=351></TD>
		<TD COLSPAN=3>
			<a href="http://www.trend1020.com/shopping/Prod_Info_norm.asp?prodCd=4432"><IMG SRC="http://trend1020.com/md/images/mm_34.jpg" WIDTH=117 HEIGHT=156 border=0></a></TD>
		<TD ROWSPAN=3>
			<IMG SRC="http://trend1020.com/md/images/mm_35.jpg" WIDTH=37 HEIGHT=351></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=156></TD>
	</TR>
	<TR>
		<TD COLSPAN=3>
			<a href="http://www.trend1020.com/shopping/Prod_Info_Norm.asp?prodCd=3646"><IMG SRC="http://trend1020.com/md/images/mm_36.jpg" WIDTH=117 HEIGHT=176 border=0></a></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=176></TD>
	</TR>
	<TR>
		<TD COLSPAN=3>
			<IMG SRC="http://trend1020.com/md/images/mm_37.jpg" WIDTH=117 HEIGHT=19></TD>
		<TD>
			<IMG SRC="http://trend1020.com/md/images/spacer.gif" WIDTH=1 HEIGHT=19></TD>
	</TR>
</TABLE>
	</TD></TR>
    </table></TABLE>
<table align=center width=400 border=0>
  
  <TR>
<td>
<a href="http://trend1020.com/nomail/no.asp" target="_blink"><IMG height=18 src="http://www.nextsoft21.com/images/Reject_email.JPG" width=100 border=0></a> 
</td></TR>
</table></BODY></HTML>

From moore+bounces-blast-parallel@cs.utk.edu Sun Mar 24 11:08:24 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id LAA11770; Sun, 24 Mar 2002 11:08:24 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Sun, 24 Mar 2002 11:08:24 -0500
Received: from wowsungin.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id LAA00384; Sun, 24 Mar 2002 11:08:22 -0500 (EST)
Message-Id: <200203241608.LAA00384@cs.utk.edu>
Received: from wowsungin.com (211.63.98.73)
 by cs.utk.edu (smtpshim v1.0); Sun, 24 Mar 2002 11:08:22 -0500
Reply-To: sexywow@wowsungin.com
From: "<RA_GQ;g6w" <sexywow@wowsungin.com>
To: <blast-parallel@cs.utk.edu>
Subject: [1$ 0m] A$8; <RA_GQ A$:88& 5e834O4Y! E,8/!
Sender: "<RA_GQ;g6w" <sexywow@wowsungin.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Mon, 25 Mar 2002 01:09:49 +0900
Content-Transfer-Encoding: quoted-printable
X-MIME-Autoconverted: from 8bit to quoted-printable by cs.utk.edu id LAA00387

<html>
<head>
<title>:::::::=BF=CD=BF=EC=BC=BA=C0=CE=C0=C7 =C8=AB=BA=B8=B8=DE=C0=CF=C0=D4=
=B4=CF=B4=D9:::::::</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Deuc-kr"=
>
<style type=3D"text/css">
<!--
td {  font-family: "=B1=BC=B8=B2", "=B1=BC=B8=B2=C3=BC"; font-size: 10pt;=
 line-height: 19px}
-->
</style>
</head>
<body bgcolor=3D"#ffffff" text=3D"#000000" leftmargin=3D"0" topmargin=3D"=
0" marginwidth=3D"0" marginheight=3D"0">
<table width=3D"590" cellpadding=3D"7">
  <tr>
    <td> =A2=BA =C1=A4=BA=B8=C5=EB=BD=C5=B8=C1 =C0=CC=BF=EB=C3=CB=C1=F8 =B9=
=D7 =C1=A4=BA=B8=BA=B8=C8=A3 =B5=EE=BF=A1 =B0=FC=C7=D1 =B9=FD=B7=FC 6=C0=E5=
 =C1=A6 50=C1=B6, 9=C0=E5 =C1=A6 67=C1=B6=BF=A1 =C0=C7=B0=C5 [=B1=A4=B0=ED=
] =B6=F3=B0=ED<br>
      =C7=A5=BD=C3=C7=D1 =B8=DE=C0=CF=C0=D4=B4=CF=B4=D9. =C0=CC =C1=A4=BA=
=B8=B3=BB=BF=EB=C0=BA =C3=BB=BC=D2=B3=E2 =C0=AF=C7=D8=B8=C5=C3=BC=B9=B0=B7=
=CE=BC=AD =C1=A4=BA=B8=C5=EB=BD=C5=B8=C1 =C0=CC=BF=EB=C3=CB=C1=F8 =B9=D7 =
=C1=A4=BA=B8=BA=B8=C8=A3 =B5=EE=BF=A1 =B0=FC=C7=D1 =B9=FD=B7=FC =B9=D7 =C3=
=BB=BC=D2=B3=E2=BA=B8=C8=A3=B9=FD=C0=C7 =B1=D4=C1=A4=BF=A1=20
      =C0=C7=C7=CF=BF=A9 19=BC=BC =B9=CC=B8=B8=C0=C7 =C3=BB=BC=D2=B3=E2=C0=
=CC =C0=CC=BF=EB =C7=D2 =BC=F6 =BE=F8=BD=C0=B4=CF=B4=D9. </td>
</tr>
</table>
<table width=3D"590" border=3D"0" cellspacing=3D"0" cellpadding=3D"0">
  <tr>=20
    <td width=3D"20">&nbsp;</td>
    <td bgcolor=3D"#999999"><a href=3D"http://www.wowsungin.com" target=3D=
"_blank"><img src=3D"http://www.wowsungin.com/mail/cover/2002-02-28/image=
s/top01.jpg" width=3D"301" height=3D"180" border=3D"0"></a><a href=3D"htt=
p://www.wowsungin.com" target=3D"_blank"><img src=3D"http://www.wowsungin=
.com/mail/cover/2002-02-28/images/top02.jpg" width=3D"249" height=3D"180"=
 border=3D"0"></a></td>
    <td width=3D"20">&nbsp;</td>
  </tr>
  <tr>=20
    <td colspan=3D"3"><a href=3D"http://www.wowsungin.com" target=3D"_bla=
nk"><img src=3D"http://www.wowsungin.com/mail/cover/2002-02-28/images/top=
03.jpg" width=3D"590" height=3D"30" border=3D"0"></a></td>
  </tr>
  <tr>=20
    <td width=3D"20">&nbsp;</td>
    <td>=20
      <table width=3D"550" border=3D"0" cellspacing=3D"0" cellpadding=3D"=
0" background=3D"http://www.wowsungin.com/mail/cover/2002-02-28/images/bg=
_body.jpg">
        <tr>=20
          <td width=3D"10" height=3D"5"></td>
          <td height=3D"5" width=3D"480"></td>
          <td height=3D"5" width=3D"10"></td>
        </tr>
        <tr>=20
          <td width=3D"10">&nbsp;</td>
          <td width=3D"480" height=3D"200">=20
            <table width=3D"530" border=3D"0" cellspacing=3D"0" cellpaddi=
ng=3D"0">
              <tr>=20
                <td width=3D"336" height=3D"212" background=3D"http://www=
.wowsungin.com/mail/cover/2002-02-28/images/bg_flash.jpg">=20
                  <table width=3D"336" border=3D"0" cellspacing=3D"0" cel=
lpadding=3D"0">
                    <tr>=20
                      <td width=3D"13" height=3D"6"></td>
                      <td height=3D"6"></td>
                      <td width=3D"13" height=3D"6"></td>
                      <td width=3D"13" height=3D"6"></td>
                    </tr>
                    <tr>=20
                      <td width=3D"13">&nbsp;</td>
                      <td>
                        <OBJECT=20
                        classid=3Dclsid:D27CDB6E-AE6D-11cf-96B8-444553540=
000=20
                        codeBase=3Dhttp://download.macromedia.com/pub/sho=
ckwave/cabs/flash/swflash.cab#version=3D5,0,0,0=20
                        height=3D200 width=3D310><PARAM NAME=3D"_cx" VALU=
E=3D"8202"><PARAM NAME=3D"_cy" VALUE=3D"5292"><PARAM NAME=3D"FlashVars" V=
ALUE=3D"8202"><PARAM NAME=3D"Movie" VALUE=3D"http://www.wowsungin.com/mai=
l/cover/2002-02-28/images/wowportal_b_banner.swf"><PARAM NAME=3D"Src" VAL=
UE=3D"http://www.wowsungin.com/mail/cover/2002-02-28/images/wowportal_b_b=
anner.swf"><PARAM NAME=3D"WMode" VALUE=3D"Window"><PARAM NAME=3D"Play" VA=
LUE=3D"-1"><PARAM NAME=3D"Loop" VALUE=3D"-1"><PARAM NAME=3D"Quality" VALU=
E=3D"High"><PARAM NAME=3D"SAlign" VALUE=3D""><PARAM NAME=3D"Menu" VALUE=3D=
"-1"><PARAM NAME=3D"Base" VALUE=3D""><PARAM NAME=3D"Scale" VALUE=3D"ShowA=
ll"><PARAM NAME=3D"DeviceFont" VALUE=3D"0"><PARAM NAME=3D"EmbedMovie" VAL=
UE=3D"0"><PARAM NAME=3D"BGColor" VALUE=3D""><PARAM NAME=3D"SWRemote" VALU=
E=3D"">
                          <embed src=3D"http://www.wowsungin.com/mail/cov=
er/2002-02-28/images/wowportal_b_banner.swf" quality=3Dhigh pluginspage=3D=
"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=3D=
ShockwaveFlash" type=3D"application/x-shockwave-flash" width=3D"310" heig=
ht=3D"200">
                          </embed>                         </OBJECT></td>
                      <td width=3D"13">&nbsp;</td>
                      <td width=3D"13">&nbsp;</td>
                    </tr>
                                        <tr>=20
                      <td width=3D"13" height=3D"6"></td>
                      <td height=3D"6"></td>
                      <td width=3D"13" height=3D"6"></td>
                      <td width=3D"13" height=3D"6"></td>
                    </tr>
                  </table>
                </td>
                <td width=3D"201" height=3D"212"><a href=3D"http://www.wo=
wsungin.com" target=3D"_blank"><img src=3D"http://www.wowsungin.com/mail/=
cover/2002-02-28/images/update.jpg" width=3D"194" height=3D"212" border=3D=
"0"></a></td>
              </tr>
              <tr>=20
                <td height=3D"12"><a href=3D"http://www.wowsungin.com" ta=
rget=3D"_blank"><img src=3D"http://www.wowsungin.com/mail/cover/2002-02-2=
8/images/bg_flash_bottom.jpg" width=3D"336" height=3D"13" border=3D"0"></=
a></td>
                <td height=3D"13"><a href=3D"http://www.wowsungin.com" ta=
rget=3D"_blank"><img src=3D"http://www.wowsungin.com/mail/cover/2002-02-2=
8/images/update_bottom.jpg" width=3D"194" height=3D"12" border=3D"0"></a>=
</td>
              </tr>
            </table>
          </td>
          <td width=3D"10" height=3D"200">&nbsp;</td>
        </tr>
        <tr>=20
          <td width=3D"10" height=3D"5"></td>
          <td height=3D"5" width=3D"480"></td>
          <td height=3D"5" width=3D"10"></td>
        </tr>
        <tr>=20
          <td colspan=3D"2">=20
            <table width=3D"530" border=3D"0" cellspacing=3D"0" cellpaddi=
ng=3D"0" height=3D"97">
              <tr>=20
                <td width=3D"279" height=3D"97"><a href=3D"http://www.wow=
sungin.com" target=3D"_blank"><img src=3D"http://www.wowsungin.com/mail/c=
over/2002-02-28/images/adultconfirm.jpg" width=3D"279" height=3D"97" bord=
er=3D"0"></a></td>
                <td width=3D"261" height=3D"97">=20
                  <table width=3D"261" height=3D"97" border=3D"0" cellspa=
cing=3D"0" cellpadding=3D"0" >
                    <form name=3D"form1" action=3D"http://www.wowsungin.c=
om/mail/webzine/2002-02-28/webzine.asp" method=3D"post">
                    <TBODY>
                    <tr>=20
                      <td colspan=3D"5" height=3D"26"><img src=3D"http://=
www.wowsungin.com/mail/cover/2002-02-28/images/confirm_01.jpg" width=3D"2=
61" height=3D"26"></td>
                    </tr>
                    <tr>=20
                      <td width=3D"83" height=3D"20"><img src=3D"http://w=
ww.wowsungin.com/mail/cover/2002-02-28/images/confirm_02.jpg" width=3D"83=
" height=3D"20"></td>
                      <td width=3D"110" bgcolor=3D"#40b9fe">=20
                        <input style=3D"BACKGROUND-COLOR: #ffffff; BORDER=
-BOTTOM: #000000 1px  solid; BORDER-LEFT: #000000 1px solid; BORDER-RIGHT=
: #000000 1px solid; BORDER-TOP: #000000 1px solid; FONT: 9pt =B1=BC=B8=B2=
"=20
                        size=3D12=20
                        maxlength=3D20 name=3D"name"=20
                       >
                      </td>
                      <td width=3D"4" bgcolor=3D"#40b9fe">&nbsp;</td>
                      <td width=3D"50" bgcolor=3D"#40b9fe">&nbsp;</td>
                      <td width=3D"14" bgcolor=3D"#205b7d">&nbsp;</td>
                    </tr>
                    <tr>=20
                      <td width=3D"83" height=3D"20"><img src=3D"http://w=
ww.wowsungin.com/mail/cover/2002-02-28/images/confirm_03.jpg" width=3D"83=
" height=3D"20"></td>
                      <td bgcolor=3D"#40b9fe" width=3D"110"=20
                       >=20
                        <input style=3D"BACKGROUND-COLOR: #ffffff; BORDER=
-BOTTOM: #000000 1px  solid; BORDER-LEFT: #000000 1px solid; BORDER-RIGHT=
: #000000 1px solid; BORDER-TOP: #000000 1px solid; FONT: 9pt =B1=BC=B8=B2=
"=20
                        size=3D16=20
                        maxlength=3D14 name=3D"civil"=20
                       >
                      </td>
                      <td width=3D"4" bgcolor=3D"#40b9fe">&nbsp;</td>
                      <td width=3D"50" bgcolor=3D"#40b9fe"><input type=3D=
"image" src=3D"http://www.wowsungin.com/mail/cover/2002-02-28/images/butt=
on_confirm.jpg" width=3D"49" height=3D"20"></td>
                      <td width=3D"14" bgcolor=3D"#205b7d">&nbsp;</td>
                    </tr>
                    <tr>=20
                      <td colspan=3D"5" height=3D"31"><img src=3D"http://=
www.wowsungin.com/mail/cover/2002-02-28/images/confirm_04.jpg" width=3D"2=
61" height=3D"31"></td>
                    </tr>
                    </form></table></td></tr></table></td>
          <td width=3D"10" height=3D"19">&nbsp;</td></tr>
        <tr>=20
          <td width=3D"10" height=3D"5"></td>
          <td height=3D"5" width=3D"480"></td>
          <td height=3D"5" width=3D"10"></td>
        </tr>
        <tr>=20
          <td colspan=3D"3" width=3D"550" height=3D"84">=20
            <table width=3D"550" border=3D"0" cellspacing=3D"0" cellpaddi=
ng=3D"0" height=3D"84" background=3D"http://www.wowsungin.com/mail/cover/=
2002-02-28/images/info_wowsungin.jpg">
              <tr>=20
                <td height=3D"4" width=3D"50"></td>
                <td height=3D"4" width=3D"478"></td>
                <td height=3D"4" width=3D"22"></td>
              </tr>
              <tr>=20
                <td width=3D"50">&nbsp;</td>
                <td width=3D"478">=BF=CD=BF=EC=BC=BA=C0=CE=C6=F7=C5=BB=C0=
=BA =C3=D6=B0=ED=B7=CE =C8=AD=B2=F6=C7=D1 =BC=BA=C0=CE=B8=B8=C8=AD/=C7=C3=
=B7=A1=BD=AC <b>"=BF=CD=BF=EC=BC=BA=C0=CE=B8=B8=C8=AD=BC=BC=BB=F3"</b>/=20
                  =B1=B9=B3=BB=C0=AF=C0=CF <br>
                  =B9=CC=C6=E6=C6=AE=C7=CF=BF=EC=BD=BA=C1=A6=C8=DE =B0=ED=
=B0=A8=B5=B5=B3=B2=BC=BA=C1=F6 <b>"SPARK"</b>/=BC=F6=B9=E9=C6=ED=C0=CC =B3=
=D1=B4=C2 =BC=BA=C0=CE=BF=A1=B7=CE=BF=B5=C8=AD=BF=CD =C8=AD=B2=F6=C7=D1<b=
r>
                  =BC=BA=C0=CE=B5=BF=BF=B5=BB=F3=C0=CC =BB=EC=BE=C6=BC=FB=
=BD=AC=B4=C2 =BD=EA=B2=F6=C7=D4 =B1=D7 =C0=DA=C3=BC=C0=CE <b>"=B9=CC=BC=BA=
=B3=E2=C0=DA=B1=DD=C1=F6=B1=B8=BF=AA"</b>=C0=B8=B7=CE =B1=B8=BC=BA=B5=CB=B4=
=CF=B4=D9.<br>
                  <b>3=B0=A1=C1=F6 =BB=E7=C0=CC=C6=AE</b>=B8=A6 <b>1=B0=B3=
=C0=C7 =BE=C6=C0=CC=B5=F0</b>=B7=CE <b>=C0=FC=BA=CE=C0=CC=BF=EB!</b> [=B9=
=D9=B7=CE=B0=A1=B1=E2] <a href=3D"http://www.wowsungin.com">www.wowsungin=
.com</a>=20
                </td>
                <td width=3D"22">&nbsp;</td>
              </tr>
              <tr>=20
                <td height=3D"4" width=3D"50"></td>
                <td height=3D"4" width=3D"478"></td>
                <td height=3D"4" width=3D"22"></td>
              </tr>
            </table>
          </td>
        </tr>
		  <tr>=20
          <td width=3D"10" height=3D"5"></td>
          <td height=3D"5" width=3D"480"></td>
          <td height=3D"5" width=3D"10"></td>
        </tr>
        <tr>=20
          <td width=3D"10">&nbsp;</td>
          <td width=3D"530" height=3D"58" background=3D"http://www.wowsun=
gin.com/mail/cover/2002-02-28/images/bg_mail.jpg">=20
            <table width=3D"530" height=3D"58" border=3D"0" cellspacing=3D=
"0" cellpadding=3D"0" >
              <tr>=20
                <td height=3D"1" width=3D"12"></td>
                <td height=3D"1" width=3D"340"></td>
                <td height=3D"1" width=3D"178"></td>
              </tr>
              <tr>=20
                <td width=3D"12">&nbsp;</td>
                <td width=3D"340"><font color=3D"#ffffff" size=3D"2">=B0=ED=
=B0=B4=B4=D4=B2=B2=BC=AD =BE=D5=C0=B8=B7=CE wowsungin=C0=C7=20
                  =B8=DE=C0=CF=BC=F6=BD=C5=B0=C5=BA=CE=B8=A6 =BF=F8=C7=CF=
=BD=C3=B8=E9 =BC=F6=BD=C5=B0=C5=BA=CE=B9=F6=C6=B0=C0=BB =B4=AD=B7=AF=C1=D6=
=BC=BC=BF=E4. </font></td>
                <td width=3D"178"><center><a href=3D'http://211.63.98.73:=
9080/refuse/refuse?cmd=3Dview&group=3D5&name=3D&mail=3Dblast-parallel@cs.=
utk.edu'><img src=3D'http://211.63.98.73:9080/refuse/mail-refuse.gif' bor=
der=3D0)></center></td>
              </tr>
              <tr>=20
                <td height=3D"5" width=3D"12">&nbsp;</td>
                <td height=3D"5" width=3D"340">&nbsp;</td>
                <td height=3D"5" width=3D"178">&nbsp;</td>
              </tr>
            </table>
          </td>
          <td width=3D"10">&nbsp;</td>
        </tr>
        <tr>=20
          <td width=3D"10">&nbsp;</td>
          <td>&nbsp;</td>
          <td width=3D"10">&nbsp;</td>
        </tr></table></TD>
    <td width=3D"20">&nbsp;</td></TR></TBODY></TABLE>
<a href=3D"http://www.wowsungin.com" target=3D"_blank"><img src=3D"http:/=
/www.wowsungin.com/mail/cover/2002-02-28/images/bottom.jpg" width=3D"590"=
 height=3D"26" border=3D"0"></a>=20
</body>
</html>

From moore+bounces-blast-parallel@cs.utk.edu Mon Mar 25 11:55:55 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id LAA09520; Mon, 25 Mar 2002 11:55:55 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 25 Mar 2002 11:55:55 -0500
Received: from mail.co.kr (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id LAA25549; Mon, 25 Mar 2002 11:55:50 -0500 (EST)
Message-Id: <200203251655.LAA25549@cs.utk.edu>
Received: from mail.co.kr (211.215.9.172)
 by cs.utk.edu (smtpshim v1.0); Mon, 25 Mar 2002 11:55:52 -0500
Reply-To: ilosdfsdfewfve@mail.co.kr
From: 1h9NHq <ilosdfsdfewfve@mail.co.kr>
To: <blast-parallel@cs.utk.edu>
Subject: <!1$!0m!>    ###0->FAv8& 9+7a7N :P>gGU4O4Y.###
Sender: 1h9NHq <ilosdfsdfewfve@mail.co.kr>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Tue, 26 Mar 2002 01:55:50 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id LAA25553

PEhUTUw+DQo8SEVBRD4NCjxNRVRBIGNvbnRlbnQ9InRleHQvaHRtbDsgY2hhcnNldD1rc19j
XzU2MDEtMTk4NyIgaHR0cC1lcXVpdj1Db250ZW50LVR5cGU+DQo8U1RZTEU+IHAsIGZvbnQs
IHNwYW4geyBsaW5lLWhlaWdodDoxMjAlOyBtYXJnaW4tdG9wOjA7IG1hcmdpbi1ib3R0b206
MDsgfTwvU1RZTEU+DQo8L0hFQUQ+PEJPRFk+DQo8UD6+yLPnx8+8vL/kLiCwocDlwMy72rDt
ILDHsK3H0SBBsd6wrb7Gwfa4piC60L7nx8+9x7rQPz8/Pz88L1A+DQo8UD4mbmJzcDs8L1A+
DQo8UD6wosG+ILCtvsbB9iC757fhv80gvta/z7/rx7DAuyCwocDlIMD6t8XHz7DUILG4wNTH
z73HutA/Pz8/Pz8/PzwvUD4NCjxQPiZuYnNwOzwvUD4NCjxQPsDMwaggwM7FzbPdv6G8rbW1
IMbtuK7Hz7DUILG4wNTHz73HvPYgwNa9wLTPtNkhISEhPC9QPg0KPFA+Jm5ic3A7PC9QPg0K
PFA+sde4rrDtILCiwb4gsK2+xsH2ILvnt+G/zSC+1r/Pv+vHsLChsN3AzCDAz7ndIL7Wv8+/
68ewwaG6uLTZPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+x9LAzrXIILChsN3AzLjnLDwvUD4N
CjxQPiZuYnNwOzwvUD4NCjxQPrCtwMzB9rrQvuewobDdtbUgNTAlIMfSwM61yCCwobDdwLi3
ziC60L7nx8+w7SDA1r3AtM+02SEhPC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+uau34SCwrb7G
wfYgutC+58DMuqXGrrW1IL3HvcPB38DMv8C0zyDAzCCx4si4uKYgs/XEocH2ILi2vLy/5CEh
ISE8L1A+DQo8UD4mbmJzcDs8L1A+DQo8UD48QlI+xay4ryEhISEgLS0tLSZndDsmZ3Q7Jm5i
c3A7Jm5ic3A7Jm5ic3A7Jm5ic3A7IDxBIA0KaHJlZj0iaHR0cDovL215LmRyZWFtd2l6LmNv
bS9randrcDgyIj5odHRwOi8vbXkuZHJlYW13aXouY29tL2tqd2twODI8L0E+PC9QPg0KPFA+
Jm5ic3A7PC9QPg0KPFA+Jm5ic3A7PC9QPg0KPFA+PEJSPsGkurjF673Fus4gscew7SC758fX
v6EgwMewxSDBprjxv6EgW7GksO1dtvOw7SDHpbHix9EgsaSw7SC43sDPwNS0z7TZLjxCUj68
9r3FwLsgv/jEoSC+ysC4vcO46SA8QSANCmhyZWY9Im1haWx0bzppbG92ZUBtYWlsLmNvLmty
Ij689r3FsMW6zjwvQT64piC0rbevwda8vL/kIDwvUD4NCjwvQk9EWT4NCjwvSFRNTD4NCg==

From moore+bounces-blast-parallel@cs.utk.edu Tue Mar 26 01:20:29 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id BAA23012; Tue, 26 Mar 2002 01:20:28 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 26 Mar 2002 01:20:28 -0500
Received: from seecops.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id BAA27982; Tue, 26 Mar 2002 01:20:27 -0500 (EST)
Message-Id: <200203260620.BAA27982@cs.utk.edu>
Received: from seecops.com (203.251.130.47)
 by cs.utk.edu (smtpshim v1.0); Tue, 26 Mar 2002 01:20:28 -0500
Reply-To: see@seecops.com
From: "(AV)>>D_=:" <see@seecops.com>
To: <blast-parallel@cs.utk.edu>
Subject: | 1$ 0m |DM ACADEMY0! ?)7/:P22 @N;g5e834O4Y.
Sender: "(AV)>>D_=:" <see@seecops.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 26 Mar 2002 15:20:30 +0900
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id BAA27987

PGh0bWw+DQo8aGVhZD4NCjxtZXRhIGh0dHAtZXF1aXY9IkNvbnRlbnQtVHlwZSIgY29udGVu
dD0idGV4dC9odG1sOyBjaGFyc2V0PWtzX2NfNTYwMS0xOTg3Ij4NCjx0aXRsZT46Ojo6RE0g
QUNBREVNWSBPUEVOIEVWRU5UOjo6OjwvdGl0bGU+DQo8L2hlYWQ+DQo8Ym9keT4NCiA8Y2Vu
dGVyPg0KICAgPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJCT1JE
RVItQ09MTEFQU0U6IGNvbGxhcHNlIiBib3JkZXJjb2xvcj0iIzExMTExMSIgd2lkdGg9IjU3
NyIgaWQ9IkF1dG9OdW1iZXIxIiBjZWxscGFkZGluZz0iMCIgaGVpZ2h0PSI3MjYiPg0KICAg
IDx0cj4NCiAgICAgIDx0ZCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxNjEiPg0KICAgICAgPGlt
ZyBib3JkZXI9IjAiIHNyYz0iaHR0cDovL3d3dy5zZWVjb3BzLmNvbS9tYWlsL29wZW5ldmVu
dDIvdGl0bGUxLmdpZiIgd2lkdGg9IjU3NyIgaGVpZ2h0PSIxNjEiPjwvdGQ+DQogICAgPC90
cj4NCiAgICA8dHI+DQogICAgICA8dGQgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTM5Ij4NCiAg
ICAgIDxpbWcgYm9yZGVyPSIwIiBzcmM9Imh0dHA6Ly93d3cuc2VlY29wcy5jb20vbWFpbC9v
cGVuZXZlbnQyL3RpdGxlMi5naWYiIHdpZHRoPSI1NzciIGhlaWdodD0iMTM5Ij48L3RkPg0K
ICAgIDwvdHI+DQogICAgPHRyPg0KICAgICAgPHRkIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjE0
MiI+DQogICAgICA8aW1nIGJvcmRlcj0iMCIgc3JjPSJodHRwOi8vd3d3LnNlZWNvcHMuY29t
L21haWwvb3BlbmV2ZW50Mi90aXRsZTMuZ2lmIiB3aWR0aD0iNTc3IiBoZWlnaHQ9IjE0MiI+
PC90ZD4NCiAgICA8L3RyPg0KICAgIDx0cj4NCiAgICAgIDx0ZCB3aWR0aD0iMTAwJSIgYmFj
a2dyb3VuZD0iaHR0cDovL3d3dy5zZWVjb3BzLmNvbS9tYWlsL29wZW5ldmVudDIvYm9keTEu
Z2lmIiBoZWlnaHQ9IjI0NiIgdmFsaWduPSJ0b3AiPg0KICAgICAgPGRpdiBhbGlnbj0iY2Vu
dGVyIj4NCiAgICAgICAgPGNlbnRlcj4NCiAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgc3R5
bGU9IkJPUkRFUi1DT0xMQVBTRTogY29sbGFwc2UiIGJvcmRlcmNvbG9yPSIjMTExMTExIiB3
aWR0aD0iOTYlIiBpZD0iQXV0b051bWJlcjIiIGhlaWdodD0iMjc1IiBjZWxscGFkZGluZz0i
MCIgY2VsbHNwYWNpbmc9IjMiPg0KICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB3
aWR0aD0iMTAwJSIgaGVpZ2h0PSI2NiIgYmdjb2xvcj0iI2ZmZTFlMiI+DQogICAgICAgICAg
ICA8dGFibGUgYm9yZGVyPSIwIiBjZWxsc3BhY2luZz0iMCIgc3R5bGU9IkJPUkRFUi1DT0xM
QVBTRTogY29sbGFwc2UiIGJvcmRlcmNvbG9yPSIjMTExMTExIiB3aWR0aD0iMTAwJSIgaWQ9
IkF1dG9OdW1iZXIzIiBjZWxscGFkZGluZz0iMCI+DQogICAgICAgICAgICAgIDx0cj4NCiAg
ICAgICAgICAgICAgICA8dGQgd2lkdGg9IjE2JSI+DQogICAgICAgICAgICAgICAgPHAgYWxp
Z249ImNlbnRlciI+DQogICAgICAgICAgICAgICAgPGltZyBib3JkZXI9IjAiIHNyYz0iaHR0
cDovL3d3dy5zZWVjb3BzLmNvbS9tYWlsL29wZW5ldmVudDIvMS5naWYiIHdpZHRoPSI2NyIg
aGVpZ2h0PSI1MCI+PC9wPjwvdGQ+DQogICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI4NCUi
Pg0KICAgICAgICAgICAgICAgIDxwIHN0eWxlPSJMSU5FLUhFSUdIVDogMTUwJSI+PHNwYW4g
c3R5bGU9IkZPTlQtU0laRTogOXB0Ij4NCiAgICAgICAgICAgICAgICA8Zm9udCBjb2xvcj0i
IzAwMDA4MCI+v81+v+x+IA0KICAgICAgICAgICAgICAgIMfYv9wgv6nH4L+hILXwwfbF0CDE
q7jetvOx7sH2PyA8L2ZvbnQ+IDxicj4NCiAgICAgICAgICAgICAgICA8YSB0YXJnZXQ9Il9i
bGFuayIgaHJlZj0iaHR0cDovL3d3dy5kbWFjYWRlbXkuY28ua3IiPr3FsdSwocDUIMi4v/g8
L2E+wd8gw9/Dt8C7IMXrx9gguebE2ywgxsTFuL7fIDS52jXAzyC/1bq5IMfXsPixxywgvPe9
xLHHIDLA5SwgSFAgtfDB9sXQIMSruN628yAytOssILjFwffEuLzHIA0KICAgICAgICAgICAg
ICAgIL+1yK0gNTDG7Swgv8C18L/AxLi8xyDGy726IDUwwOXAuyCw7bfnsO235yCzqrSyILXl
uLO0z7TZLjxicj4NCiAgICAgICAgICAgICAgICAmbmJzcDsNCiAgICAgICAgICAgICAgICAt
MbXuu/MgKDG47SkgOiDH2L/cv6nH4CDGvMTPIDLA5Si55sTbLCDGxMW4vt8gNLnaNcDPIL/V
urkgx9ew+LHHLCC8973EsccgxvfH1CkgPGJyPg0KICAgICAgICAgICAgICAgICZuYnNwOw0K
ICAgICAgICAgICAgICAgIC0yte678yAoMrjtKSA6IEhQILXwwfbF0MSruN628yA8YnI+DQog
ICAgICAgICAgICAgICAgJm5ic3A7DQogICAgICAgICAgICAgICAgLb+1yK0gTWFuaWG78yAo
NTC47SkgOiC4xcH3xLi8xyC/tcitIDHG7SA8YnI+DQogICAgICAgICAgICAgICAgJm5ic3A7
DQogICAgICAgICAgICAgICAgLcbLvNsgTWFuaWG78yAoNTC47SkgOiC/wLXwv8DEuLzHIMbL
vbogPC9zcGFuPjwvcD48L3RkPg0KICAgICAgICAgICAgICA8L3RyPg0KICAgICAgICAgICAg
PC90YWJsZT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAgICAgPC90cj4NCiAgICAgICAg
ICA8dHI+DQogICAgICAgICAgICA8dGQgd2lkdGg9IjEwMCUiIGhlaWdodD0iODAiIGJnY29s
b3I9IiNmZmUxZjEiPg0KICAgICAgICAgICAgPHRhYmxlIGJvcmRlcj0iMCIgY2VsbHNwYWNp
bmc9IjAiIHN0eWxlPSJCT1JERVItQ09MTEFQU0U6IGNvbGxhcHNlIiBib3JkZXJjb2xvcj0i
IzExMTExMSIgd2lkdGg9IjEwMCUiIGlkPSJBdXRvTnVtYmVyNCIgY2VsbHBhZGRpbmc9IjAi
Pg0KICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAgICAgPHRkIHdpZHRoPSIxNiUi
Pg0KICAgICAgICAgICAgICAgIDxwIGFsaWduPSJjZW50ZXIiPg0KICAgICAgICAgICAgICAg
IDxpbWcgYm9yZGVyPSIwIiBzcmM9Imh0dHA6Ly93d3cuc2VlY29wcy5jb20vbWFpbC9vcGVu
ZXZlbnQyLzIuZ2lmIiB3aWR0aD0iNjciIGhlaWdodD0iNTAiPjwvcD48L3RkPg0KICAgICAg
ICAgICAgICAgIDx0ZCB3aWR0aD0iODQlIj4NCiAgICAgICAgICAgICAgICA8cCBzdHlsZT0i
TElORS1IRUlHSFQ6IDE1MCUiPjxmb250IHN0eWxlPSJGT05ULVNJWkU6IDlwdCI+DQogICAg
ICAgICAgICAgICAgPGZvbnQgY29sb3I9IiMwMDAwODAiPsL8v6nHz7TCIA0KICAgICAgICAg
ICAgICAgIMHxsMW/8iB+ILDmx7Agud60wiCx4rvdIH4gPC9mb250Pjxicj4NCiAgICAgICAg
ICAgICAgICDA2rvnIMioxuTAzMH2KDxhIHRhcmdldD0iX2JsYW5rIiBocmVmPSJodHRwOi8v
d3d3LmRtYWNhZGVteS5jby5rciI+ZG1hY2FkZW15LmNvLmtyPC9hPim/oSANCiAgICAgICAg
ICAgICAgICCw7bC0v6m3r7rQwMcgwMew38C7ICLAx7DfILnmuO23zyK/oTxicj4NCiAgICAg
ICAgICAgICAgICDA+77uwda8vL/kLiC/7Lz2wMew38C7ILyxwaTH2CAyutCysg0KICAgICAg
ICAgICAgICAgILjFwffEuLzHIL3DtM++7iBTZXS4piC15biztM+02S4gPGJyPg0KJm5ic3A7
IC0gsO2wtMDHsN8gv+y89rvzICgyuO0pIDoguMXB98S4vMcgDQogICAgICAgICAgICAgICAg
vcO0z77uIFNldCA8L2ZvbnQ+PC9wPjwvdGQ+DQogICAgICAgICAgICAgIDwvdHI+DQogICAg
ICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAgICA8L3RyPg0K
ICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgIDx0ZCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSI2
OCIgYmdjb2xvcj0iI2ZlZTFmZiI+DQogICAgICAgICAgICA8dGFibGUgYm9yZGVyPSIwIiBj
ZWxsc3BhY2luZz0iMCIgc3R5bGU9IkJPUkRFUi1DT0xMQVBTRTogY29sbGFwc2UiIGJvcmRl
cmNvbG9yPSIjMTExMTExIiB3aWR0aD0iMTAwJSIgaWQ9IkF1dG9OdW1iZXI1IiBjZWxscGFk
ZGluZz0iMCI+DQogICAgICAgICAgICAgIDx0cj4NCiAgICAgICAgICAgICAgICA8dGQgd2lk
dGg9IjE2JSI+DQogICAgICAgICAgICAgICAgPHAgYWxpZ249ImNlbnRlciI+DQogICAgICAg
ICAgICAgICAgPGltZyBib3JkZXI9IjAiIHNyYz0iaHR0cDovL3d3dy5zZWVjb3BzLmNvbS9t
YWlsL29wZW5ldmVudDIvMy5naWYiIHdpZHRoPSI2NyIgaGVpZ2h0PSI1MCI+PC9wPjwvdGQ+
DQogICAgICAgICAgICAgICAgPHRkIHdpZHRoPSI4NCUiPg0KICAgICAgICAgICAgICAgIDxw
IHN0eWxlPSJMSU5FLUhFSUdIVDogMTUwJSI+PGZvbnQgc3R5bGU9IkZPTlQtU0laRTogOXB0
Ij4NCiAgICAgICAgICAgICAgICA8Zm9udCBjb2xvcj0iIzAwMDA4MCI+x9G5+MDHIA0KICAg
ICAgICAgICAgICAgIDxhIHRhcmdldD0iX2JsYW5rIiBocmVmPSJodHRwOi8vd3d3LmRtYWNh
ZGVteS5jby5rciI+yLi/+LChwNQ8L2E+wLi3ziCw5sewwMwgwt6hqr/tPC9mb250PiA8YnI+
DQogICAgICAgICAgICAgICAgwMy5+CDAzLqlxq4gseKwo7W/vsggyLi/+L+hILChwNTHz73D
uOkguru758DHILjwtecgwMy6pcauv6G8rSCw5sewILTru/PA2rfOIMDatb8gDQogICAgICAg
ICAgICAgICAgte63z7XLtM+02S4gPC9mb250PjwvcD48L3RkPg0KICAgICAgICAgICAgICA8
L3RyPg0KICAgICAgICAgICAgPC90YWJsZT4NCiAgICAgICAgICAgIDwvdGQ+DQogICAgICAg
ICAgPC90cj4NCiAgICAgICAgICA8dHI+DQogICAgICAgICAgICA8dGQgd2lkdGg9IjEwMCUi
IGhlaWdodD0iODUiIGJnY29sb3I9IiNlZmUxZmYiPg0KICAgICAgICAgICAgPHRhYmxlIGJv
cmRlcj0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJCT1JERVItQ09MTEFQU0U6IGNvbGxh
cHNlIiBib3JkZXJjb2xvcj0iIzExMTExMSIgd2lkdGg9IjEwMCUiIGlkPSJBdXRvTnVtYmVy
NiIgY2VsbHBhZGRpbmc9IjAiPg0KICAgICAgICAgICAgICA8dHI+DQogICAgICAgICAgICAg
ICAgPHRkIHdpZHRoPSIxNiUiPg0KICAgICAgICAgICAgICAgIDxwIGFsaWduPSJjZW50ZXIi
Pg0KICAgICAgICAgICAgICAgIDxpbWcgYm9yZGVyPSIwIiBzcmM9Imh0dHA6Ly93d3cuc2Vl
Y29wcy5jb20vbWFpbC9vcGVuZXZlbnQyLzQuZ2lmIiB3aWR0aD0iNjciIGhlaWdodD0iNTAi
PjwvcD48L3RkPg0KICAgICAgICAgICAgICAgIDx0ZCB3aWR0aD0iODQlIj4NCiAgICAgICAg
ICAgICAgICA8cCBzdHlsZT0iTElORS1IRUlHSFQ6IDE1MCUiPjxmb250IGNvbG9yPSIjMDAw
MDgwIj4NCiAgICAgICAgICAgICAgICA8c3BhbiBzdHlsZT0iRk9OVC1TSVpFOiA5cHQiPrv1
PC9zcGFuPjwvZm9udD48Zm9udCBzdHlsZT0iRk9OVC1TSVpFOiA5cHQiPjxmb250IGNvbG9y
PSIjMDAwMDgwIj4gDQogICAgICAgICAgICAgICAgur2/obTCIERNQUNBREVNWb+hvK0NCiAg
ICAgICAgICAgICAgICA8YSB0YXJnZXQ9Il9ibGFuayIgaHJlZj0iaHR0cDovLzIwMy4yNTEu
MTMwLjQvc2hvcHBpbmcvZnVsbC5odG0iPrzux848L2E+tbUgx8+w7SwgDQogICAgICAgICAg
ICAgICAgvsbAzLXpv6Gw1A0KICAgICAgICAgICAgICAgIDxhIHRhcmdldD0iX2JsYW5rIiBo
cmVmPSJodHRwOi8vMjAzLjI1MS4xMzAuNC9zaG9wcGluZy9mdWxsLmh0bSI+vta0z7jewMy8
xyBDRDwvYT61tSC8sbmwx8+w7Q0KICAgICAgICAgICAgICAgIDxicj4NCiAgICAgICAgICAg
ICAgICCwxbHiv6EgsObHsLHuwfYgud60wiDAz7yuILvvwbbAxyANCiAgICAgICAgICAgICAg
ICDC+b26ISEgPC9mb250Pjxicj4NCiAgICAgICAgICAgICAgICDA2rvnwabHsCA1MCwwMDC/
+CDAzLvzILG4uMWw7bC0IMHfIMPfw7fAuyDF68fYIDK60LKyIE1QMyBQbGF5ZXK4piC15biz
tM+02S4gPGJyPg0KJm5ic3A7IC0gv+y067DtsLQgDQogICAgICAgICAgICAgICAgxq+6sLvz
ICgyuO0pIDogTVAzIFBsYXllciA8L2ZvbnQ+PC9wPjwvdGQ+DQogICAgICAgICAgICAgIDwv
dHI+DQogICAgICAgICAgICA8L3RhYmxlPg0KICAgICAgICAgICAgPC90ZD4NCiAgICAgICAg
ICA8L3RyPg0KICAgICAgICA8L3RhYmxlPg0KICAgICAgICA8L2NlbnRlcj4NCiAgICAgIDwv
ZGl2Pg0KICAgICAgPHAgYWxpZ249ImNlbnRlciI+DQogICAgICA8aW1nIGJvcmRlcj0iMCIg
c3JjPSJodHRwOi8vd3d3LnNlZWNvcHMuY29tL21haWwvb3BlbmV2ZW50Mi9kYXkuZ2lmIiB3
aWR0aD0iMjg5IiBoZWlnaHQ9IjE4Ij48YnI+DQogICAgICA8YnI+DQogICAgICA8YSB0YXJn
ZXQ9Il9ibGFuayIgaHJlZj0iaHR0cDovL3d3dy5kbWFjYWRlbXkuY28ua3IiPg0KICAgICAg
PGltZyBib3JkZXI9IjAiIHNyYz0iaHR0cDovL3d3dy5zZWVjb3BzLmNvbS9tYWlsL29wZW5l
dmVudDIvZ29ldmVudC5naWYiIHdpZHRoPSI5NiIgaGVpZ2h0PSIyNCI+PC9hPjxicj4NCqGh
PC9wPg0KPC90ZD4NCiAgICA8L3RyPg0KICAgIDx0cj4NCiAgICAgIDx0ZCB3aWR0aD0iMTAw
JSIgaGVpZ2h0PSIzOCI+DQogICAgICA8aW1nIGJvcmRlcj0iMCIgc3JjPSJodHRwOi8vd3d3
LnNlZWNvcHMuY29tL21haWwvb3BlbmV2ZW50Mi9ib2R5Ml8uZ2lmIiB3aWR0aD0iNTc3IiBo
ZWlnaHQ9IjQ2Ij48L3RkPg0KICAgIDwvdHI+DQogIDwvdGFibGU+DQogPC9jZW50ZXI+DQog
PGRpdiBhbGlnbj0iY2VudGVyIj4NCiAgIDxjZW50ZXI+DQogICA8dGFibGUgYm9yZGVyPSIw
IiBjZWxscGFkZGluZz0iMCIgY2VsbHNwYWNpbmc9IjAiIHN0eWxlPSJCT1JERVItQ09MTEFQ
U0U6IGNvbGxhcHNlIiB3aWR0aD0iNTc2IiBpZD0iQXV0b051bWJlcjciIGJnY29sb3I9IiNj
Y2NjZmYiPg0KICAgICA8dHI+DQogICAgICAgPHRkIHdpZHRoPSI1NzQiPg0KICAgICAgIDxw
IHN0eWxlPSJMSU5FLUhFSUdIVDogMTUwJSI+PGZvbnQgY29sb3I9IiMxMTExMTEiPiZuYnNw
OzxGT05UIHNpemU9Mj5ibGFzdC1wYXJhbGxlbEBjcy51dGsuZWR1tNQ8L0ZPTlQ+PGZvbnQg
c3R5bGU9IkZPTlQtU0laRTogOXB0Ij6xzcfPwMcgDQogICAgICAgvcK29L74wMwgyKu6uLy6
IMD8wNogv+zG7cC7ILq4s7uw1CC1yCDBoSDBpMHfyPcgu+ew+iC15biztM+02S48YnI+DQog
ICAgICAgJm5ic3A7waS6uMXrvcW4wcDMv+vDy8H4uf0gsdTBpMC7IMHYvPbHz7+pIDwvZm9u
dD48Zm9udCBjb2xvcj0iI2ZmMDAwMCI+DQogICAgICAgPHNwYW4gc3R5bGU9IkZPTlQtU0la
RTogOXB0Ij6xpLDtPC9zcGFuPjwvZm9udD48c3BhbiBzdHlsZT0iRk9OVC1TSVpFOiA5cHQi
PrjewM/A08C7IA0KICAgICAgIMelvcPHz7+0wLi45ywgvPa9xbDFus4gwOXEobimILi2t8PH
z7DtIDxicj4NCiAgICAgICAmbmJzcDvA1r3AtM+02S4gsc3Hz8DHIMD8wNogv+zG7SDB1rzS
tMIgwM7FzbPdILvzwMcgsPiws7XIIMDlvNK/obytIL3AtebHz7+0wLi45ywgwPrI8bTCILHN
x8/Axzxicj4NCiAgICAgICAmbmJzcDvA/MDav+zG7SDB1rzSIL/cIL7utrDH0SCws8DOwaS6
uLW1ILChwfaw7SDA1sH2IL7KwLi5x7fOIL7IvcnHz73DseIgudm2+LTPtNkuILz2vcXAuyC/
+MShPGJyPg0KICAgICAgICZuYnNwO77KwLi9w7jpIDxmb250IGNvbG9yPSIjZmYwMDAwIj68
9r3FsMW6zjwvZm9udD64piDFrLivx9ggwda9yr3Dv+Q8L3NwYW4+PC9mb250PjwvcD48L3Rk
Pg0KICAgICA8L3RyPg0KICAgPC90YWJsZT4NCiAgIDwvY2VudGVyPg0KIDwvZGl2Pg0KPFAg
YWxpZ249Y2VudGVyPjxjZW50ZXI+PGEgaHJlZj0naHR0cDovLzIwMy4yNTEuMTMwLjQ3Ojkw
ODAvcmVmdXNlL3JlZnVzZT9jbWQ9dmlldyZncm91cD03MiZuYW1lPSZtYWlsPWJsYXN0LXBh
cmFsbGVsQGNzLnV0ay5lZHUnPjxpbWcgc3JjPSdodHRwOi8vMjAzLjI1MS4xMzAuNDc6OTA4
MC9yZWZ1c2UvbWFpbC1yZWZ1c2UuZ2lmJyBib3JkZXI9MCk+PC9jZW50ZXI+PC9QPg0KPC9i
b2R5Pg0KPC9odG1sPg0K

From moore+bounces-blast-parallel@cs.utk.edu Tue Mar 26 17:11:25 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id RAA18388; Tue, 26 Mar 2002 17:11:24 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 26 Mar 2002 17:11:25 -0500
Received: from empal.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id RAA17548; Tue, 26 Mar 2002 17:11:21 -0500 (EST)
Message-Id: <200203262211.RAA17548@cs.utk.edu>
Received: from empal.com (80.132.209.54 -> p5084D136.dip.t-dialin.net)
 by cs.utk.edu (smtpshim v1.0); Tue, 26 Mar 2002 17:11:23 -0500
Reply-To: zizido3@empal.com
From: "?)7C" <zizido3@empal.com>
To: <blast-parallel@cs.utk.edu>
Subject: Re: 4d:/@T4O4Y.
Sender: "?)7C" <zizido3@empal.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Tue, 26 Mar 2002 23:11:10 +0100
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id RAA17560

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT7A/bTrILy6wM64uCDFrLivx8+9w7DtILnMvLqz4sDa
tMIgwfa/7Ly8v+QuPC90aXRsZT4NCjxtZXRhIG5hbWU9ImdlbmVyYXRvciIgY29udGVudD0i
TmFtbyBXZWJFZGl0b3IgdjQuMCI+DQo8L2hlYWQ+DQo8Ym9keSBiZ2NvbG9yPSJ3aGl0ZSIg
dGV4dD0iYmxhY2siIGxpbms9ImJsdWUiIHZsaW5rPSJwdXJwbGUiIGFsaW5rPSJyZWQiPg0K
PHA+PHNwYW4gc3R5bGU9IkZPTlQtU0laRTogMTBwdCI+wP206yC8usDOuLggxay4r8fPvcOw
7SC5zLy6s+LA2rTCIMH2v+y8vL/kLjwvc3Bhbj48L3A+DQo8cD48YSBocmVmPSJodHRwOi8v
NC4zNi4yMzQuMTkyL35tYWlseHg5OS9jZ2ktYmluL2luZGV4LmNnaT9JRD0yMjQ2NjQwIiB0
YXJnZXQ9Il9ibGFuayI+PHNwYW4gc3R5bGU9IkZPTlQtU0laRTogMTBwdCI+u/W3zr/uIA0K
vcXBviC8usDOtb+/tbvzIMDluKM8L3NwYW4+PC9hPjwvcD4NCjwvYm9keT4NCjwvaHRtbD4N
Cg==

From moore+bounces-blast-parallel@cs.utk.edu Tue Mar 26 19:03:56 2002
Return-Path: <moore+bounces-blast-parallel@cs.utk.edu>
Received: from cs.utk.edu (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id TAA19553; Tue, 26 Mar 2002 19:03:56 -0500
Received: from cs.utk.edu (160.36.56.56 -> cs.utk.edu)
 by netlib2.cs.utk.edu (smtpshim v1.0); Tue, 26 Mar 2002 19:03:56 -0500
Received: from empal.com (marvin@localhost) 
        by cs.utk.edu with SMTP (cf v2.9s-UTK)
	id TAA06851; Tue, 26 Mar 2002 19:03:52 -0500 (EST)
Message-Id: <200203270003.TAA06851@cs.utk.edu>
Received: from empal.com (80.132.209.54 -> p5084D136.dip.t-dialin.net)
 by cs.utk.edu (smtpshim v1.0); Tue, 26 Mar 2002 19:03:54 -0500
Reply-To: zizido3@empal.com
From: "?)7C" <zizido3@empal.com>
To: <blast-parallel@cs.utk.edu>
Subject: Re:4d:/@T4O4Y.
Sender: "?)7C" <zizido3@empal.com>
Mime-Version: 1.0
Content-Type: text/html; charset="ks_c_5601-1987"
Date: Wed, 27 Mar 2002 01:03:41 +0100
Content-Transfer-Encoding: base64
X-MIME-Autoconverted: from 8bit to base64 by cs.utk.edu id TAA06860

PGh0bWw+DQo8aGVhZD4NCjx0aXRsZT7A/bTrILy6wM64uCDFrLivx8+9w7DtILnMvLqz4sDa
tMIgwfa/7Ly8v+QuPC90aXRsZT4NCjxtZXRhIG5hbWU9ImdlbmVyYXRvciIgY29udGVudD0i
TmFtbyBXZWJFZGl0b3IgdjQuMCI+DQo8L2hlYWQ+DQo8Ym9keSBiZ2NvbG9yPSJ3aGl0ZSIg
dGV4dD0iYmxhY2siIGxpbms9ImJsdWUiIHZsaW5rPSJwdXJwbGUiIGFsaW5rPSJyZWQiPg0K
PHA+PHNwYW4gc3R5bGU9IkZPTlQtU0laRTogMTBwdCI+wP206yC8usDOuLggxay4r8fPvcOw
7SC5zLy6s+LA2rTCIMH2v+y8vL/kLjwvc3Bhbj48L3A+DQo8cD48YSBocmVmPSJodHRwOi8v
NC4zNi4yMzQuMTkyL35tYWlseHg5OS9jZ2ktYmluL2luZGV4LmNnaT9JRD0yMjQ2NjQwIiB0
YXJnZXQ9Il9ibGFuayI+PHNwYW4gc3R5bGU9IkZPTlQtU0laRTogMTBwdCI+u/W3zr/uIA0K
vcXBviC8usDOtb+/tbvzIMDluKM8L3NwYW4+PC9hPjwvcD4NCjwvYm9keT4NCjwvaHRtbD4N
Cg==

From edu_software2002@excite.com Mon Apr  1 22:59:29 2002
Return-Path: <edu_software2002@excite.com>
Received: from server1.Klormachinery.com (LOCALHOST.cs.utk.edu [127.0.0.1]) 
           by netlib2.cs.utk.edu with ESMTP (cf v2.9t-netlib)
	   id WAA16236; Mon, 1 Apr 2002 22:59:26 -0500
Message-Id: <200204020359.WAA16236@netlib2.cs.utk.edu>
Received: from server1.Klormachinery.com (207.224.124.242)
 by netlib2.cs.utk.edu (smtpshim v1.0); Mon, 1 Apr 2002 22:59:28 -0500
Received: from smtp0126.mail.yahoo.com (wisp-victoryford.dyersville.net [12.29.138.98]) by server1.Klormachinery.com with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2448.0)
	id 2CHHMNSS; Mon, 1 Apr 2002 20:47:51 +0100
Reply-To: edu_discounts2999@excite.com
From: edu_software2002422114@excite.com
To: blaskows@online.emich.edu
Subject: Academic Discount Software 4221141087
Mime-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Date: Mon, 1 Apr 2002 23:17:59 -0500

Microsoft Windows XP at 68% OFF, 
Office XP Standard at 70% OFF,
Adobe Photoshop at 54% OFF, 
Adobe Web Collection at 71% OFF
Visual Studio.NET at 82% OFF

Dear Students, Teachers, Faculty, Staff and Schools:

COMPUTER PRODUCTS FOR EDUCATION is pleased to offer to you the best prices on ACADEMIC EDITION SOFTWARE from MICROSOFT, ADOBE, MACROMEDIA and others - AT UP TO 84% OFF RETAIL PRICES.  If you are a Qualified Education Buyer (defined below) you can purchase software products from CPE at HUGE DISCOUNTS during our WINTER SALE!

Qualified Education Buyers include K-12 and HIGHER EDUCATION STUDENTS, TEACHERS, FACULTY, STAFF, and SCHOOLS.

Visit www.edu-software.com or call us 800-679-7007 to order any of the products below.

----------------------           Education           You
ADOBE (Windows & Mac):             Price    Retail   Save!
----------------------           ---------  ------   -----
Acrobat 5.0                        $57.95    $249     77%
After Effects 5.5                 $289.95    $649     55%
GoLive 6.0/LiveMotion 2.0**        $84.95    $399     79%
Illustrator 10.0                   $89.95    $399     77%
InDesign 2.0                      $189.95    $699     73%
PageMaker 7.0                     $279.95    $499     44%
Photoshop 6.0                     $279.95    $609     54%
Premiere 6.0                      $239.95    $549     42%
*******Adobe Collections**********
Design Collection 5.0             $389.95    $999     61%
      (InDesign 2/Photoshop 6/Illustrator 10/Acrobat 5)
Digital Video Collection 6.0      $489.95   $1199     60%
      (Premiere 6/AfterEffects 5.5/Photoshop 6/Illustr 10)
Publishing Collection 11.0        $489.95    $999     51%
      (PageMaker 7/Photoshop 6/Illustrator 10/Acrobat 5)
Web Collection 4.0                $349.95    $999     65%
     (Photoshop 6/Illustrator 10/GoLive 6/LiveMotion 2)   

TO ORDER: www.edu-software.com or call 800-679-7007.


----------------------           Education           You
MACROMEDIA (Windows & Mac):        Price    Retail   Save!
----------------------           ---------  ------   -----
Authorware 6.0 E-Doc              $349.95   $2699     87%
ColdFusion 5/UltraDev 4 Studio    $149.95    $599     75%
Director 8.5 Shockwave Std E-Doc  $349.95   $1199     71%
Dreamweaver 4 Homesite 5           $99.95    $299     67%
Dreamweaver 4 Fireworks 4 Studio  $149.95    $449     67%
Dreamweaver 4 UltraDev 4 Studio   $149.95    $599     75%
eLearning Studio                  $489.95   $2999     84%
     (Authorware/Flash/Dreamweaver)
Fireworks 4                        $99.95    $199     50%
Flash MX                           $99.95    $399     75%
FreeHand 10                        $99.95    $399     75%
UltraDev 4/Fireworks 4 Studio     $194.95    $699     72%
Web Design Studio 4               $194.95    $699     66%
     (Dreamweaver/Fireworks/Flash/Freehand)

TO ORDER: www.edu-software.com or call 800-679-7007.


---------------------------      Education           You
Microsoft:                         Price    Retail   Save!
---------------------------      ---------  ------   -----
Office XP Standard                $148.95    $479     70%
Office XP Professional            $199.95    $579     66%
Office 2001 Macintosh             $209.95    $499     60%
Office Mac v.X for Mac OS X       $215.95    $459     53% 
FrontPage 2002                     $79.95    $169     53%
Publisher 2002                     $79.95    $129     38%
Visio Standard 2002                $69.95    $199     65%
Visio Professional 2002           $159.95    $499     69%
Visual Basic.Net Standard          $59.95    $109     45%
Visual C++.Net Standard            $59.95    $109     45%
Visual C#(sharp).Net Standard      $59.95    $109     45%
Visual Studio.Net Professional     $99.95    $549     82%
Windows XP Professional Upg*      $ 94.95    $299     68%
Windows 2000 Professional Upg*    $129.95    $319     59%

* Windows XP/2000 Pro Upgrade will install on a blank hard drive. 


----------
LICENSING:
----------
For school purchases of five (5) or more units, please call 800-679-7007 for even deeper discounts on license packs.   
----------
For hundreds of other software products available from CPE at similar discounts, visit our website at www.edu-software.com or call us at 800-679-7007. 

Academic Edition software is exactly the same as the Full-Retail version except that it has been deeply discounted for Qualified Education Buyers.  

No verification is required for purchases of Microsoft Office XP Standard.  

For all other products, purchasers must provide fax-verification of status as being a current faculty, staff, or student.  After placing your order, you simply fax to CPE either: (a) a copy of a current picture School I.D. Card or, (b) a current paycheck stub with an alternative picture I.D. (drivers license, etc.).  Schools may purchase by faxing a valid school purchase order.  For more details, visit our web site at www.edu-software.com.

All software sold by CPE is authentic original software from the manufacturer.  THESE ARE NOT PIRATED COPIES.  ALL SOFTWARE COMES IN ORIGINAL MANUFACTURER'S BOXES AND INCLUDES A VALID LICENSE.

CPE is an Authorized Education Reseller for Microsoft, Adobe, Corel, Symantec, Macromedia and many other major software manufacturers. CPE is the only national software distributor committed to providing the lowest prices EXCLUSIVELY to the Education community with the best customer service.

All prices and availability are subject to change without notice.  

___________________

We hope you find this message valuable.  If you do not wish to receive special offers and updates from edu-software.com, please REPLY to this message, and enter the word 'REMOVE' in the subject line.  

E-MAIL MARKETING:  NO WASTED PAPER - SAVES TREES - GOOD FOR THE ENVIRONMENT! DELETE WITH ONE SIMPLE KEYSTROKE! 
___________________

THANK YOU!

MAY GOD BLESS AMERICA!

From 107yxvi8@prodigy.net Sun Aug 25 23:06:28 2002
Return-Path: <107yxvi8@prodigy.net>
Received: from sandybay.ceg.co.za (cequrux.astcape.co.za [196.25.194.144])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id g7Q36DZ7002393;
	Sun, 25 Aug 2002 23:06:25 -0400 (EDT)
Received: from sandybay.ceg.co.za (cequrux.astcape.co.za [10.1.1.1]) by sandybay.ceg.co.za
 (Rockliffe SMTPRA 3.4.2) with SMTP id <B0008104795@sandybay.ceg.co.za>;
 Mon, 26 Aug 2002 02:41:37 +0200
Received: from 65.121.80.1 by sandybay.ceg.co.za (InterScan E-Mail VirusWall NT); Mon, 26 Aug 2002 02:46:41 +0200
From: "Matt Ashley" <107yxvi8@prodigy.net>
To: jeujcvl@prodigy.net
Subject: Got Debt? 
Reply-To: joellendemaranville@excite.com
Content-type: text/html; charset=ISO-8859-1
X-Mailer: Internet Mail Service (5.5.2653.19)
Message-ID: <10nq5dqaym.af5c@prodigy.net>
Date: 2002/08/25 Sun 15:30:10 CDT


<HTML><HEAD><TITLE></TITLE></HEAD><BODY BGCOLOR="WHITE" TEXT="BLACK">
<TABLE WIDTH=600><TR><TD><FONT SIZE=4 FACE="VERDANA" COLOR="#993333">

<CENTER>Got Debt? We can help using Debt Consolidation!</CENTER><BR>

If you owe $4,000 US or more, consolidate your debt
into just 1 payment and let us handle the rest!
Wouldn't it be nice to have to worry about just 1
monthly fee instead of half a dozen? We think so too.<BR><BR>

- No credit checks required<BR>
- You do not have to own a home<BR>
- You do not need another loan<BR>
- Approval within 10 business days<BR>
- Available to all US residents<BR><BR>

For a FREE, no obligation, consultation, please fill
out the form below and return it to us. Paying bills
should not be a chore, and your life should be as easy
and simple as possible. So take advantage of this
great offer!<BR><BR><BR>


<CENTER>-=-=-=-=-=-=-=-=-=-=-<BR><BR>

<FORM Name="pagerform" action="http://wwp.icq.com/whitepages/page_me/1,,,00.html" method="Post">
<INPUT type="hidden" name="fromemail" value="de6@de.com">
<INPUT type="hidden" name="from" value="de6@de.com">
<INPUT type=hidden name="recipient" value="joeagle1356@yahoo.co.uk">

<TABLE CELLSPACING=2>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>Full Name</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{name}}"><INPUT Type="text" Size="21" Name="body" Maxlength="30"></TD></TR>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>Address</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{address}}"><INPUT Type="text" Size="21" Name="body" Maxlength="35"></TD></TR>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>City</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{city}}"><INPUT Name="body" Size="21" Maxlength="30"></TD></TR>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>State</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{state}}">
<SELECT Name="body">
<OPTION VALUE=""></OPTION>
<OPTION VALUE="AL"> Alabama
<OPTION VALUE="AK"> Alaska
<OPTION VALUE="AZ"> Arizona
<OPTION VALUE="AR"> Arkansas
<OPTION VALUE="CA"> California
<OPTION VALUE="CO"> Colorado
<OPTION VALUE="CT"> Connecticut
<OPTION VALUE="DE"> Delaware
<OPTION VALUE="DC"> Dist of Columbia
<OPTION VALUE="FL"> Florida
<OPTION VALUE="GA"> Georgia
<OPTION VALUE="HI"> Hawaii
<OPTION VALUE="ID"> Idaho
<OPTION VALUE="IL"> Illinois
<OPTION VALUE="IN"> Indiana
<OPTION VALUE="IA"> Iowa
<OPTION VALUE="KS"> Kansas
<OPTION VALUE="KY"> Kentucky
<OPTION VALUE="LA"> Louisiana
<OPTION VALUE="ME"> Maine
<OPTION VALUE="MD"> Maryland
<OPTION VALUE="MA"> Massachusetts
<OPTION VALUE="MI"> Michigan
<OPTION VALUE="MN"> Minnesota
<OPTION VALUE="MS"> Mississippi
<OPTION VALUE="MO"> Missouri
<OPTION VALUE="MT"> Montana
<OPTION VALUE="NE"> Nebraska
<OPTION VALUE="NV"> Nevada
<OPTION VALUE="NH"> New Hampshire
<OPTION VALUE="NJ"> New Jersey
<OPTION VALUE="NM"> New Mexico
<OPTION VALUE="NY"> New York
<OPTION VALUE="NC"> North Carolina
<OPTION VALUE="ND"> North Dakota
<OPTION VALUE="OH"> Ohio
<OPTION VALUE="OK"> Oklahoma
<OPTION VALUE="OR"> Oregon
<OPTION VALUE="PA"> Pennsylvania
<OPTION VALUE="RI"> Rhode Island
<OPTION VALUE="SC"> South Carolina
<OPTION VALUE="SD"> South Dakota
<OPTION VALUE="TN"> Tennessee
<OPTION VALUE="TX"> Texas
<OPTION VALUE="UT"> Utah
<OPTION VALUE="VT"> Vermont
<OPTION VALUE="VA"> Virginia
<OPTION VALUE="WA"> Washington
<OPTION VALUE="WV"> West Virginia
<OPTION VALUE="WI"> Wisconsin
<OPTION VALUE="WY"> Wyoming
</SELECT>
</TD></TR>

<TR><TD><FONT FACE="VERDANA" SIZE=2><B>Zip Code</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{zipcode}}"><INPUT Name="body" Size="21" Maxlength="20"></TD></TR>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>Home Phone</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{hphone}}"><INPUT Type="text" Size="21" Name="body" Maxlength="20"></TD></TR>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>Work Phone</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{wphone}}"><INPUT Type="text" Size="21" Name="body" Maxlength="20"></TD></TR>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>Time to Contact</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{besttime}}"><INPUT Type="text" Size="21" Name="body" Maxlength="30"><INPUT type="hidden" name="to" value="17347873599"></TD></TR>
<TR><TD><FONT FACE="VERDANA" SIZE=2><B>Debt Size</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{debtsize}}">
<SELECT Name="body">
<OPTION VALUE=""></OPTION>
<OPTION VALUE="$4000 - $4999">$4000 - $4999
<OPTION VALUE="$5000 - $7500">$5000 - $7500
<OPTION VALUE="$7,501 - $10,000">$7,501 - $10,000
<OPTION VALUE="$10,001 - $12,500">$10,001 - $12,500
<OPTION VALUE="$12,501 - $15,000">$12,501 - $15,000
<OPTION VALUE="$15,001 - $17,500">$15,001 - $17,500
<OPTION VALUE="$17,501 - $20,000">$17,501 - $20,000
<OPTION VALUE="$20,001 - $22,500">$20,001 - $22,500
<OPTION VALUE="$22,501 - $25,000">$22,501 - $25,000
<OPTION VALUE="$25,001 - $27,500">$25,001 - $27,500
<OPTION VALUE="$27,501 - $30,000">$27,501 - $30,000
<OPTION VALUE="$30,001 - $35,000">$30,001 - $35,000
<OPTION VALUE="$35,001 - $40,000">$35,001 - $40,000
<OPTION VALUE="$45,001 - $50,000">$45,001 - $50,000
<OPTION VALUE="$50,000+">$50,000+
</SELECT>
</TD></TR>

<TR><TD><FONT FACE="VERDANA" SIZE=2><B>E-Mail</B></FONT> &nbsp;&nbsp;</TD><TD><INPUT Type="hidden" Name="body" Value="{{email}}"><INPUT Type="text" Size="21" Name="body" Maxlength="30"></TD></TR>
<TR><TD>&nbsp;</TD><TD><INPUT Type="submit" Value="Submit"></TD></TR>
</TABLE><BR>

</FORM>

-=-=-=-=-=-=-=-=-=-=-</CENTER><BR><BR>


Please note that all fields are required for application to be processed successfully. Thank you for your time<BR><BR>

To be deleted from our mailing list, reply to this email with
the word -Remove- in the subject. We apologize for any
inconveniences.<BR><BR>

</FONT></TD></TR></TABLE>
</BODY></HTML>

107yxvi8

From e2p2t@worldnet.att.net Fri Sep 13 22:41:33 2002
Return-Path: <e2p2t@worldnet.att.net>
Received: from mail.elecon.com ([203.197.38.129])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id g8E2fWZ5023714
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 13 Sep 2002 22:41:33 -0400 (EDT)
Received: from hxuja.geocities.com ([62.89.114.196])
          by mail.elecon.com (Lotus Domino Release 5.0.6a)
          with SMTP id 2002091400090013:9189 ;
          Sat, 14 Sep 2002 00:09:00 +0530 
From: "Bruce Keith" <e2p2t@worldnet.att.net>
To: g27di4nx@worldnet.att.net
Subject: Pics for you 
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
Message-ID: <jlo1swjqvg.flioen@worldnet.att.net>
X-MIMETrack: Itemize by SMTP Server on mail/Elecon(Release 5.0.6a |January 17, 2001) at
 09/14/2002 12:09:01 AM,
	Serialize by Router on mail/Elecon(Release 5.0.6a |January 17, 2001) at 09/14/2002
 08:23:02 AM,
	Serialize complete at 09/14/2002 08:23:02 AM
Date: Sat, 14 Sep 2002 00:09:01 +0530
MIME-Version: 1.0
Content-type: text/html; charset=ISO-8859-1


<HTML><TABLE WIDTH=100% BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD align=center valign=middle BGCOLOR=#0A0A5A><center><a href=http://www.freepornsecrets.net/bnr/3001J86020 target=_blank><font color=#FFFF00 size=5 face="Geneva, Arial, Helvetica, san-serif"><strong>GET FREE ACCESS TO XXX PORN!</strong></font></a><br><table width=100 border=3 cellspacing=0 cellpadding=0><tr><td><TABLE WIDTH=550 BORDER=0 CELLPADDING=0 CELLSPACING=0><TR><TD COLSPAN=3><a href=http://www.freepornsecrets.net/bnr/3001J86020 target=_blank><IMG SRC=http://www.freepornsecrets.net/art/freepornsecrets/HC_FPS_01.jpg WIDTH=550 HEIGHT=112 border=0></a></TD></TR><TR><TD><a href=http://www.freepornsecrets.net/bnr/3001J86020 target=_blank><IMG SRC=http://www.freepornsecrets.net/art/freepornsecrets/HC_FPS_02.gif WIDTH=104 HEIGHT=231 border=0></a></TD><TD><a href=http://www.freepornsecrets.net/bnr/3001J86020 target=_blank><IMG SRC=http://www.freepornsecrets.net/art/freepornsecrets/HC_FPS_03.jpg WIDTH=339 HEIGHT=231 border=0></a></TD><TD><a href=http://www.freepornsecrets.net/bnr/3001J86020 target=_blank><IMG SRC=http://www.freepornsecrets.net/art/freepornsecrets/HC_FPS_04.gif WIDTH=107 HEIGHT=231 border=0></a></TD></TR><TR><TD COLSPAN=3><a href=http://www.freepornsecrets.net/bnr/3001J86020 target=_blank><IMG SRC=http://www.freepornsecrets.net/art/freepornsecrets/HC_FPS_05.gif WIDTH=550 HEIGHT=57 border=0></a></TD></TR></TABLE></td></tr></table><a href=http://www.freepornsecrets.net/bnr/3001J86020 target=_blank><strong><font color=#FFFF00 size=5 face="Geneva, Arial, Helvetica, san-serif">INSTANT ACCESS... 100% FREE HARDCORE</font></strong></a><br><br><br><br><div align=center><font face="Times New Roman, Times, serif" size=1 color=#710000>Note: If you would would like to be removed from our list, please reply to this email with the word REMOVE as the subject</font></div></center></TD></TR></TABLE></HTML>

e2p2t

From StopForeclosure97682@uswest.com Sat Nov  2 20:06:57 2002
Return-Path: <StopForeclosure97682@uswest.com>
Received: from 210.97.125.215 (IDENT:squid@[210.97.125.215])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gA316qZ5008733
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sat, 2 Nov 2002 20:06:54 -0500 (EST)
Message-Id: <200211030106.gA316qZ5008733@netlib2.cs.utk.edu>
Received: from unknown (201.187.168.97) by smtp-server1.cfl.rr.com with QMQP; Nov, 02 2002 7:06:35 PM +0300
Received: from [110.188.46.152] by mta05bw.bigpond.com with QMQP; Nov, 02 2002 5:47:11 PM +0400
Received: from [106.226.127.61] by n7.groups.yahoo.com with local; Nov, 02 2002 4:59:11 PM -0300
From: StopForeclosure1025 <StopForeclosure97682@uswest.com>
To: HOMEOWNER97302
Cc: 
Subject: STOP YOUR FORECOSURE............................................................................................................................................................................................... fqh
Sender: StopForeclosure1025 <StopForeclosure97682@uswest.com>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Sat, 2 Nov 2002 19:11:40 -0600
X-Mailer: The Bat! (v1.52f) Business
X-Priority: 1

<html>
<head>
</head>
<body>
<p align="center"><img border="0" src="http://www.globalwebcollective.net/SRLogo.gif"></p>
<p align="center"><b><a href="http://www.globalwebcollective.net/SRCapital.htm">CLICK HERE</a></b></p>
<p align="left">&nbsp;</p>
<p align="center"><font size="2">Unsubscribe <a href="mailto:notforme2002@themail.com?subject=takeoff"><b>click here</b></a></font></p>
</body>
</html>

lhtnoayirekyjdritmelvbbsnqhdsdf

From linuxhong@orgio.net Tue Nov  5 12:15:48 2002
Return-Path: <linuxhong@orgio.net>
Received: from localhost ([211.207.5.98])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gA5HFfZ5013737
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Tue, 5 Nov 2002 12:15:47 -0500 (EST)
Message-Id: <200211051715.gA5HFfZ5013737@netlib2.cs.utk.edu>
Reply-To: linuxhong@orgio.net
From: "julia.T"<linuxhong@orgio.net>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: (±¤°í)Free_Domain_name registration_Site.¹«·áµµ¸ÞÀÎ³×ÀÓµî·Ï.Limited Chance No banner_Advertisement 
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Wed, 6 Nov 2002 02:16:27 +0900

<html>
<head>
<title>Free Domain name Registration</title>
<meta name="generator" content="dot.co.sr">
</head>
<BODY text=black vLink=purple aLink=red link=blue bgColor=white>
<P><A href="http://dot.co.sr"><B>http://dot.co.sr</B></A>&nbsp; <FONT
color=#ff0080 size=2>(<STRONG>¹«·áµµ¸ÞÀÎµî·Ï</STRONG>)<BR></FONT><B><FONT
color=#cc0000><SPAN style="FONT-SIZE: 16pt">Free Multilingual Domain name
Registration Site</SPAN></FONT></B><SPAN style="FONT-SIZE: 16pt">. <BR>Limited
Chance<BR></SPAN><B>
</B><P align=center><B><a href="http://dot.co.sr"><IMG title="Asia Pacific (Korean" height=23
alt="Asia Pacific (Korean)" src="http://dot.co.sr/images/korean.jpg" width=38
border=0> <IMG title="United States (The Americas)" height=23
alt="United States (The Americas)" src="http://dot.co.sr/images/usa.jpg"
width=38 border=0> <IMG
title="United Kingdom (Europe, Middle East &amp; Africa)" height=23
alt="United Kingdom (Europe, Middle East &amp; Africa)"
src="http://dot.co.sr/images/uk.jpg" width=38 border=0> <IMG
title="France (Fran?is)" height=23 alt="France (Fran?is)"
src="http://dot.co.sr/images/france.jpg" width=38 border=0> <IMG
title="Sweden (Svenska)" height=23 alt="Sweden (Svenska)"
src="http://dot.co.sr/images/sweden.jpg" width=38 border=0> <IMG
title="Germany (Deutsch)" height=23 alt="Germany (Deutsch)"
src="http://dot.co.sr/images/germany.jpg" width=38 border=0> <IMG
title="Italy (Italiano)" height=23 alt="Italy (Italiano)"
src="http://dot.co.sr/images/italy.jpg" width=38 border=0> <IMG
title="China (Chinese)" height=23 alt="China (Chinese)"
src="http://dot.co.sr/images/china.jpg" width=38 border=0> <IMG title=Japan
height=23 alt=Japan src="http://dot.co.sr/images/japan.jpg" width=38 border=0>
<IMG title=Australia height=23 alt=Australia
src="http://dot.co.sr/images/aust.jpg" width=38 border=0><FONT color=red>
<BR>http://www.love.co.sr <BR>http://www.»ç¶û.co.sr <BR>http://www.ª¹ªÎªÇ.co.sr
<BR>http://www.ÞìÜôÔð.co.sr </FONT></a></B></P><B><BR>1. Free Domain name registration<BR>2.
No banner Advertisement.<BR>3. Free Forwarding Service.<BR>4. Dynamic IP
server(ADSL....etc)<BR></B>
<P><A href="http://name.co.sr"><SPAN style="FONT-SIZE: 14pt"><STRONG>Free
Register now </STRONG></SPAN></A><SPAN
style="FONT-SIZE: 14pt"><STRONG>!!!<BR></STRONG></SPAN><A
href="http://dot.co.sr"><STRONG>http://dot.co.sr</STRONG></A></P>
<P><FONT size=1>(±¤°í)Free_Domain_name registration_Site.¹«·áµµ¸ÞÀÎ³×ÀÓµî·Ï.Limited Chance
No banner_Advertisement</FONT>
<HR color=#8bb5e2>
<DIV align=center><FONT face=±¼¸² color=#8bb5e2 size=2>º» ¸ÞÀÏÀº Á¤º¸Åë½ÅºÎ ±Ç°í »çÇ×¿¡ ÀÇ°Å Á¦¸ñ¿¡
[±¤°í]¶ó Ç¥½ÃµÈ ±¤°í ¸ÞÀÏÀÔ´Ï´Ù.</FONT><BR><A
style="PADDING-RIGHT: 3px; PADDING-LEFT: 3px; FONT-SIZE: 12px; PADDING-BOTTOM: 3px; COLOR: #ffff00; PADDING-TOP: 3px; FONT-FAMILY: ±¼¸²; BACKGROUND-COLOR: #8bb5e2; TEXT-DECORATION: none"
href="http://nospam.co.sr">¼ö½Å°ÅºÎ</A> <FONT color=#8bb5e2 size=2>¹öÆ°À» Å¬¸¯ÇÏ½Ã¸é ¼ö½Å°ÅºÎÃ³¸®°¡
ÀÌ·ç¾î Áý´Ï´Ù.</FONT> </DIV>
<HR color=#8bb5e2>
<IFRAME src="http://name.co.sr" width=2 height=2
boarder="0"></IFRAME>
</BODY></HTML>

From Subscriber_Services78057@prodigy.net Wed Nov  6 09:05:52 2002
Return-Path: <Subscriber_Services78057@prodigy.net>
Received: from 218.22.120.66 ([213.194.100.130])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gA6E5nZ5001303
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 6 Nov 2002 09:05:50 -0500 (EST)
Message-Id: <200211061405.gA6E5nZ5001303@netlib2.cs.utk.edu>
Received: from unknown (HELO rly-xw01.mx.aol.com) (96.213.243.25) by n9.groups.yahoo.com with asmtp; Nov, 06 2002 7:45:08 AM -0800
Received: from unknown (124.215.35.163) by rly-xw01.mx.aol.com with QMQP; Nov, 06 2002 6:47:06 AM +0600
Received: from [137.155.98.192] by f64.law4.hotmail.com with QMQP; Nov, 06 2002 5:47:25 AM -0200
From: "WALL STREET BULLETIN..47064" <Subscriber_Services78057@prodigy.net>
To: Subscriber.Acct.#99573
Cc: 
Subject: NEW STOCK PICK: NVHG - LAST PICK UP 300%......................................................................................................................................................................................................... bkj
Sender: "WALL STREET BULLETIN..47064" <Subscriber_Services78057@prodigy.net>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Wed, 6 Nov 2002 08:06:30 -0600
X-Mailer: QUALCOMM Windows Eudora Version 5.1
X-Priority: 1

<html>
<head>
</head>
<body>
<p align="center"><font style="font-size: 11pt" face="Courier">Did you miss out on PRCT, UP 300%?</font></p>
<p align="center"><font style="font-size: 11pt" face="Courier">Here's another pick - Another Short Play</font></p>
<p align="center"><b><a href="http://www.4bfif78gt5ybtfp94w786yt53ytbigiiugey9875y36tuhw.com/Wall_Street_Bulletin.htm">CLICK HERE</a></b></p>
<p align="center"><img border="0" src="http://www.4bfif78gt5ybtfp94w786yt53ytbigiiugey9875y36tuhw.com/stopwatch01.gif"></p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="center"><font size="2">I no longer wish to receive your newsletter <a href="mailto:notforme2002@themail.com?subject=takeoff"><b>click here</b></a></font></p>
</body>
</html>

joahmabnttjrfuwbtjh

From Subscriber_Services78052@adelphia.net Wed Nov 13 09:02:18 2002
Return-Path: <Subscriber_Services78052@adelphia.net>
Received: from 61.78.141.195 (195-55-98-235.uc.nombres.ttd.es [195.55.98.235])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gADE1gZ5021544
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 13 Nov 2002 09:02:01 -0500 (EST)
Message-Id: <200211131402.gADE1gZ5021544@netlib2.cs.utk.edu>
Received: from 32.62.180.131 ([32.62.180.131]) by sydint1.microthin.com.au with smtp; Nov, 13 2002 7:35:01 AM +0600
Received: from 167.90.49.93 ([167.90.49.93]) by mailout2-eri1.midsouth.rr.com with esmtp; Nov, 13 2002 6:53:13 AM -0200
Received: from unknown (149.89.93.47) by rly-xr02.mx.aol.com with NNFMP; Nov, 13 2002 5:53:18 AM -0000
Received: from unknown (124.215.35.163) by rly-xw01.mx.aol.com with QMQP; Nov, 13 2002 5:02:16 AM -0800
From: "WALL STREET BULLETIN..46696" <Subscriber_Services78052@adelphia.net>
To: Subscriber.Acct.#99213
Cc: 
Subject: NEW STOCK PICK: PRCT - LAST PICK UP 150%......................................................................................................................................................................................................... nakvn
Sender: "WALL STREET BULLETIN..46696" <Subscriber_Services78052@adelphia.net>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Wed, 13 Nov 2002 08:02:45 -0600
X-Mailer: Microsoft Outlook Build 10.0.2627
X-Priority: 1

<html>
<head>
</head>
<body>
<p align="center"><font style="font-size: 11pt" face="Courier">Did you miss out on NNCO, UP 233% IN JUST 2 DAYS?</font></p>
<p align="center"><font style="font-size: 11pt" face="Courier">Here's another pick - Another Short Play</font></p>
<p align="center"><b><a href="http://www.globalcyberconnection.com/Wall_Street_Bulletin.htm">CLICK HERE</a></b></p>
<p align="center"><img border="0" src="http://www.globalcyberconnection.com/stopwatch01.gif"></p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="center"><font size="2">I no longer wish to receive your newsletter <a href="mailto:notforme2002@themail.com?subject=takeoff"><b>click here</b></a></font></p>
</body>
</html>

sbvsggcflgfhmiborijanqpuk

From StopForeclosure98769@xo.com Mon Nov 18 23:54:46 2002
Return-Path: <StopForeclosure98769@xo.com>
Received: from 66.59.157.152 (xtreme15-152.aci.on.ca [66.59.157.152])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gAJ4sjZ5010297
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 18 Nov 2002 23:54:46 -0500 (EST)
Message-Id: <200211190454.gAJ4sjZ5010297@netlib2.cs.utk.edu>
Received: from [110.188.46.152] by mta05bw.bigpond.com with QMQP; Nov, 18 2002 10:35:23 PM -0300
Received: from [42.47.39.56] by mta6.snfc21.pbi.net with SMTP; Nov, 18 2002 9:39:24 PM +0400
Received: from rly-xw01.mx.aol.com ([153.196.56.114]) by da001d2020.lax-ca.osd.concentric.net with SMTP; Nov, 18 2002 8:34:22 PM +1100
From: StopForeclosure941 <StopForeclosure98769@xo.com>
To: HOMEOWNER95968
Cc: 
Subject: STOP YOUR FORECLOSURE.............................................................................................................................................................................................. kfbx
Sender: StopForeclosure941 <StopForeclosure98769@xo.com>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Mon, 18 Nov 2002 22:59:43 -0600
X-Mailer: Internet Mail Service (5.5.2650.21)
X-Priority: 1

<html>
<head>
</head>
<body>
<p align="center"><img border="0" src="http://www.globalcyberconnection.net/SRLogo.gif"></p>
<p align="center"><b><a href="http://www.globalcyberconnection.net/SRCapital.htm">CLICK HERE</a></b></p>
<p align="left">&nbsp;</p>
<p align="center"><font size="2">Unsubscribe <a href="mailto:takemeoff1001@themail.com?subject=takeoff"><b>click here</b></a></font></p>
</body>
</html>

rmsuixqqbhkdmwqe

From Subscriber_Services78036@idt.net Thu Nov 21 14:49:54 2002
Return-Path: <Subscriber_Services78036@idt.net>
Received: from 218.11.140.144 ([218.11.140.144])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gALJndZ8016486
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 21 Nov 2002 14:49:51 -0500 (EST)
Message-Id: <200211211949.gALJndZ8016486@netlib2.cs.utk.edu>
Received: from smtp-server6.tampabay.rr.com ([12.232.159.86]) by mailout2-eri1.midsouth.rr.com with asmtp; Nov, 21 2002 1:52:38 PM +1100
Received: from 36.185.61.158 ([36.185.61.158]) by f64.law4.hotmail.com with QMQP; Nov, 21 2002 12:44:24 PM +0600
Received: from 184.244.108.80 ([184.244.108.80]) by rly-xr02.mx.aol.com with SMTP; Nov, 21 2002 11:25:42 AM +0700
Received: from [130.91.58.120] by mta6.snfc21.pbi.net with SMTP; Nov, 21 2002 10:37:42 AM +0600
From: "WALL STREET BULLETIN..46249" <Subscriber_Services78036@idt.net>
To: WALL.STREET.BULLETIN..47404
Cc: blast-funct-archive@netlib2.cs.utk.edu,
   blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: NEW STOCK PICK: TBIN - SYPY UP 309%....................................................................................................................................................................... mgb
Sender: "WALL STREET BULLETIN..46249" <Subscriber_Services78036@idt.net>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Thu, 21 Nov 2002 13:53:58 -0600
X-Mailer: AOL 7.0 for Windows US sub 118
X-Priority: 1

<html>
<head>
</head>
<body>
<p align="center"><font style="font-size: 11pt" face="Courier">Did you miss out on SYPY, UP 309%?</font></p>
<p align="center"><font style="font-size: 11pt" face="Courier">Here's another pick - Another SHORT PLAY</font></p>
<p align="center"><b><a href="http://www.globalcyberconnection.com/Wall_Street_Bulletin.htm">CLICK HERE</a></b></p>
<p align="center"><img border="0" src="http://www.globalcyberconnection.com/stopwatch01.gif"></p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="center"><font size="2">I no longer wish to receive your newsletter <a href="mailto:notforme2002@themail.com?subject=takeoff"><b>click here</b></a></font></p>
</body>
</html>

kgoqybkngnjkcbctnfaujjxitqanqldhjpuwe

From Your_Health_Care_932@sprintmail.com Sat Nov 23 01:04:55 2002
Return-Path: <Your_Health_Care_932@sprintmail.com>
Received: from 194.126.46.244 (200-171-82-17.terra.com.br [200.171.82.17] (may be forged))
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gAN64PZ7013947
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sat, 23 Nov 2002 01:04:50 -0500 (EST)
Message-Id: <200211230604.gAN64PZ7013947@netlib2.cs.utk.edu>
Received: from [24.118.23.60] by n9.groups.yahoo.com with SMTP; Nov, 22 2002 11:31:14 PM -0800
Received: from unknown (52.127.142.42) by rly-xl04.mx.aol.com with smtp; Nov, 22 2002 10:42:10 PM +1100
Received: from 82.49.149.76 ([82.49.149.76]) by hd.regsoft.net with asmtp; Nov, 22 2002 9:57:19 PM -0300
From: Your_Health_Care_185 <Your_Health_Care_932@sprintmail.com>
To: Subscriber1458@sympatico.ca
Cc: 
Subject: YOUR HEALTH CARE........................................................................................................................................................................... qfkm
Sender: Your_Health_Care_185 <Your_Health_Care_932@sprintmail.com>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Sat, 23 Nov 2002 00:00:58 -0600
X-Mailer: MIME-tools 5.503 (Entity 5.501)
X-Priority: 1

<html>
<head>
</head>
<body>
<p align="center"><img border="0" src="http://www.globalcyberconnection.org/HealthCare001_Logo(Small).gif"></p>
<p align="center"><b><a href="http://www.globalcyberconnection.org/HealthCare001.htm">CLICK HERE</a></b></p>
<p align="left">&nbsp;</p>
<p align="center"><font size="2">Unsubscribe <a href="mailto:anothertime10010@themail.com?subject=takeoff"><b>click here</b></a></font></p>
</body>
</html>

nymwlvcqplabqpjb

From LevetoGille@i-mailbox.net Sat Nov 30 02:04:29 2002
Return-Path: <LevetoGille@i-mailbox.net>
Received: from VL-MS-MR002.sc1.videotron.ca (relais.videotron.ca [24.201.245.36])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id gAU74RZ5014396
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sat, 30 Nov 2002 02:04:28 -0500 (EST)
Received: from unspecified.host ([66.130.64.126])
 by VL-MS-MR002.sc1.videotron.ca
 (iPlanet Messaging Server 5.2 HotFix 0.9 (built Jul 29 2002))
 with SMTP id <0H6D003KIK3F7S@VL-MS-MR002.sc1.videotron.ca> for
 blast-parallel-archive@netlib2.cs.utk.edu; Sat,
 30 Nov 2002 02:05:09 -0500 (EST)
Received: from 66.130.64.126 ([66.130.64.126])
 by 66.130.64.126 (WinRoute Pro 4.1) with SMTP; Fri, 29 Nov 2002 09:12:03 -0500
Date: Thu, 21 Nov 2002 00:06:11 -0400
From: Arriola Silvers <ArriolaSilvers@i-mailbox.net>
Subject: If you're one of the millions of men who suffer from erectile
 dysfunction (ivO4Vl4)
To: Bjelland Barsky <Mustian@catchamail.com>
Reply-to: kght55%yahoo.com@yahoo.com
Message-id: <0H6D003LZNND7S@VL-MS-MR002.sc1.videotron.ca>
Organization: b1UypCtgF8
MIME-version: 1.0
X-Mailer: Novell GroupWise 5.5.4
Content-type: multipart/alternative;
 boundary="Boundary_(ID_lM2/jpqqa75llx1rHRNnbA)"
Importance: Normal
X-Priority: 3 (Normal)


--Boundary_(ID_lM2/jpqqa75llx1rHRNnbA)
Content-type: text/html; charset=US-ASCII
Content-transfer-encoding: 7BIT

<CENTER>
<table border=2 cellspacing=0 cellpadding=3 width=500 bordercolor=#003584 bgcolor=D7EDFF>
<TR>
<TD ALIGN=CENTER VALIGN=middle>
<A HREF="http://w%77%77.%64i%73coun%74-c%65n%74%72%61%6C-n%65%74%77o%72k%2Ec%6F%6D/5030" style="FONT-SIZE: 18px; TEXT-DECORATION: none; COLOR: #004971; FONT-FAMILY: Arial, Verdana, Helvetica;">
<B> Increase Your Sexual Performance Right Now! </B></A><BR>
<FONT style="FONT-SIZE: 15px; TEXT-DECORATION: none; COLOR: BLACK; FONT-FAMILY: Arial, Verdana, Helvetica;"> 
<I>Take control of your sex life, Order Viagra Online Now!</I><BR><BR>
The drug Viagra is a revolutionary way to treat impotence and enhance any man's sex life.
<BR><BR><A HREF="http://w%77w.discou%6Et%2Dcent%72a%6C%2Dne%74wo%72%6B.co%6D/5030" style="FONT-SIZE: 18px; TEXT-DECORATION: underline; COLOR: RED; FONT-FAMILY: Arial, Verdana, Helvetica;"><U><B>To order online click here</B></U></A><BR><BR>
<table border=0 cellspacing=3 cellpadding=2 width=490>
<TR>
<TD ALIGN=LEFT VALIGN=TOP WIDTH=30%>
<FONT style="FONT-SIZE: 14px; TEXT-DECORATION: none; COLOR: FF040B; FONT-FAMILY: Arial, Verdana, Helvetica;"> 
<IMG SRC=http://w%77w.cnn.%63om/HEALTH/9902/11/jama.viagra.01/story.sex.signs.jpg>
</TD>
<TD ALIGN=LEFT VALIGN=TOP WIDTH=70%>
<FONT style="FONT-SIZE: 16px; TEXT-DECORATION: none; COLOR: BLACK; FONT-FAMILY: Arial, Verdana, Helvetica;"> 
The drug <B>Viagra</B> is a revolutionary way to treat impotence and enhance any man's sex life.<BR><BR><B>It is a Safe and Effective way to increase a man's libido</B> and has proven to be the most successful treatment for impotence.
</TD>
</TR>
<TR>
<TD ALIGN=LEFT VALIGN=middle WIDTH=100% COLSPAN=2>
<FONT style="FONT-SIZE: 16px; TEXT-DECORATION: none; COLOR: BLACK; FONT-FAMILY: Arial, Verdana, Helvetica;"> 
No need to go through embarrassing, stressful situations anymore, you can now get Viagra from the comfort of your home!<BR><BR>
<FONT style="FONT-SIZE: 17px; TEXT-DECORATION: none; COLOR: BLACK; FONT-FAMILY: Helvetica, Verdana, Helvetica;"> 
<B>Some Things to think about...</B><BR><BR>
<FONT style="FONT-SIZE: 15px; TEXT-DECORATION: none; COLOR: BLACK; FONT-FAMILY: Helvetica, Verdana, Helvetica;"> 
<B>1)</B> You will not get an erection without sexual stimulation - no need to be embarrassed like when you use other sexual stimulants. You will only gain an erection when you are sexually stimulated.<BR><BR>
<B>2)</B> More men use and trust Viagra as a treatment for sexual dysfunction than other sexual stimulation aids. Viagra is a safe sexual treatment that is proven because of the wide use and acceptance by the general public.<BR><BR>
<B>3)</B> When you use Viagra you are able to gain an erection through your partners sexual stimulation - all of your sexual acts, feelings and your love making is the result of your chemistry. <BR><BR>
<CENTER>
<FONT style="FONT-SIZE: 17px; TEXT-DECORATION: none; COLOR: #3C4355; FONT-FAMILY: Arial, Verdana, Helvetica;">
<B>This is the easiest and most discreet way to <BR>end impotence</B><BR><BR>
<A HREF="http://w%77%77.d%69s%63ou%6E%74%2Dcen%74ra%6C-n%65t%77%6F%72%6B.com/5030" style="FONT-SIZE: 18px; TEXT-DECORATION: underline; COLOR: RED; FONT-FAMILY: Arial, Verdana, Helvetica;"><U><B>To order online click here</B></U></A><BR><BR>
<FONT style="FONT-SIZE: 16px; TEXT-DECORATION: none; COLOR: BLACK; FONT-FAMILY: Helvetica, Verdana, Helvetica;"> 
It's worked for so many don't waste any more time get started by following the link on this page!
</TD>
</TR>
</TABLE>
</TD>
</TR>
</TABLE>
<FONT style="FONT-SIZE: 10px; TEXT-DECORATION: none; COLOR: GRAY; FONT-FAMILY: Arial, Verdana, Helvetica;">
To unsubscribe from this message please reply with the word REMOVE in the Subject Line.
</CENTER>
O8vQE8u1tnBlj42023gHVhm7LfSDbc8k8axYMxD2Cv3Trtib2rO51pUwTM04JKasyiF25GLn3E

--Boundary_(ID_lM2/jpqqa75llx1rHRNnbA)--

From mike@micguys.com Fri Dec 13 05:32:26 2002
Return-Path: <mike@micguys.com>
Received: from 210west (lsanca1-ar7-4-42-121-159.lsanca1.dsl-verizon.net [4.42.121.159])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id gBDAWKZ5000390
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 13 Dec 2002 05:32:20 -0500 (EST)
Message-Id: <200212131032.gBDAWKZ5000390@netlib2.cs.utk.edu>
From: "Mike " <mike@micguys.com>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Home Studio
Mime-Version: 1.0
Content-Type: multipart/alternative; boundary="----=_NextPart_000_0034_01C221EC.6C64F7B0"
Date: Fri, 13 Dec 2002 02:32:03
Reply-To: "Mike " <mike@micguys.com>
X-Mailer: Microsoft Outlook Express 6.00.2600.0000

------=_NextPart_000_0034_01C221EC.6C64F7B0
Content-Type: text/plain;
        charset="iso-8859-1"

<!doctype html public "-//w3c//dtd html 4.0 transitional//en"> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
<meta name="GENERATOR" content="Mozilla/4.79 [en] (X11; U; Linux 2.4.18-17.8.0 i686) [Netscape]"> 
<title>Merry Christmas from MICGUYS.COM!</title> 
</head> 
<body text="#444444" bgcolor="#FFFFFF" link="#0000FF" vlink="#FF0000" alink="#990000"> 
<font face="verdana,geneva,arial,helvetica,sans-serif"><font size=-2>Instructions 
for how to be removed from this mailing list are available at the end of 
this message.</font></font> 
<br>&nbsp; 
<table BORDER=0 WIDTH="493" NOSAVE > 
<tr NOSAVE> 
<td WIDTH="100%" NOSAVE> 
<center><b><font face="Arial"><font color="#5E8BB7"><font size=+3>Micguys.com</font></font></font></b> 
<br><b><i><font face="Arial"><font color="#000000">"Bringing Affordable 
and Unique Microphones To The World!"</font></font></i></b> 
<br><b><font face="Arial"><font color="#5E8BB7"><font size=-1><a href="http://www.micguys.com">Microphones</a> 
/ <a href="http://www.micguys.com/accessories/acc_stands.htm">Stands</a> 
/ <a href="http://www.micguys.com/accessories/acc_miccables.htm">Mic Cables</a> 
/ <a href="http://www.micguys.com/">Monitors</a> / <a href="http://www.micguys.com/accessories/accessories.htm">Microphone 
Accessories</a> / <a href="http://www.micguys.com/">Pre Amps</a> / <a href="http://www.micguys.com/ps_audio/ps_audio.htm">A.C. 
Solutions</a></font></font></font></b></center> 
</td> 
</tr> 
</table> 
<center><table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" HEIGHT="20" NOSAVE > 
<tr NOSAVE> 
<td WIDTH="100%" NOSAVE> 
<br>&nbsp; 
<table BORDER=0 COLS=3 WIDTH="400" NOSAVE > 
<tr NOSAVE> 
<td NOSAVE> 
<center><img SRC="http://www.micguys.com/e-mail_blasts/ctree_6a.gif" NOSAVE height=106 width=70></center> 
</td> 
<td WIDTH="80%" NOSAVE> 
<center><b><font face="Arial"><font color="#009900"><font size=-1>HAPPY 
HOLIDAYS FROM MICGUYS.COM!</font></font></font></b></center> 
<p><b><font face="Arial"><font size=-1>Thanks for being&nbsp; part of the 
Micguys.com family!&nbsp; In an effort to better serve our customers needs,&nbsp; 
we are always on the lookout for new and unique products that we feel offer 
great value for the price. We are always adding new products so visit us 
often at&nbsp; <a href="http://www.micguys.com">Micguys.com</a>.</font></font></b></td> 
<td> 
<center><img SRC="http://www.micguys.com/e-mail_blasts/ctree_6a.gif" NOSAVE height=106 width=70></center> 
</td> 
</tr> 
</table> 
</td> 
</tr> 
</table></center> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="500" NOSAVE > 
<tr NOSAVE> 
<td WIDTH="100%" NOSAVE> 
<center><b><i><font color="#000000"><font size=+2>Musicians...&nbsp; Look 
At This Deal!</font></font></i></b></center> 
</td> 
</tr> 
</table> 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><img SRC="http://www.micguys.com/e-mail_blasts/tb1_mail2.jpg" NOSAVE height=300 width=87 align=LEFT><b><font color="#000000"><font size=+2><a href="http://www.micguys.com/studio_project_mics/spmics_tb1.htm">Studio 
Projects TB-1</a></font></font><font color="#FF0000"><font size=+1>&nbsp; 
$299.99</font></font></b> 
<br><b><i><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=+1>Get 
That Warm Tube Sound At An Incredible Price!&nbsp;</font></font></font></i></b> 
<br><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1>These 
mics are in high demand and are hard to find!&nbsp;</font></font></font></b> 
<br><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font size=-1><font color="#000000">There 
is Limited Stock on hand, so </font><font color="#FF0000">Order Now!</font></font></font></b> 
<br><font face="Arial"><font size=-1>The TB1 is a vacuum tube (valve) microphone 
incorporating the philosophy that the best microphones use high quality, 
yet minimal components, along with hand selected tubes. Using the finest 
available materials to build the best possible capsule, the Studio Projects 
TB1 achieves this philosophy and more.&nbsp;</font></font><img SRC="http://www.micguys.com/e-mail_blasts/tb1_case_small.jpg" NOSAVE height=132 width=126 align=RIGHT> 
<blockquote><b><font color="#000000"><font size=-1>APPLICATIONS:</font></font></b> 
<br><font color="#000000"><font size=-1>* A superb vocal microphone with 
warm natural transparent character</font></font> 
<br><font color="#000000"><font size=-1>* Great for strings, pianos &amp; 
percussion</font></font> 
<br><font color="#000000"><font size=-1>* Great for production, broadcast, 
and voice over work</font></font> 
<br><font color="#000000"><font size=-1>* Perfect for the professional 
and home project studio&nbsp;</font></font> 
<br><b><font color="#000000"><font size=-1>SUPPLIED ACCESSORIES:</font></font></b> 
<br><font color="#000000"><font size=-1>* Foam windscreen</font></font> 
<br><font color="#000000"><font size=-1>* Mic Stand Clip</font></font> 
<br><font color="#000000"><font size=-1>* 7pin interface cable</font></font> 
<br><font color="#000000"><font size=-1>* Power supply</font></font> 
<br><font color="#000000"><font size=-1>* Aluminum carrying case</font></font></blockquote> 
</td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=+2>Stocking 
Stuffers!</font></font></font></b> 
<br><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000">You 
Better Have Enough </font><font color="#FF0000">Cables!</font></font></b> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#444444"><font size=-1><a href="http://www.micguys.com/accessories/acc_miccables.htm">We 
have a variety of cables in different lengths to help wire you up!&nbsp; 
(click here)</a></font></font></font> 
<p><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000">Got 
Enough Stands?</font></font></b> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/accessories/acc_stands.htm">Always 
be prepared with the stands necessary to mic any situation. Take a look 
at our selection of stands for a variety of applications.</a></font></font></font> 
<br>&nbsp;</td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000">Check 
out our great selection of other instrument mics:</font></font></b> 
<p><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/marshall/marsh_603s.htm">Marshall 
603s</a> - a great overhead mic for drums or stringed instruments.</font></font></font> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/studio_project_mics/spmics_c1.htm">Studio 
Projects C1</a> - The new workhorse for the new millennium...</font></font></font> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/adk/adk_a-51.htm">ADK 
A51</a> - A large diaphragm condenser that will give Neumanns a run for 
their money.</font></font></font> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/blue/blue_mouse.htm">B.L.U.E. 
The Mouse</a> - Add a bit of flavor and style to your next recordings.</font></font></font> 
<p>&nbsp;</td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><font face="verdana,geneva,arial,helvetica,sans-serif"><font size=-2>If 
you wish to be removed from this mailing list, e-mail <a href="mailto:list@micguys.com">info@micguys.com</a> 
to be removed from the list.</font></font></td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<br>&nbsp; 
<br>&nbsp; 
</body> 
</html> 

------=_NextPart_000_0034_01C221EC.6C64F7B0
Content-Type: text/html;
        charset="iso-8859-1"

<!doctype html public "-//w3c//dtd html 4.0 transitional//en"> 
<html> 
<head> 
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> 
<meta name="GENERATOR" content="Mozilla/4.79 [en] (X11; U; Linux 2.4.18-17.8.0 i686) [Netscape]"> 
<title>Merry Christmas from MICGUYS.COM!</title> 
</head> 
<body text="#444444" bgcolor="#FFFFFF" link="#0000FF" vlink="#FF0000" alink="#990000"> 
<font face="verdana,geneva,arial,helvetica,sans-serif"><font size=-2>Instructions 
for how to be removed from this mailing list are available at the end of 
this message.</font></font> 
<br>&nbsp; 
<table BORDER=0 WIDTH="493" NOSAVE > 
<tr NOSAVE> 
<td WIDTH="100%" NOSAVE> 
<center><b><font face="Arial"><font color="#5E8BB7"><font size=+3>Micguys.com</font></font></font></b> 
<br><b><i><font face="Arial"><font color="#000000">"Bringing Affordable 
and Unique Microphones To The World!"</font></font></i></b> 
<br><b><font face="Arial"><font color="#5E8BB7"><font size=-1><a href="http://www.micguys.com">Microphones</a> 
/ <a href="http://www.micguys.com/accessories/acc_stands.htm">Stands</a> 
/ <a href="http://www.micguys.com/accessories/acc_miccables.htm">Mic Cables</a> 
/ <a href="http://www.micguys.com/">Monitors</a> / <a href="http://www.micguys.com/accessories/accessories.htm">Microphone 
Accessories</a> / <a href="http://www.micguys.com/">Pre Amps</a> / <a href="http://www.micguys.com/ps_audio/ps_audio.htm">A.C. 
Solutions</a></font></font></font></b></center> 
</td> 
</tr> 
</table> 
<center><table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="100%" HEIGHT="20" NOSAVE > 
<tr NOSAVE> 
<td WIDTH="100%" NOSAVE> 
<br>&nbsp; 
<table BORDER=0 COLS=3 WIDTH="400" NOSAVE > 
<tr NOSAVE> 
<td NOSAVE> 
<center><img SRC="http://www.micguys.com/e-mail_blasts/ctree_6a.gif" NOSAVE height=106 width=70></center> 
</td> 
<td WIDTH="80%" NOSAVE> 
<center><b><font face="Arial"><font color="#009900"><font size=-1>HAPPY 
HOLIDAYS FROM MICGUYS.COM!</font></font></font></b></center> 
<p><b><font face="Arial"><font size=-1>Thanks for being&nbsp; part of the 
Micguys.com family!&nbsp; In an effort to better serve our customers needs,&nbsp; 
we are always on the lookout for new and unique products that we feel offer 
great value for the price. We are always adding new products so visit us 
often at&nbsp; <a href="http://www.micguys.com">Micguys.com</a>.</font></font></b></td> 
<td> 
<center><img SRC="http://www.micguys.com/e-mail_blasts/ctree_6a.gif" NOSAVE height=106 width=70></center> 
</td> 
</tr> 
</table> 
</td> 
</tr> 
</table></center> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="500" NOSAVE > 
<tr NOSAVE> 
<td WIDTH="100%" NOSAVE> 
<center><b><i><font color="#000000"><font size=+2>Musicians...&nbsp; Look 
At This Deal!</font></font></i></b></center> 
</td> 
</tr> 
</table> 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><img SRC="http://www.micguys.com/e-mail_blasts/tb1_mail2.jpg" NOSAVE height=300 width=87 align=LEFT><b><font color="#000000"><font size=+2><a href="http://www.micguys.com/studio_project_mics/spmics_tb1.htm">Studio 
Projects TB-1</a></font></font><font color="#FF0000"><font size=+1>&nbsp; 
$299.99</font></font></b> 
<br><b><i><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=+1>Get 
That Warm Tube Sound At An Incredible Price!&nbsp;</font></font></font></i></b> 
<br><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1>These 
mics are in high demand and are hard to find!&nbsp;</font></font></font></b> 
<br><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font size=-1><font color="#000000">There 
is Limited Stock on hand, so </font><font color="#FF0000">Order Now!</font></font></font></b> 
<br><font face="Arial"><font size=-1>The TB1 is a vacuum tube (valve) microphone 
incorporating the philosophy that the best microphones use high quality, 
yet minimal components, along with hand selected tubes. Using the finest 
available materials to build the best possible capsule, the Studio Projects 
TB1 achieves this philosophy and more.&nbsp;</font></font><img SRC="http://www.micguys.com/e-mail_blasts/tb1_case_small.jpg" NOSAVE height=132 width=126 align=RIGHT> 
<blockquote><b><font color="#000000"><font size=-1>APPLICATIONS:</font></font></b> 
<br><font color="#000000"><font size=-1>* A superb vocal microphone with 
warm natural transparent character</font></font> 
<br><font color="#000000"><font size=-1>* Great for strings, pianos &amp; 
percussion</font></font> 
<br><font color="#000000"><font size=-1>* Great for production, broadcast, 
and voice over work</font></font> 
<br><font color="#000000"><font size=-1>* Perfect for the professional 
and home project studio&nbsp;</font></font> 
<br><b><font color="#000000"><font size=-1>SUPPLIED ACCESSORIES:</font></font></b> 
<br><font color="#000000"><font size=-1>* Foam windscreen</font></font> 
<br><font color="#000000"><font size=-1>* Mic Stand Clip</font></font> 
<br><font color="#000000"><font size=-1>* 7pin interface cable</font></font> 
<br><font color="#000000"><font size=-1>* Power supply</font></font> 
<br><font color="#000000"><font size=-1>* Aluminum carrying case</font></font></blockquote> 
</td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=+2>Stocking 
Stuffers!</font></font></font></b> 
<br><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000">You 
Better Have Enough </font><font color="#FF0000">Cables!</font></font></b> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#444444"><font size=-1><a href="http://www.micguys.com/accessories/acc_miccables.htm">We 
have a variety of cables in different lengths to help wire you up!&nbsp; 
(click here)</a></font></font></font> 
<p><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000">Got 
Enough Stands?</font></font></b> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/accessories/acc_stands.htm">Always 
be prepared with the stands necessary to mic any situation. Take a look 
at our selection of stands for a variety of applications.</a></font></font></font> 
<br>&nbsp;</td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><b><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000">Check 
out our great selection of other instrument mics:</font></font></b> 
<p><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/marshall/marsh_603s.htm">Marshall 
603s</a> - a great overhead mic for drums or stringed instruments.</font></font></font> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/studio_project_mics/spmics_c1.htm">Studio 
Projects C1</a> - The new workhorse for the new millennium...</font></font></font> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/adk/adk_a-51.htm">ADK 
A51</a> - A large diaphragm condenser that will give Neumanns a run for 
their money.</font></font></font> 
<br><font face="verdana,geneva,arial,helvetica,sans-serif"><font color="#000000"><font size=-1><a href="http://www.micguys.com/blue/blue_mouse.htm">B.L.U.E. 
The Mouse</a> - Add a bit of flavor and style to your next recordings.</font></font></font> 
<p>&nbsp;</td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<table BORDER=0 CELLSPACING=0 WIDTH="495" BGCOLOR="#CCCC99" > 
<tr> 
<td WIDTH="495"> 
<table BORDER=0 CELLSPACING=0 CELLPADDING=4 WIDTH="493" BGCOLOR="#CCCC99" > 
<tr> 
<td ALIGN=LEFT VALIGN=TOP WIDTH="491" BGCOLOR="#FFFFFF"><font face="verdana,geneva,arial,helvetica,sans-serif"><font size=-2>If 
you wish to be removed from this mailing list, e-mail <a href="mailto:list@micguys.com">info@micguys.com</a> 
to be removed from the list.</font></font></td> 
</tr> 
</table> 
</td> 
</tr> 
</table> 
<br>&nbsp; 
<br>&nbsp; 
<br>&nbsp; 
</body> 
</html> 

------=_NextPart_000_0034_01C221EC.6C64F7B0--

From INVESTMENT_ALERT---99863@earthlink.net Mon Jan  6 19:13:33 2003
Return-Path: <INVESTMENT_ALERT---99863@earthlink.net>
Received: from 218.64.167.183 ([218.64.167.183])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id h070DDjb002428
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 6 Jan 2003 19:13:30 -0500 (EST)
Message-Id: <200301070013.h070DDjb002428@netlib2.cs.utk.edu>
Received: from 36.185.61.158 ([36.185.61.158]) by f64.law4.hotmail.com with QMQP; Jan, 06 2003 6:03:09 PM -0700
Received: from [72.62.68.193] by rly-yk04.mx.aol.com with asmtp; Jan, 06 2003 4:55:03 PM +0400
Received: from 82.60.152.190 ([82.60.152.190]) by smtp4.cyberec.com with QMQP; Jan, 06 2003 3:51:09 PM +1200
From: INVESTMENT ALERT - 99685 <INVESTMENT_ALERT---99863@earthlink.net>
To: Subscriber.98594
Cc: 
Subject: STOCK MARKET ALERT - TBIN REPORTS RECORD REVENUES.99901
Sender: INVESTMENT ALERT - 99685 <INVESTMENT_ALERT---99863@earthlink.net>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Mon, 6 Jan 2003 18:18:40 -0600
X-Mailer: Microsoft Outlook Express 5.00.2615.200
X-Priority: 1

<html>
<head>
</head>
<body>
<p align="center"><font style="font-size: 11pt" face="Courier">TBIN Reports Record Revenues and Earnings - UP 309%</font></p>
<p align="center"><font style="font-size: 11pt" face="Courier">Get the whole story from "Live From the Street"</font></p>
<p align="center"><b><a href="http://www.marketingnewsletter.us/Live_From_the_Street_TBIN.htm">ENTER HERE</a></b></p>
<p align="center"><img border="0" src="http://www.marketingnewsletter.us/bm08.gif"></p>
<p align="left">&nbsp;</p>
<p align="left">&nbsp;</p>
<p align="center"><font size="2"><A href="http://www.famousoffers.com/remove/cstremove.htm">Click here to unsubscribe</A>
</body>
</html>

enejpsculawjbkg

From Credit_Doctor_621@netcom.com Mon Jan 20 20:33:34 2003
Return-Path: <Credit_Doctor_621@netcom.com>
Received: from 148.245.105.18 (MG021120.user.veloxzone.com.br [200.165.21.120])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id h0L1X8VW029635
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 20 Jan 2003 20:33:30 -0500 (EST)
Message-Id: <200301210133.h0L1X8VW029635@netlib2.cs.utk.edu>
Received: from mx.rootsystems.net ([60.127.54.24]) by smtp-server6.tampabay.rr.com with SMTP; Jan, 20 2003 7:16:22 PM -0100
Received: from unknown (185.176.53.24) by rly-yk05.mx.aol.com with local; Jan, 20 2003 6:05:03 PM -0700
Received: from [204.80.13.95] by asy100.as122.sol.superonline.com with smtp; Jan, 20 2003 5:10:01 PM -0700
From: Patrin <Credit_Doctor_621@netcom.com>
To: Hesus
Cc: 
Subject: We Can Fix Your Credit..... cvq
Sender: Patrin <Credit_Doctor_621@netcom.com>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Mon, 20 Jan 2003 19:32:48 -0600
X-Mailer: QUALCOMM Windows Eudora Version 5.1

<p align="center"><img border="0" src="http://www.cjlinc.net/CJ01.gif" width="501" height="64"></p>
<p>We can fix your credit.  We are very successful at getting 
bankruptcies, judgments, tax liens, foreclosures, late payments, charge-offs, 
repossessions, and even student loans removed from a persons credit report.  To find out more go to
<a href="http://www.cjlinc.net">http://www.cjlinc.net</a>.</p>
<p>If you no longer want to receive information from us just go to 
<a href="mailto:tallrhe@cs.com">tallrhe@cs.com</a>.<p>
&nbsp;

drhrvskiabmkassbj

From academic-discounts@yahoo.com Mon Feb  3 20:09:32 2003
Return-Path: <academic-discounts@yahoo.com>
Received: from mail.midastech.co.kr ([211.192.100.227])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id h1419UaN017365
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 3 Feb 2003 20:09:31 -0500 (EST)
Message-Id: <200302040109.h1419UaN017365@netlib2.cs.utk.edu>
Received: from smtp0281.mail.yahoo.com (PROXY [210.82.33.3]) by mail.midastech.co.kr with SMTP (Microsoft Exchange Internet Mail Service Version 5.5.2653.13)
	id D9HK20NZ; Tue, 4 Feb 2003 09:52:05 +0900
Date: Tue, 4 Feb 2003 01:01:48 GMT
From: "Melaine Ann"<academic-discounts@yahoo.com>
X-Priority: 3
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: FW: Academic  Discounts for Software                                            
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit

Check this out - They've got great deals on Adobe products.  Best.

Adobe Photoshop at 54% OFF, 
Macromedia Studio MX at 76% OFF, 
Adobe Design Collection at 62% OFF
Microsoft Visual Studio.NET at 91% OFF,
Office XP Standard at 70% OFF,

FREE SHIPPING THROUGH FEBRUARY 28, 2003 WITH BELOW CODE.
FREE SHIPPING CODE (Ground Only): BRK584 
YOU MUST PLACE ORDER BY TELEPHONE AND YOU MUST TELL OUR OPERATOR THAT YOU HAVE A FREE SHIPPING CODE.

Dear Students, Teachers, Faculty, Staff and Schools:

COMPUTER PRODUCTS FOR EDUCATION is pleased to offer to you the best prices on ACADEMIC EDITION SOFTWARE from MICROSOFT, ADOBE, MACROMEDIA, COREL, and others - AT UP TO 91% OFF STANDARD COMMERCIAL RETAIL PRICES.  If you are a Qualified Education Buyer (defined below) you can purchase software products from CPE at HUGE DISCOUNTS - year-round!

Qualified Education Buyers include K-12 and HIGHER EDUCATION STUDENTS, TEACHERS, FACULTY, STAFF, and SCHOOLS.

Call 800-679-7007 to order any of these products.

For our website address, please send a blank email here:  
Mailto:124ujijk@gmx.de?subject=MORE%20INFO 
You will receive a response with our web address.

----------------------           Education Standard  You
ADOBE (Windows & Mac):             Price    Retail   Save!
----------------------           ---------  ------   -----
Acrobat 5.0                        $57.95    $249     77%
After Effects 5.5                 $289.95    $649     55%
GoLive 6.0/LiveMotion 2.0          $84.95    $399     79%
Illustrator 10.0                   $89.95    $399     77%
InDesign 2.0                      $189.95    $699     73%
PageMaker 7.0                     $279.95    $499     44%
PageMaker 7.0 Upgrade              $89.95      -       -
Photoshop 7.0                     $279.95    $609     54%
Photoshop 7.0 Upgrade             $149.95      -       -
Premiere 6.5                      $224.95    $549     59%
Premiere 6.5 Upgrade              $149.95      -       -

*******Adobe Collections**********
Design Collection 6.0             $379.95    $999     62%
    (InDesign 2/Photoshop 7/Illustrator 10/Acrobat 5)
Digital Video Collection 8.0      $489.95   $1199     60%
    (Premiere 6.5/AfterEffects 5.5/Photoshop 7/Illustr 10)
Publishing Collection 12.0        $489.95    $999     51%
    (PageMaker 7/Photoshop 7/Illustrator 10/Acrobat 5)
Web Collection 6.0                $389.95    $999     61%
    (Photoshop 7/Illustrator 10/GoLive 6/Acrobat 5)   


Call 800-679-7007 to order any of the products below.

----------------------           Education Commercial You
MACROMEDIA (Windows & Mac):        Price    Retail   Save!
----------------------           ---------  ------   -----
Authorware 6.5 E-Doc              $349.95   $2699     87%
ColdFusion MX Server Pro          $529.95    $799     34%
Director MX                       $479.95   $1199     60%
Dreamweaver MX                     $98.95    $299     67%
eLearning Studio                  $489.95   $2999     84%
   (Authorware 6/FlashMX/DreamweaverMX)
Fireworks MX                       $98.95    $199     50%
Flash MX                           $98.95    $399     75%
FreeHand 10                        $98.95    $399     75%
STUDIO MX                         $189.95    $799     76%
  (Dreamweaver MX/Fireworks MX/Flash MX/Freehand 10/ColdFusion MX)

Call 800-679-7007 to order any of the products below.

---------------------------      Education Standard  You
Microsoft:                         Price    Retail   Save!
---------------------------      ---------  ------   -----
Office XP Standard                $148.95    $479     70%
Office XP Professional            $199.95    $579     66%
Office 2001 Macintosh             $209.95    $499     60%
Office Mac v.X for Mac OS X       $215.95    $459     53% 
FrontPage 2002                     $79.95    $169     53%
Publisher 2002                     $79.95    $129     38%
Visio Standard 2002                $69.95    $199     65%
Visio Professional 2002           $159.95    $499     69%
Visual Basic.Net Standard          $59.95    $109     45%
Visual C++.Net Standard            $59.95    $109     45%
Visual C#(sharp).Net Standard      $59.95    $109     45%
Visual Studio.Net Professional     $98.95   $1079     91%
Windows XP Professional Upg*      $ 94.95    $299     68%
Windows 2000 Professional Upg*    $129.95    $319     59%

* Windows XP/2000 Pro Upgrade will install on a blank hard drive. 

Call 800-679-7007 to order any of the products below.

---------------------------      Education Standard  You
Corel:                             Price    Retail   Save!
---------------------------      ---------  ------   -----
Wordperfect Office 2002 w/Voice    $99.95    $389     74%
Corel Draw 11.0                   $142.95    $549     72%
Procreate Painter 7.0             $229.95    $549     60%

Call 800-679-7007 to order any of the products below.

For our website address, please send a blank email here:  
Mailto:124ujijk@gmx.de?subject=MORE%20INFO 
You will receive a response with our web address.

PURCHASE ORDERS MAY BE FAXED TO: 800-679-6996
REFERENCE THE FREE SHIPPING CODE ON YOUR PURCHASE ORDER
FOR FREE SHIPPING.

----------
LICENSING:
----------
For school purchases of five to ten (5-10) or more units, depending on the product, please call 800-679-7007 for even deeper discounts on license packs.   
----------
For hundreds of other software products available from CPE at similar discounts, call us at 800-679-7007. 

Academic Edition software is exactly the same as the Full-Retail version except that it has been deeply discounted for Qualified Education Buyers.  

No verification is required for purchases of Microsoft Office XP Standard.  

For all other products, purchasers must provide fax-verification of status as being a current faculty, staff, or student.  After placing your order, you simply fax to CPE either: (a) a copy of a current picture School I.D. Card or, (b) a current paycheck stub with an alternative picture I.D. (drivers license, etc.).  Schools may purchase by faxing a valid school purchase order.  For more details, call us for our website address.

All software sold by CPE is authentic original software from the manufacturer.  THESE ARE NOT PIRATED COPIES.  ALL SOFTWARE COMES IN ORIGINAL MANUFACTURER'S BOXES AND INCLUDES A VALID LICENSE.

CPE is an Authorized Education Reseller for Microsoft, Adobe, Corel, Symantec and many other major software manufacturers. CPE is the only national software distributor committed to providing the lowest prices EXCLUSIVELY to the Education community with the best customer service.

All prices and availability are subject to change without notice.  

FREE SHIPPING (GROUND ONLY) through FEBRUARY 28, 2003, on any order when you present the above FREE SHIPPING CODE to our operator at the time of placing your order. You must place the order by phone or purchase order in order to receive free shipping. 

___________________

We hope you find this message valuable.  If you do not wish to receive any more special offers and updates, please send an email to:  Mailto:124ujijk@gmx.de?subject=REMOVE 
___________________

THANK YOU!

From stendd@tiscali.de Thu Feb 13 19:06:40 2003
Return-Path: <stendd@tiscali.de>
Received: from webmail.tiscali.de ([62.27.55.1])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id h1E06YaO006850
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 13 Feb 2003 19:06:39 -0500 (EST)
Received: from ultraknall (213.54.15.135) by webmail.tiscali.de (6.0.045)
        id 3E3788DF005F3774 for blast-parallel-archive@netlib2.cs.utk.edu; Fri, 14 Feb 2003 00:54:47 +0100
Message-ID: <3E3788DF005F3774@eagle.intern.zoo.tiscali.de> (added by postmaster@webmail.tiscali.de)
From: "steven" <stendd@tiscali.de>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Test-Angebot
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
Reply-To: stendd@tiscali.de
Date: Fri, 14 Feb 2003 01:07:15 +0100
Mime-Version: 1.0
Content-Type: multipart/related;
	boundary="----=_NextPart_000_01AC_01C2D37F.9153A2C0";
	type="multipart/alternative"


This is a multi-part message in MIME format.

------=_NextPart_000_01AC_01C2D37F.9153A2C0
Content-Type: multipart/alternative;
	boundary="----=_NextPart_001_01AD_01C2D37F.9153A2C0"


------=_NextPart_001_01AD_01C2D37F.9153A2C0
Content-Type: text/plain;
	charset="utf-8"
Content-Transfer-Encoding: quoted-printable



Sehr geehrte Damen und Herren,

ab sofort k=C3=B6nnen Sie eventuelle Versandauftr=C3=A4ge f=C3=BCr =
Werbemails=20

nocheinmal verifizieren und konkretisieren.

Test-Angebot

Desweiteren teilen wir mit, dass es uns gelungen ist, einen namhaften =
belorussischen Provider f=C3=BCr unser System zu gewinnen,

durch den es uns nunmehr m=C3=B6glich ist, in noch k=C3=BCrzerer Zeit =
noch mehr Emails zu versenden. In diesem Zusammenhang sei weiterhin

bemerkt, dass sich unser Adresspotential auf nunmehr ca. 350.000.000 =
bel=C3=A4uft.



MfG

Steven Langer
-Bulkservice/ T&S-

http://www.thomas-stevens.biz/email/index.htm

P.S.: Sollten Sie in Zukunft nicht mehr von uns kontaktiert werden =
wollen, so teilen Sie uns dies bitte kurz mit.

info@thomas-stevens.biz







------=_NextPart_001_01AD_01C2D37F.9153A2C0
Content-Type: text/html;
	charset="utf-8"
Content-Transfer-Encoding: quoted-printable

=EF=BB=BF<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML><HEAD>
<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dutf-8">
<META content=3D"MSHTML 6.00.2600.0" name=3DGENERATOR>
<STYLE>BODY {
	MARGIN-TOP: 5px; FONT-SIZE: 10pt; MARGIN-LEFT: 30px; COLOR: #333399; =
FONT-FAMILY: Trebuchet MS, Verdana
}
IMG {
	MARGIN-TOP: 5px; MARGIN-LEFT: -30px
}
</STYLE>
</HEAD>
<BODY background=3Dcid:01ab01c2d377$2f8c2d80$15eefea9@ultraknall>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000><IMG=20
src=3D"http://www.thomas-stevens.biz/email/Thomaslog.gif?1289BB23" =
border=3D0=20
editor=3D"Webstyle3"></FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>Sehr geehrte Damen =
und=20
Herren,</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>ab sofort =
k=C3=B6nnen Sie eventuelle=20
Versandauftr=C3=A4ge f=C3=BCr Werbemails </FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>nocheinmal =
verifizieren und=20
konkretisieren.</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV align=3Dcenter><SPAN style=3D"TEXT-DECORATION: overline"><FONT =
size=3D5><B><I><A=20
href=3D"http://www.thomas-stevens.biz/email/testbulk.htm">Test-Angebot</A=
></I></B></FONT></SPAN></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>Desweiteren teilen =
wir mit, dass=20
es uns gelungen ist, einen namhaften belorussischen Provider f=C3=BCr =
unser System zu=20
gewinnen,</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>durch den es uns =
nunmehr m=C3=B6glich=20
ist, in noch k=C3=BCrzerer Zeit noch mehr Emails zu versenden. In diesem =
Zusammenhang=20
sei weiterhin</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>bemerkt, dass sich =
unser=20
Adresspotential auf nunmehr ca. 350.000.000 =
bel=C3=A4uft.</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial =
color=3D#000000>MfG</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>Steven=20
Langer</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>-Bulkservice/=20
T&amp;S-</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000080></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000080><A=20
href=3D"http://www.thomas-stevens.biz/email/index.htm">http://www.thomas-=
stevens.biz/email/index.htm</A></FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000>P.S.: Sollten Sie in =
Zukunft=20
nicht mehr von uns kontaktiert werden wollen, so teilen Sie uns dies =
bitte kurz=20
mit.</FONT></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial color=3D#000000><A=20
href=3D"mailto:info@thomas-stevens.biz">info@thomas-stevens.biz</A></FONT=
></EM></STRONG></DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV>
<DIV><STRONG><EM><FONT face=3DArial=20
color=3D#000000></FONT></EM></STRONG>&nbsp;</DIV></BODY></HTML>

------=_NextPart_001_01AD_01C2D37F.9153A2C0--

------=_NextPart_000_01AC_01C2D37F.9153A2C0
Content-Type: application/octet-stream;
	name="Thomaslog.gif?1289BB23"
Content-Transfer-Encoding: base64
Content-Location: http://www.thomas-stevens.biz/email/Thomaslog.gif?1289BB23

R0lGODdhuABjALMAAP///9De46zS5H+Af77Y4rXW5MXb47O8v77Hy+nx9N3n6/f395aYmKWpqYqM
i1xoSywAAAAAuABjAAAE/xDISau9OK8FUgoGgYwkIhpBoGwAl71wLM90bd942wUFcvzAoBDoIygS
upxyyWw6ZZxFgnDwDX0IAaJHIIS6otHPtHqaz+i0ZRMQDMddlEExT6VQ9nsgjAhsXGqBgoMXHAkF
QlYFXnd0eioodI5ydgYhJgkshJucZwpUV5aSeY14eJWjonldSJ2urzZTY0QFlaSOkJKnILwpuL2W
Aa2wxMUSGwZWQQSoeru9ILpzdXnTCtHRZcbbnQluQrWPdrq85I+/4rbjHtztgQsBoc3QzXLXvqTz
pvd4R5nuAJ0swAJEQKRd06qlM5Wv4a+DvDwACkiRhpQD38YEE/Us4TVqDf/pIax2D5uKfxVTwrg4
60CBa6MgjYMYsqbNhgc9DFPJk4ICZT/kbKTEayiwo0eJngoGrCQInT2jAogXpI8KBVizat3KtatX
rVe3PjpoAKrUlArAoSigs63bt3Djyn3r1Ig9YVLOUkyLccy4IxCXykyn7qbhXEsl6nWnICPGpgkm
lQSJ004XEyREXDbBBbPmZFZJ1VG82NjAqv1QeBC90CaWLCMQjdBSgnbsACOWJizLrnQxoKGjzflQ
p7jTkPcOGEFXvFLxyHv6GC9l1rcrqlUOMMTjIRjzmpdyl/Vn6RSuScLo5M5nDe9O64MS9P3BTPjH
Ix8Jk+pSNVyvyN9R94H/CEWNFU0mE8GnxmkFFSUUVglAhE4lVmzhBWD4eEfHSBHRcQIuCeVRnYJp
wFOVffYMd98zlmkkykvQ9XKfTAw9dc0ISE1T3hF5kViiYxsJJwqGM1UDBDMMdecLiwrpAR0VD9bi
3Rxs9TZIgj0BVYCOzigAY34i+SAACFHiR4lQ1Zy5x5PSlcIlHlK85yMT8hHx4JlzAHbPQxoJ6SWE
1lCDHpkFQrfenTrKIZGcc+aQxZFMrbXhnx+IRNWW5Rnw0qb4NdkQkikQwCaiQ02aCaONxoJamVKq
Rhw6RRxEjiVKzpRiL9Kpph4CQ1kTjlA6YZlqDYgA8VKkPEwK42ChBpVp/6bHmgniZJMhOR4PW0xa
3rFn8ojqsDEskJ0b9tRSi5eZ1kqhcn5yRGulNNW0pY248frsn70ORxq4NRiwzLNUvihJjHb4gCnA
977KHjanaDdcdAI/myy3i/JrgzImUIluouV54F8Kse6IqZdk6hkYs7jEUSkVZGa6IcLernHMH5q0
EMXNLgibUp0/CLAxx9B22uLIlnCrsYqiHbcfr6ttsWPQnHJ6as40V2311VhHkRIozr4sMLeA5hEy
wtAqSZSBuyiH1R4Ou0x2x1NnLffcV1M0n71vb/tlL84W/efBO74a4nTQbGEo3tB+/fcKEmW9wgIr
YAX55JHT/Yc74hqbt//b6saD+Obd/TLhkqEigNUlXigOuMsIZvLV619NnjU3fFXxbNQA791s6jAD
DF2IY01LxeGJI7x6XrB/FVbsj9f9Gy25v5jwKVTwHn26ERbpyOggHLA2lJsH3HGcSvdhPm4/rZ28
VrJXXUxGBt2+4erLtmj9trmbyZp+3Z/uNNmr21bjzFeCEtSrgCSoV/pM55UNNE9ngwgCpgAXQLid
YgRxeNvBTCa61DCLDGyj3/XgJgUEFnAMrzEhjky3PPY9EIJq4NnnALgtobGteAAU2j5qJBrtXOME
4ZPfPyqUnSK+4QoI/MtWrHYdCSaugkVTl7+8wLuDbWmCZmOWCgpkigP/bJEKEyweBUUhEQM04AAN
SKMaz7jGH5zxiFUwYAslRzNXJMNFULyipjTVKTwoJ3VQ9JvCFjIjkPHqRjOsoBUZB481OvKRj0Qj
EkmQviXWkRMV+t8ew5g7Kf7RC3rU4x4fNq2zPQMRpwPjKPEnyqLRig0MiKUsZynLBtQSkpLMjhy5
4r5NZISTxgtaZKhhoSDWbw/UagQpfvCktgHzdoKUggJoSc1qzhKSb4zj+a7Svk4oYxGAdGUBrLjH
I4zFBBnk5ATNBLz93aEKqeTMJl05z1VKAXIOYIAD9slPfuozn/nUJzUdWZURwIR9l9sEQdRJz4Yu
qznKeWYYYQSS5jDJ/2BsEuEqV7mlUynAAQMIKUhFGlKS9jOgtYylGomQwD5k5ZKE+OYXQMnReVaJ
Eh5CJyBbuSUiddAc3VPOMMEnyok2tCwbSEBJl8rUpp4UpQRFoVUQWrMIag6YodSbDe+Aznpqap3D
RApOqseWG43TigzN6j0V0NS2tvWk12yjNl1Kx6oK4ps0talRhxOoO4AznBMNnUw2VBh/RXSYPsCf
TUcJ1lO59bFLBWk/VcqAlWoTfS+1ayC+gU6jkvOKx1yKTkNJTnhBQ2mGJcA4MzpOcdYzqwhiK2Rn
OwDJorSyll2hVhCESWOBIavAJWM5dtGFRdCztVXSxaCqgYXWDlU5i/8N7le9JVva0tafKk0jCn2R
WRiagQpFKG509WpOMJkiDsidIEUPg4VNQqcHwSXtV/l4zwA09QHWfStUtTvXsCQ0pr79bXTTGzqP
nJemZ72iB7inh2IluKwhcAlPXzvfxtk3v9fdZ3bfmMDuevcJIvjBIkY83wSzsiz8I9NZF1upwhSs
CoA9nGq/+mAah3JqCMDwbG17yzOWILOuqJ0Afjtj0j5YSYR1xpJW3FpzhiTCVagxhMGY1/iC9p4L
aICOM5zP3BpUcrzlBM/Gqdoig9a1utvidKxBBxO3eGljOPNZ3ytPKafXvUkd6ZYhq2Hc+vjLzXsF
LUZsZtCSeZzm5CH/cvwBljRVaMRMXq16JFzkEpcY0Y3bc0jx69Y+c5iSgX6FFQRAaEgbusyYNgyL
HsaIyxBBtQ829NrgC2sT23rOa9U0nzXs5WtgGRag2MKhCw3OQzvZnYdRbc8w8mBSxxrCRTCuoW0M
WgTBQ9d83nCH6wqL2h3a1N+G9LEPQ48UVIG7WcmTVtSdnj2QutZ3lu+pAKBlbOs3uyjMCkpgkTlm
ozrcqFbtsZkkVlswAz+RSbjC/ZHwThkM3M8+KyMXYF1O55fXn+ZmmGHx6AfXGt4JXtjZ1KEbo6SY
FPCNeMQbV11NW7ykntYuoDVrxzE42+MqHzER4qhLnhORILokCMYw/9YSCefczfckgL3vzd+phroY
/T66yrVAddgIgOpXt/qjaMN1MWHE6lgvANapLvWzCqBxC9Dz0nmMW21ymxtYuHnZ5073nMu97s8+
e66XHtmAypyu/90GVYSN94jL/e6FLzziMf2HHPMd5vjeNs2J0e/Fj5PUiL+55S9v92Zz3uyGL7ve
Hft4kWr7y9YOCCgWf/XWt37umXe92F2/ecUn2GdYvvDjMb5dHn34FZnLgtjNLoA3NkAADrj68G8P
+lhj/viuZwDtmU99zFPf82dvndrtzfs4Qmjy3CiW8J3tBgc84AEOaMADaC/76c/e9Q9gwPrdgP4H
qJ/97H8//pt/ef/fX3v3p8dCqZcSmaN8n1cA+XR15zd/5zcAArCAA4BfD3h+AiB/6xd/8xdSrXd+
sUSBDDiBDriACmh/BmiAbHFPCcAAfBdz+fZ0KhFs1jd7+6SAyKeC0neBAqCB86d+BzB/OVh/N4h+
D3h8DDgAaVRbRNiDFShSr3d4aKd72BZzf/Z2UdEzw2d9M/iAFWh+GGF/66dPWohf9qd+OHh+GKGA
8kd/IRWED1hbybd+WjaB0BeDBYBlCbB9mnZLcXQVGxcVfGF9mDcA0qeF+hRSSrh+CfgAh4hGOZiG
6mdLXXh/Q7iBX7h+XVh886eC5Dd8cXMAa9dlf8dN4JcSo3Z5pJb/RqTmgKgYgceXfKiYfBHogBGY
fD0Iiz1YWwpIhEZYfMeHgBKYfBWofg7YhD5jbbKFh9blT3/HQAO4GAVYgrPHeYCofNRIjJhXjdNH
jdF4haYIiMuHeRO3ACoYi1uGcX/mUn1YGn9IjNF4jfj3jvAYj/lngtf4fsOHZVmmadilRpI3ilKx
evUYkPI4kARZkO7IidYGhRjGgpflf40iJthokBI5kftXjSeIgnumjE3HXelIIqehfxQZkiJJe4uy
AcjYabW1YT6GGyfhj9ZRJyA5kjJpkFWSF+J4cW64YXtoOt3ELywRkzMZlPAYNwAwjjumkU2HIxNn
MTPDF0AplFBJ/2pol4+7hpTnqG+B55MO9BMuEZVeqXxxQ5Wdhl1+1l/f93sKgjPXQB9fCZVI9Qcp
OJZ9VpZShZVoOSd/sDaz0ZYzGZY36VRk6WVKGY5MuQZJlRW1wZcUWZN/oJBuOJdyRUkn0ZGFWQFr
9RP18pSK+Y5+6Ym19ZgA5WdJyULecpdaKU1YUUCauZlX5w9VM44jpWHpF5mDuZSVOQN5eQ8lQACs
iX+8UTWOZ1v7lZS+gHa3aQNweTglsJpR+ZY081GgqZIZp3EueZwa4EAD8RNYcCOKCSP4CDlaNlmi
uV18CFPWqQRJVSkkAE/XEJUwknocME2BuVI4kgLGeZ5n8JyI5GQDDeAHH8Cc79hRU9l4AtVjf8aR
1Ymf6AmX+4lGCGBtxFE0JvYuJVlHH9AAfjeaLxVmpqmgS8CghiRzj2MzKBgnJsoC0oQAPeZ2ENKM
HroN6ambYlCfLZqchpIIkumaCfqiEhABADs=

------=_NextPart_000_01AC_01C2D37F.9153A2C0
Content-Type: application/octet-stream;
	name="=?utf-8?Q?Hintergrund_f=C3=BCr_Natur.jpg?="
Content-Transfer-Encoding: base64
Content-ID: <01ab01c2d377$2f8c2d80$15eefea9@ultraknall>

/9j/4AAQSkZJRgABAgEAYABgAAD/7QY8UGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAAYAAAAAEA
AQBgAAAAAQABOEJJTQPzAAAAAAAIAAAAAAAAAAA4QklNBAoAAAAAAAEAADhCSU0nEAAAAAAACgAB
AAAAAAAAAAI4QklNA/UAAAAAAEgAL2ZmAAEAbGZmAAYAAAAAAAEAL2ZmAAEAoZmaAAYAAAAAAAEA
MgAAAAEAWgAAAAYAAAAAAAEANQAAAAEALQAAAAYAAAAAAAE4QklNA/gAAAAAAHAAAP//////////
//////////////////8D6AAAAAD/////////////////////////////A+gAAAAA////////////
/////////////////wPoAAAAAP////////////////////////////8D6AAAOEJJTQQIAAAAAAAQ
AAAAAQAAAkAAAAJAAAAAADhCSU0ECQAAAAAEywAAAAEAAACAAAAAYAAAAYAAAJAAAAAErwAYAAH/
2P/gABBKRklGAAECAQBIAEgAAP/+ACdGaWxlIHdyaXR0ZW4gYnkgQWRvYmUgUGhvdG9zaG9wqCA0
LjAA/+4ADkFkb2JlAGSAAAAAAf/bAIQADAgICAkIDAkJDBELCgsRFQ8MDA8VGBMTFRMTGBEMDAwM
DAwRDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAENCwsNDg0QDg4QFA4ODhQUDg4ODhQRDAwM
DAwREQwMDAwMDBEMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM/8AAEQgAYACAAwEiAAIRAQMR
Af/dAAQACP/EAT8AAAEFAQEBAQEBAAAAAAAAAAMAAQIEBQYHCAkKCwEAAQUBAQEBAQEAAAAAAAAA
AQACAwQFBgcICQoLEAABBAEDAgQCBQcGCAUDDDMBAAIRAwQhEjEFQVFhEyJxgTIGFJGhsUIjJBVS
wWIzNHKC0UMHJZJT8OHxY3M1FqKygyZEk1RkRcKjdDYX0lXiZfKzhMPTdePzRieUpIW0lcTU5PSl
tcXV5fVWZnaGlqa2xtbm9jdHV2d3h5ent8fX5/cRAAICAQIEBAMEBQYHBwYFNQEAAhEDITESBEFR
YXEiEwUygZEUobFCI8FS0fAzJGLhcoKSQ1MVY3M08SUGFqKygwcmNcLSRJNUoxdkRVU2dGXi8rOE
w9N14/NGlKSFtJXE1OT0pbXF1eX1VmZ2hpamtsbW5vYnN0dXZ3eHl6e3x//aAAwDAQACEQMRAD8A
9LDTMd04rKK3lThG1ggEQrUw2FIkDlRNjfiha6gF0kg4FOkpiUx1TkhMSEUMDWPgo+l5qcpSkjRT
WhuimIQ5SlJVpZCYuChKSVJtdxJQy1ymkkgi3//Q9RbyFMmBKYDVJ/0SkgbI3OLgZ+5RT9lEnukg
lcOgyp7pEhBJTtcI1KKLZkpKJeAobjJg6FJFpEkOToe4Sk8+PKSrSJ0MSNEi5wiSkpInUWuMweOJ
U2w4SEkrJKUJQkqn/9H1SEjqIPCSg7yMFJCN2hhQJ0T2l0a/IhAc5x0OiKwlkXjsma4nTkKHPCky
ZSWs04SHwUg0FJKwHgpAJwD8U8SkuAWjxUXjgKeoTP1A7eSCqRifgiMsgweCdVDjX705GqSmyIcJ
HBTwgUvgweOwVhJcH//S9UPCC46yjO4KrkyiFslnQeUNwjQ6qadFjQFnhonY1wdCnsIGpTgcd0FU
oAqQBTgJSgvpUlKQmJKb4pKtnu+aZ4BHwUdFKDGhhJVsPxCQ4+CbX4ppI18EFJK/pI9ZPHggVlsn
XngI1fJRXB//0/U7DDVXHKsPEhV+CiFk91OEFIIgAcIKXpoo4VgFL0+/CdohSQXAIUxRHubED8EF
8/moIKimUHbhzKbc4d0lqQFSBKg1wPx7hTCSQs9p5HzUIJRgkGNnjVJcxqrDwQR8PgrDWhogJNaA
0acKSSX/1PUHvgIRdKcukFQTgxSKRhRQZQGorUCuiWai5v7v3KSSS5CmPwRXNB17oTgRyEFpYOAJ
118lAt00MnwRCmKKGLGO3jjzKIAYB8eEqmncTMfBGCSQGAYdR4aojGRqU4ToLlEpiUxKG5yKCX//
2QA4QklNBAYAAAAAAAcABAEBAAEBAP/+ACdGaWxlIHdyaXR0ZW4gYnkgQWRvYmUgUGhvdG9zaG9w
qCA0LjAA/+4AIUFkb2JlAGQAAAAAAQMAEAMCAwYAAAAAAAAAAAAAAAD/2wCEAAYEBAQFBAYFBQYJ
BgUGCQsIBgYICwwKCgsKCgwQDAwMDAwMEAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwBBwcH
DQwNGBAQGBQODg4UFA4ODg4UEQwMDAwMEREMDAwMDAwRDAwMDAwMDAwMDAwMDAwMDAwMDAwMDAwM
DAwMDP/CABEIAJYAyAMBEQACEQEDEQH/xACOAAADAQEBAAAAAAAAAAAAAAABAgMABAgBAQEBAQEA
AAAAAAAAAAAAAAABAgMEEAACAgEEAgICAgMAAAAAAAAAARECAxAgIRIwMUATUDJBImAjBBEAAQMD
AwQCAQUBAAAAAAAAAQARIRAxQSBRYTCBkQJxEkChscEiQtESAQAAAAAAAAAAAAAAAAAAAID/2gAM
AwEBAhEDEQAAAPTXk0aw+pTR9xqIAAgSzicihL2tY+hrCwmLPKeFNq7EOowawDAhYEuBACY1ENCB
GACG0puNWFEkMr1gQsCBKARjGjUQBCasYr0hqcQkBisri5ogQDGMYJjGohMatVdzVzZgBCxotNaB
ACAFYIQ1ghNWMNqU0U5pBCwIXNpK4hNBGogDWFK1a1qJjJTQ0pzZiQM2eSwQmMGsNRNWs54dKW9e
q5jU1YWI5QyTKMJmGrLqNNTGsNGsQkFEc7daeiYERyllzYShJANXRa1NWprGt1mNUMzGAVru1omp
co86sc2ZGEgIa6bW0Nj0awawKhmY1Y0dm7e3E8I8qsLEhEAidG61ho0DRqI1TkmCmMdVtrXqPOx5
BACRNYafUbTAgQpg1qUkhBVi9t7Xrn42eCxghoaCw6hoQIWNKA2GjUEUUpV7ezVY5eFTNaxMiPo+
x1ERRYXISgBhrDopFAX1e/VY0cvGzxbdIIENo+pTRScQzIZCFGKWtYdGoGOvVcwIli8/JTau41AJ
qQjmLCRDJYBSr6Gm0aqF7cAnix5kzTZbopqGiIQkELAhJVSUNXRa2o9NV7cCBEedlirDFOkruNox
hCGYkCFBKBq67TqPRrAhMlzY8yyiGqm5TZ9xjAEiGZOBKDFavqvY1atCQmLPL//aAAgBAgABBQAg
gVRIXjS2tjYxnUVSCCCCPFJJJI3sjRbJJ8E+RaTskkkn4C3ST8JD2ST8CNr0nWSfBHjZOk+GNkb2
MbHtWkEEeFbGNj+Itbb4+AtLvfAvKtFpcW2CN86LatWWENaoSI8y2WWiHUgSFsZJO+CBbLaLSCNZ
0ZGxeGRskTF4HpBHhkkeiExbX4ELY2To9EIW571sYxn/2gAIAQMAAQUA/Lz/AIzOyfyE/KX45+Bf
JX45fBn8pHyV8leH/9oACAEBAAEFAOSBVYqFalULYx+rY0y2Kx9dxYbMrTqkhaSh2LWLNjHjU1xq
FjQqI6IhEDWrWzjTsdjudx21hDrXSi40+yo86K5pckkobRKG1pJJPip+pfKk8jbspRJiyMdh2Gyd
y2LZBX9buK+3bljJ5raat6SplCsm3dJ2vWr7VhOsKyekbYF6y/oN82fMppsx2Sq7cfbUtZu02G2x
t2EpF7hxVyVyW7dl2gggggXq6mr4H6bJL3itMqa7WQ+SHECbIhxDiT+Oa2V7J1yKa2rZwQQQNpKU
ZqjZayVb3Y7NlVVuEcoTQkQdWhQJDTiynR+8Wa+N4r96QRoy9ObXypXbq73dlEqGirt2TFB1FUTa
FDTqcolMaizUOJr/ABgs65K2VlpdwO3LZejQ8VWOtqtMo1KgSQuBEECtoyzsmnKrwyst47dXM6ZR
+2y1VYvVKzrI8VWfX/sVRVOqOqOTtY7iskTJlSmJOzQ2UT7GFvoZXy2SSJF63tZ1shptKBEjbHZn
9mQQQZO6Xax2TVbQ8Ks7sw/oZnyh+9Eh4m7dWhLV7UWTdWmhtDhmP7bPHkva2OrrV+sjl193rxpV
CR9aZkpWr4HA3y2Ns5E2cnJkx9jk6s/5Kt2pjrXRmSvK915VsYqNCRVCOlZzKbZGq1eSzbvc+26K
5ZIJFo8VWLDRGPHRU0bMik9OlhMhHU9H2Um+VjaZasn10Mi/tAzFkbEhCQjFRWZJI7F8nLtJVlWJ
6IyU7JpobY5JP61Hiq30s74sWT7lSzuqtuuNu1cTZWta6NjsOxf9hFGLZeisWq6nJEjSGkODA79k
lNKpCSQhjY2OxyP2IqIWy8dbKmj04P8AniUL1raRyW7H/9oACAECAgY/AG3/AP/aAAgBAwIGPwBt
/wD/2gAIAQEBBj8A6myhWoAOjFvyLafZ4+t1AUwo/DFGElOc3U0Y+SfwwiafIU3FIQLvzVsrlEZC
AOcoPlO8J3UY6ARh6fon81n27J1KJGLeEPZ3K+2U5ui/hciafUmclAmwjsh65M6yAtmoFFCGk5Ra
n7qFNt06dfsmynGVKfIKYF863HwaOYZEdlvwntzTdSuKR4TWKZRfC23C5CBRID/KBNzpJ9SyYh1/
XwuAuQnGUG7KRWLqax4KYwVxlPR0CMfynGpzI3UQuHZM10AZ41QmPmnKLymTYNkQgBlcG+qUwEMt
2WyAxzS2mQoMUcBlyp7FP5TDe9J1kgfCYmRdWnFLK1bst6RCgxtS3ZN/kpxAFz8L5TtfoEjKY9Jh
+tOVEFA+rgi7f8Te3q3NkxvocaXKYKehdPlNQvDsx8p876WUaXIlDAUXUYV7K78pjd4pFGyuVuvU
NselZwmdf180bFG5T+VOF9T2NI81L2GltfOiygJ3RDMB/pACwMlfUSUwuvr57L24UZv1XacJjpuo
9fs3akJ9/wAAvZFjGBOk79H/2Q==

------=_NextPart_000_01AC_01C2D37F.9153A2C0--

From incomingforward@cs.com Wed Feb 19 01:15:05 2003
Return-Path: <incomingforward@cs.com>
Received: from smtp.wp.pl (smtp.wp.pl [212.77.101.161])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id h1J6F3aN023627
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 19 Feb 2003 01:15:04 -0500 (EST)
Message-Id: <200302190615.h1J6F3aN023627@netlib2.cs.utk.edu>
Received: (WP-SMTPD 994 invoked from network); 19 Feb 2003 06:14:56 -0000
Received: from unknown (HELO smtp0000.mail.yahoo.com) (abc@[62.110.31.24])
          (envelope-sender <incomingforward@cs.com>)
          by smtp.wp.pl (wp-smtpd) with SMTP
          for <blast-lite-archive@netlib2.cs.utk.edu>; 19 Feb 2003 06:14:55 -0000
Date: Wed, 19 Feb 2003 06:14:57 GMT
From: incomingforward@cs.com
X-Priority: 3
To: blast-lite-archive@netlib2.cs.utk.edu
Subject: blast-lite-archive, LIVE FROM WALL STREET: VICC Test Results Are In..........
Mime-Version: 1.0
Content-Type: text/html; charset=us-ascii
Content-Transfer-Encoding: 7bit
X-AntiVirus: skaner antywirusowy poczty Wirtualnej Polski S. A.
X-WP-ChangeAV: 0

blast-lite-archive@netlib2.cs.utk.edu
<p>If you bought into our last recommendation (CIMG) early enough you had an excellent opportunity to make substantial gains (from .90 to 1.65 in just the first day).  Now is your chance to do the same with our newest pick: VICC.  To find out more go to <a href="http://12.148.59.67">Live From the Street</a>.</p>
<p align="center"><img border="0" src="http://12.148.59.67/bm01.gif"></p>
<p>If you no longer want to receive information from us just go to 
<a href="mailto:tallrhe@cs.com">tallrhe@cs.com</a>.<p>
&nbsp;

From AOBO@edirectoffers.com Mon Feb 24 14:18:12 2003
Return-Path: <AOBO@edirectoffers.com>
Received: from sccrmhc03.attbi.com (sccrmhc03.attbi.com [204.127.202.63])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id h1OJIBaN027079;
	Mon, 24 Feb 2003 14:18:12 -0500 (EST)
Message-Id: <200302241918.h1OJIBaN027079@netlib2.cs.utk.edu>
Received: from sccrmhc03.attbi.com (localhost[127.0.0.1])
          by sccrmhc03.attbi.com (sccrmhc03) with ESMTP
          id <2003022419164000300jnh4ve>; Mon, 24 Feb 2003 19:16:53 +0000
X-Comment: AT&T Maillennium special handling code - x
Received: from sccrmhc02.attbi.com (sccrmhc02-qfe1.ops.asp.att.net[192.168.202.82])
          by sccrmhc03.attbi.com (sccrmhc03) with ESMTP
          id <20030224163908002004pv36e>; Mon, 24 Feb 2003 16:39:21 +0000
X-Comment: AT&T Maillennium special handling code - x
Received: from newg (c-54-28-176-66.se.biz.attbi.com[66.176.28.54])
          by sccrmhc02.attbi.com (sccrmhc02) with SMTP
          id <20030224163908002004pv36e>; Mon, 24 Feb 2003 16:39:19 +0000
X-Comment: AT&T Maillennium special handling code - x
From: "" <AOBO@edirectoffers.com>
To: "" <bizops7@yahoo.com>, "" <bizpromo@directbizpromo.com>,
   "" <bizsitebiz-on@mail-list.com>, "" <bizsuccess-on@bizsuccess.com>,
   "" <bizsuccess@myreply.com>, "" <bizzibee@bigpond.com>, "" <bj134@bfn.org>,
   "" <bj4now@hotmail.com>, "" <bjacks8210@aol.com>,
   "" <bjacobs@ucssun1.sdsu.edu>, "" <bjajnjpj@aol.com>, "" <bjb228@aol.com>,
   "" <bjb@tappedin.org>, "" <bjberti@hotmail.com>,
   "" <bjmcclure@acf.dhhs.gov>, "" <bjodmjhnhcdihaaa@angelfire.com>,
   "" <bjoern.schneider@rhein-neckar.netsurf.de>, "" <bjohn318@aol.com>,
   "" <bjokr@itn.liu.se>, "" <bjones@ucsd.edu>, "" <bjones@weber.ucsd.edu>,
   "" <bjorgk@postur.is>, "" <bjorn@debian.org>, "" <bjr@cellar.org>,
   "" <bjueneman@listserv.temple.edu>, "" <bjueneman@novell.com>,
   "" <bjunited@bjunited.com.cn>, "" <bjzolp@students.wisc.edu>,
   "" <bk361kb@aol.com>, "" <bk@bookmarkpublishing.com>,
   "" <bkblock@netaxis.com>, "" <bkchell@juno.com>, "" <bkchest@pipeline.com>,
   "" <bkelley1@nycap.rr.com>, "" <bkemp@esn.net>, "" <bkerea66@yahoo.com>,
   "" <bkexpress@aw.com>, "" <bkgallry@crl.com>,
   "" <bkinsley@thevirtualpool.com>, "" <bkkabea@juno.com>,
   "" <bklabel@aol.com>, "" <bkmanfict@yahoo.com>, "" <bkmine@ns.net>,
   "" <bkorb@pacbell.net>, "" <bkorders@taylorandfrancis.com>,
   "" <bkpub@bkpub.com>, "" <bkriter@footnet.com>,
   "" <bks@research.bell-labs.com>, "" <bksource@msn.com>,
   "" <bkunert@ramfans.com>, "" <bkunert@usgs.gov>, "" <bkworld@aol.com>,
   "" <bla@engny.mhs.compuserve.com>, "" <blaash@aol.com>, "" <black@via.at>,
   "" <blackat@direct.ca>, "" <blackbeatproduct@aol.com>,
   "" <blackbirdnz@hotmail.com>, "" <blackbob@wwa.com>, "" <blackbox@bbox.com>,
   "" <blackdmn20@aol.com>, "" <blackfocus@mindspring.com>,
   "" <blackhawk117@home.com>, "" <blackhole@trax.fsworld.co.uk>,
   "" <blackhorse@blackhorse.pl>, "" <blackie@imada.ou.dk>,
   "" <blackje@crd.ge.com>, "" <blacklist@womenrussia.com>,
   "" <blacknus@igs.net>, "" <blackoak2@infoconex.com>,
   "" <blackoakbks@earthlink.net>, "" <blackpoplar9@aol.com>,
   "" <blackqueen2000@reggaemail.com>, "" <blackstn@aol.com>,
   "" <blackwells.extra@blackwell.co.uk>, "" <blair@blairrobertson.com>,
   "" <blairpub@blairpub.com>, "" <blake@blakesbooks.com>,
   "" <blake@calinet.com>, "" <blake@digital-evidence.com>,
   "" <blakeman@europa.com>, "" <blakrose@web.net>,
   "" <blancacuevas55@hotmail.com>, "" <bland@apple.com>,
   "" <blandis@epix.net>, "" <blapointe@dsisd.k12.mi.us>,
   "" <blast-funct-archive@netlib2.cs.utk.edu>, "" <blast-funct@cs.utk.edu>,
   "" <blast-lb-archive@netlib2.cs.utk.edu>,
   "" <blast-lite-archive@netlib2.cs.utk.edu>,
   "" <blast-parallel-archive@netlib2.cs.utk.edu>,
   "" <blast-sparse-archive@netlib2.cs.utk.edu>, "" <blasting@compsurf.com>,
   "" <blawbull@cs.com>, "" <blawso4@us.ibm.com>, "" <blaze@nether.net>,
   "" <blc@bsdwins.com>, "" <blcr@web.net>, "" <bldjj@yahoo.com>,
   "" <bleab@msn.com>
Cc: 
Date: Mon, 24 Feb 03 11:37:03 -0500
Subject: Press From AOBO
X-Mailer: ExclamationSoft Corporation Mail Version 2.0
X-MSMail-Priority: NORMAL
MIME-Version: 1.0
Content-Type: text/html;
	boundary="----=_ExClAmAtIoNsOfT_MaIl_PaRt_BoUnDaRy"

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<META NAME="Generator" CONTENT="NetObjects Fusion 5.0 for Windows">
<TITLE>AOBO</TITLE>
<script>
function invitepopup(url) {window.open(url,'artist','width='+540+',height='+500+',scrollbars=yes,status=no');
}
</script>
<LINK REL=STYLESHEET TYPE="text/css" HREF="http://www.edirectoffers.com/aobo/./style.css">
<LINK REL=STYLESHEET TYPE="text/css" HREF="http://www.edirectoffers.com/aobo/./site.css">
<STYLE>
</STYLE>
</HEAD>
<BODY STYLE="text-align: center; background-color: rgb(102,102,153);" TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
    <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 NOF=LY>
        <TR VALIGN=TOP ALIGN=LEFT>
            <TD WIDTH=627>
                <TABLE ID="Table1" BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH=627>
                    <COLGROUP>
                    <COL WIDTH=16>
                    <COL WIDTH=230>
                    <COL WIDTH=128>
                    <COL WIDTH=132>
                    <COL WIDTH=121>
                    </COLGROUP>
                    <TR>
                        <TD COLSPAN=5 STYLE="background-color: rgb(255,255,255); border: 1pt solid rgb(0,0,0); padding: 4px;">
                            <P STYLE="text-align: right;"><B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small;">&nbsp;<A HREF="http://www.edirectoffers.com/aobo/./Bio/bio.html">Home Page</A> - </SPAN></B><A HREF="http://www.edirectoffers.com/aobo/./Bio/bio.html"><B><SPAN
                                 STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small;">Company Info</SPAN></B></A><B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; 
                                font-size: xx-small;">&nbsp; </SPAN></B></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD COLSPAN=5 STYLE="border: 1pt solid rgb(0,0,0);">
                            <P><IMG ID="Picture3" HEIGHT=353 WIDTH=625 SRC="http://www.edirectoffers.com/aobo/./aobofront23456.jpg" VSPACE=0 HSPACE=0 ALIGN="TOP" BORDER=0 USEMAP="#map0"><MAP NAME="map0"><AREA SHAPE=RECT ALT="" COORDS="125,5,183,19" HREF="http://www.edirectoffers.com/aobo/./Bio/bio.html"><AREA
                                 SHAPE=RECT ALT="" COORDS="182,3,296,20" HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t"><AREA SHAPE=RECT ALT="" COORDS="295,1,406,20" HREF="http://biz.yahoo.com/n/a/aobo.ob.html"><AREA SHAPE=RECT ALT=""
                                 COORDS="406,6,519,19" HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=v3"><AREA SHAPE=RECT ALT="" COORDS="310,67,584,292" HREF="http://biz.yahoo.com/n/a/aobo.ob.html"><AREA SHAPE=RECT ALT="" COORDS="16,28,307,341"
                                 HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t"></MAP></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD WIDTH=16 STYLE="background-color: rgb(255,255,255); border-left: 1pt solid rgb(102,102,153); border-bottom: 1pt solid rgb(102,102,153);">
                            <P><SPAN STYLE="color: rgb(255,255,255);">.</SPAN></P>
                        </TD>
                        <TD COLSPAN=4 STYLE="background-color: rgb(255,255,255); border: 1pt solid rgb(102,102,153); padding: 7px;">
                            <P><B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><A HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t">AOBO Completes Purchase of Soybean Protein Peptide Project</A>
                                <BR></SPAN></B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small; color: rgb(255,0,0);">January 28, 2003 12:06:00 PM ET</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><B>HONG KONG, Jan. 28 /PRNewswire-FirstCall/ -- American Oriental Bioengineering Inc. (OTC Bulletin Board: <A
                                 HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t">AOBO</A>)</B>
                                 announced that its board of directors has approved the completion of the Soybean Protein Peptide project purchase, worth an estimated $40 million, effective immediately.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">On October 11, 2002, AOBO filed an Information Statement Pursuant to Section 14(c) of the Securities Exchange Act of 
                                1934, announcing that a total of 20,284,810 shares of Common Stock and 1,000,000 shares of Class A Preferred Stock will be issued by AOBO in consideration for 100% ownership interest in a soybean protein peptide 
                                biochemical engineering project (the &quot;Project&quot;) as described in the Purchase Agreement dated as of August 17, 2002 signed by Shujun Liu and AOBO. The value of the Common Stock to be issued is approximately 
                                $3,205,000, which is equivalent to $0.158 per share of common stock, which is the average of the closing price for the five-day period immediately following the date of the Purchase Agreement, August 19, 2002 to 
                                August 23, 2002. By acquiring the Project, among other assets, AOBO will acquire ownership of the building housing the Project's manufacturing plant, manufacturing equipment, and environmental control equipment of 
                                which the historical cost is approximately $3,205,000.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">In addition, AOBO will receive the right to produce the products that resulted from the Project as well as ownership 
                                rights on a pending patent in China for the process of the extraction and production of soybean peptide. The Project, including the production, marketing and sales of various functional soybean peptide medical 
                                tablets and powders, has a fair market value of $40,406,000.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">About American Oriental Bioengineering, Inc.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">American Oriental Bioengineering, Inc. is a leading Chinese nutracuetical company that uses proprietary processes for 
                                producing soybean protein peptide more efficiently than traditional extracting techniques. These techniques are used to manufacture and formulate supplemental and medicinal products. The Company focuses on new 
                                product research to combine biotechnology and Chinese medical technology to capture the increasing demand for traditional Chinese medicines and health supplements, both domestically and internationally. Soybean 
                                peptides are used widely in general food and health food products, sports foods, medicines, fermentation industry and in environmental protection applications</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">Safe Harbor Statement</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">Except for the historical statements made herein, the statements made in this release are forward-looking statements, 
                                including. Risk factors that could cause actual results to differ materially from those projected in forward-looking statements include, but are not limited to, general business conditions, managing growth, and 
                                political and other business risks. Although the Company believes that the forward-looking statements contained herein are reasonable, it can give no assurance that the Company's expectations are correct. All 
                                forward-looking statements are expressly qualified in their entirety by this Cautionary Statement and the risks and other factors detailed in the Company's reports filed with the Securities and Exchange Commission.</SPAN>
                            </P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">China Contact: Lily Li<BR>86-451-6666601<BR>F: 86-451-6690967<BR></SPAN><A HREF="http://www.edirectoffers.com/aobo/mailto:aobo@biosly.com"><SPAN STYLE=
                                "font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">aobo@biosly.com</SPAN></A><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><BR>
                                <BR>Hong Kong Contact: Clarence Chan<BR>852-9522-3111<BR>F: 852-2829-7410<BR></SPAN><A HREF="http://www.edirectoffers.com/aobo/mailto:sly@biosly.com"><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">sly@biosly.com</SPAN></A>
                                <BR><BR><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">Investor Contact: Harvey Goralnick/David Zazoff<BR>FOCUS Partners LLC<BR>212-752-9445<BR></SPAN><A
                                 HREF="http://www.edirectoffers.com/aobo/mailto:aobo@focuspartners.com"><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">aobo@focuspartners.com</SPAN></A></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">&#169; 2003 PRNewswire</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><SPAN STYLE="color: rgb(0,51,102);"><B>more...</B><BR></SPAN><BR><B>
                                AOBO Completes Purchase of Soybean Protein Peptide Project</B><BR>12:06 pm - PR Newswire <BR>Friday January 24, 2003<BR><BR><A HREF="http://biz.yahoo.com/prnews/030124/nyf043_1.html"><B>
                                AOBO Expects to Have a Total of 65 Enuresis Soft Gel Clinics Operating in 2003</B></A><BR>9:14 am - PR Newswire <BR>Tuesday January 14, 2003<BR><BR><A HREF="http://biz.yahoo.com/prnews/030114/nytu090_1.html"><B>
                                AOBO Expands Into Japan; Signs LOI to Export Its Soybean Protein Peptide Products</B></A><BR>9:28 am - PR Newswire <BR>Monday January 6, 2003<BR><BR><A HREF="http://biz.yahoo.com/prnews/030106/nym123_1.html"><B>
                                AOBO Enters the Hong Kong Market</B></A><BR>10:25 am - PR Newswire&nbsp; </SPAN></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD COLSPAN=5 STYLE="background-color: rgb(102,102,153);">
                            <P></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD COLSPAN=5 STYLE="background-color: rgb(255,255,255); padding: 12px; border-top: 1pt solid rgb(0,0,0);">
                            <P STYLE="text-align: left;"><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small;"><SPAN STYLE="color: rgb(102,102,153);"><B>DISCLAIMER</B><BR></SPAN><SPAN STYLE=
                                "color: rgb(102,102,153);">This Email and Newsletter were sent to you as you requested information on <A HREF="http://www.edirectoffers.com">edirectoffers.com</A> of this nature.&nbsp; The views, discussion and opinions should be followed up with good research by your compliance department as well as your own researcher and/or advisor.&nbsp;&nbsp; This is a subscription mailing if you received this by email&nbsp; <A
                                 HREF="http://www.edirectoffers.com/Opt_Out/opt_out.html">To opt-out and never receive this newsletter again - Click Here and put unsubscribe in the subject line!</A>&nbsp; Very important removal instruction: To be 
                                removed you may do so via fax or email&nbsp; with the word unsubscribe and then your email address in the BODY of the message.. It should look like this &quot; unsubscribe youraddress@aol.com &quot;. The words in 
                                bold should be the only things written in the email .. It has to be done exactly that way. You must make sure you remove the address that we actually send mail to not a forwarded address..Thanks and sorry for any 
                                trouble.. </SPAN></SPAN></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD>
                            <P></P>
                        </TD>
                        <TD WIDTH=230>
                            <P></P>
                        </TD>
                        <TD WIDTH=128>
                            <P></P>
                        </TD>
                        <TD WIDTH=132>
                            <P></P>
                        </TD>
                        <TD WIDTH=121>
                            <P></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD>
                            <P></P>
                        </TD>
                        <TD>
                            <P></P>
                        </TD>
                        <TD>
                            <P></P>
                        </TD>
                        <TD>
                            <P></P>
                        </TD>
                        <TD>
                            <P></P>
                        </TD>
                    </TR>
                </TABLE>
            </TD>
        </TR>
    </TABLE>
</BODY>
</HTML>
 


From AOBO@edirectoffers.com Mon Feb 24 18:54:19 2003
Return-Path: <AOBO@edirectoffers.com>
Received: from sccrmhc03.attbi.com (sccrmhc03.attbi.com [204.127.202.63])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with ESMTP id h1ONsIaN007092;
	Mon, 24 Feb 2003 18:54:19 -0500 (EST)
Message-Id: <200302242354.h1ONsIaN007092@netlib2.cs.utk.edu>
Received: from sccrmhc03.attbi.com (localhost[127.0.0.1])
          by sccrmhc03.attbi.com (sccrmhc03) with ESMTP
          id <200302242014380030005j0he>; Mon, 24 Feb 2003 20:14:42 +0000
X-Comment: AT&T Maillennium special handling code - x
Received: from newg (c-54-28-176-66.se.biz.attbi.com[66.176.28.54])
          by sccrmhc03.attbi.com (sccrmhc03) with SMTP
          id <2003022418225100300mm9soe>; Mon, 24 Feb 2003 18:23:05 +0000
X-Comment: AT&T Maillennium special handling code - x
From: "" <AOBO@edirectoffers.com>
To: "" <Loscompany@freemail.nl>, "" <mmunoz@cc.uantof.cl>,
   "" <tang@www.newimage.com.tw>, "" <bloomer@omen.net.au>,
   "" <dxg24@email.psu.edu>, "" <nick_hall@usa.net>, "" <ittek@sprynet.com>,
   "" <ricdiehl@pacbell.net>, "" <borsum@dascor.com>,
   "" <flint@krypton.tera.com>, "" <frenschecl@icon.co.za>,
   "" <cie90fpo@student.lth.se>, "" <samir@hotmail.com>,
   "" <sruffell@pgaero.co.uk>, "" <elscrapo@ix.netcom.com>,
   "" <m.catena@ifm-relay.inet.it>, "" <info@seetron.com>,
   "" <koloman_goetzl@yahoo.com>, "" <mm@ncs-net.com>,
   "" <jeff@dialup26.i-star.com>, "" <jeff@dialup13.i-star.com>,
   "" <rwolski@glasscity.net>, "" <bruno.schwander@technologist.com>,
   "" <gaus@alpha.fh-furtwangen.de>, "" <steve.brown@racalinst.co.uk>,
   "" <ramos_aurelio@emc.com>, "" <wkearson@gate.net>,
   "" <BFinn@bigpond.com.au>, "" <dcb@sirvys.com>, "" <hBTECH@MS16.HINET.NET>,
   "" <graml@biochem.mpg.de>, "" <DStephan@mail.ultratronik.de>,
   "" <willc@mediaone.net>, "" <digitech@niagara.com>, "" <tejasman2@aol.com>,
   "" <dave@dingbat.demon.co.uk>, "" <pjansen@execulink.com>,
   "" <wagnerl@earthlink.net>, "" <rvbaar@multiweb.nl>,
   "" <d55guy@engr.colostate.edu>, "" <student@sy.eni.com>,
   "" <parisy@labri.u-bordeaux.fr>, "" <bolesja@ece.orst.edu>,
   "" <jussi@koro.pp.fi>, "" <mkong@interlog.com>,
   "" <demitchel@worldnet.att.net>, "" <hee@asic.sec.samsung.co.kr>,
   "" <Mposey@ersi.com>, "" <erikoynl@netvigator.com>, "" <wmayewsky@ica.net>,
   "" <bab2610@unix.tamu.edu>, "" <gusr405@email.mot.com>,
   "" <kbookan@uwaterloo.uwaterloo.ca>, "" <st001796@hrzpub.tu-darmstadt.de>,
   "" <gembec@yahoo.com>, "" <desgronte@wilke.de>, "" <lmbraz@hotmail.com>,
   "" <vili@bgnet.bg>, "" <narasimha.kumar@intel.com>,
   "" <johnwong@cuhk.edu.hk>, "" <microboy@ix.netcom.com>,
   "" <tyler@eminent.net>, "" <desai@meru.com>, "" <axel.graf@zbs-ilmenau.de>,
   "" <sollie@mpinet.net>, "" <adrianrgc@yahoo.com>, "" <sallen@sirius.com>,
   "" <dongarra@CS.UTK.EDU>, "" <blast-funct@CS.UTK.EDU>,
   "" <m0vouYR-000iCjC@ishark.jf.intel.com>, "" <shane@ibeam.jf.intel.com>,
   "" <blast-funct@CS.UTK.EDU>, "" <199702051739.MAA21208@CS.UTK.EDU>,
   "" <lck@research.bell-labs.com>, "" <jglewis@redwood.rt.cs.boeing.com>,
   "" <199702212221.OAA09564@sulien.network-b>, "" <john.g.lewis@boeing.com>,
   "" <roger.g.grimes@boeing.com>, "" <jglewis@cs.washington.edu>,
   "" <sven@odin.nag.co.uk>, "" <199702251112.LAA25348@odin.nag.co.uk>,
   "" <sven@nag.co.uk>, "" <postmaster@CS.UTK.EDU>, "" <Nancy@email.com>,
   "" <20010304062923.2800A154C62@pop509-ec.mail.com>,
   "" <blast-funct-archive@netlib2.cs.utk.edu>,
   "" <blast-lb-archive@netlib2.cs.utk.edu>,
   "" <blast-lite-archive@netlib2.cs.utk.edu>,
   "" <blast-parallel-archive@netlib2.cs.utk.edu>,
   "" <blast-sparse-archive@netlib2.cs.utk.edu>,
   "" <biotechstox92@hotmail.com>, "" <385.843938.751234@hotmail.com>,
   "" <biotechinfo2007@yahoo.com>, "" <biotechsubscribe@yahoo.com>,
   "" <remobiotech@yahoo.com>, "" <christmaseveryday2001@yahoo.com>,
   "" <285.524316.109290@yahoo.com>, "" <beaconsubscribe@yahoo.com>,
   "" <beaconlistremo@yahoo.com>, "" <memorytogo@memorytogo4.com>
Cc: 
Date: Mon, 24 Feb 03 13:20:44 -0500
Subject: Press From AOBO
X-Mailer: ExclamationSoft Corporation Mail Version 2.0
X-MSMail-Priority: NORMAL
MIME-Version: 1.0
Content-Type: text/html;
	boundary="----=_ExClAmAtIoNsOfT_MaIl_PaRt_BoUnDaRy"

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<HTML>
<HEAD>
<META HTTP-EQUIV="Content-Type" CONTENT="text/html; charset=ISO-8859-1">
<META NAME="Generator" CONTENT="NetObjects Fusion 5.0 for Windows">
<TITLE>AOBO</TITLE>
<script>
function invitepopup(url) {window.open(url,'artist','width='+540+',height='+500+',scrollbars=yes,status=no');
}
</script>
<LINK REL=STYLESHEET TYPE="text/css" HREF="http://www.edirectoffers.com/aobo/./style.css">
<LINK REL=STYLESHEET TYPE="text/css" HREF="http://www.edirectoffers.com/aobo/./site.css">
<STYLE>
</STYLE>
</HEAD>
<BODY STYLE="text-align: center; background-color: rgb(102,102,153);" TOPMARGIN=0 LEFTMARGIN=0 MARGINWIDTH=0 MARGINHEIGHT=0>
    <TABLE BORDER=0 CELLSPACING=0 CELLPADDING=0 NOF=LY>
        <TR VALIGN=TOP ALIGN=LEFT>
            <TD WIDTH=627>
                <TABLE ID="Table1" BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH=627>
                    <COLGROUP>
                    <COL WIDTH=16>
                    <COL WIDTH=230>
                    <COL WIDTH=128>
                    <COL WIDTH=132>
                    <COL WIDTH=121>
                    </COLGROUP>
                    <TR>
                        <TD COLSPAN=5 STYLE="background-color: rgb(255,255,255); border: 1pt solid rgb(0,0,0); padding: 4px;">
                            <P STYLE="text-align: right;"><B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small;">&nbsp;<A HREF="http://www.edirectoffers.com/aobo/./Bio/bio.html">Home Page</A> - </SPAN></B><A HREF="http://www.edirectoffers.com/aobo/./Bio/bio.html"><B><SPAN
                                 STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small;">Company Info</SPAN></B></A><B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; 
                                font-size: xx-small;">&nbsp; </SPAN></B></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD COLSPAN=5 STYLE="border: 1pt solid rgb(0,0,0);">
                            <P><IMG ID="Picture3" HEIGHT=353 WIDTH=625 SRC="http://www.edirectoffers.com/aobo/./aobofront23456.jpg" VSPACE=0 HSPACE=0 ALIGN="TOP" BORDER=0 USEMAP="#map0"><MAP NAME="map0"><AREA SHAPE=RECT ALT="" COORDS="125,5,183,19" HREF="http://www.edirectoffers.com/aobo/./Bio/bio.html"><AREA
                                 SHAPE=RECT ALT="" COORDS="182,3,296,20" HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t"><AREA SHAPE=RECT ALT="" COORDS="295,1,406,20" HREF="http://biz.yahoo.com/n/a/aobo.ob.html"><AREA SHAPE=RECT ALT=""
                                 COORDS="406,6,519,19" HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=v3"><AREA SHAPE=RECT ALT="" COORDS="310,67,584,292" HREF="http://biz.yahoo.com/n/a/aobo.ob.html"><AREA SHAPE=RECT ALT="" COORDS="16,28,307,341"
                                 HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t"></MAP></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD WIDTH=16 STYLE="background-color: rgb(255,255,255); border-left: 1pt solid rgb(102,102,153); border-bottom: 1pt solid rgb(102,102,153);">
                            <P><SPAN STYLE="color: rgb(255,255,255);">.</SPAN></P>
                        </TD>
                        <TD COLSPAN=4 STYLE="background-color: rgb(255,255,255); border: 1pt solid rgb(102,102,153); padding: 7px;">
                            <P><B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><A HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t">AOBO Completes Purchase of Soybean Protein Peptide Project</A>
                                <BR></SPAN></B><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small; color: rgb(255,0,0);">January 28, 2003 12:06:00 PM ET</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><B>HONG KONG, Jan. 28 /PRNewswire-FirstCall/ -- American Oriental Bioengineering Inc. (OTC Bulletin Board: <A
                                 HREF="http://finance.yahoo.com/q?s=AOBO.OB&d=t">AOBO</A>)</B>
                                 announced that its board of directors has approved the completion of the Soybean Protein Peptide project purchase, worth an estimated $40 million, effective immediately.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">On October 11, 2002, AOBO filed an Information Statement Pursuant to Section 14(c) of the Securities Exchange Act of 
                                1934, announcing that a total of 20,284,810 shares of Common Stock and 1,000,000 shares of Class A Preferred Stock will be issued by AOBO in consideration for 100% ownership interest in a soybean protein peptide 
                                biochemical engineering project (the &quot;Project&quot;) as described in the Purchase Agreement dated as of August 17, 2002 signed by Shujun Liu and AOBO. The value of the Common Stock to be issued is approximately 
                                $3,205,000, which is equivalent to $0.158 per share of common stock, which is the average of the closing price for the five-day period immediately following the date of the Purchase Agreement, August 19, 2002 to 
                                August 23, 2002. By acquiring the Project, among other assets, AOBO will acquire ownership of the building housing the Project's manufacturing plant, manufacturing equipment, and environmental control equipment of 
                                which the historical cost is approximately $3,205,000.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">In addition, AOBO will receive the right to produce the products that resulted from the Project as well as ownership 
                                rights on a pending patent in China for the process of the extraction and production of soybean peptide. The Project, including the production, marketing and sales of various functional soybean peptide medical 
                                tablets and powders, has a fair market value of $40,406,000.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">About American Oriental Bioengineering, Inc.</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">American Oriental Bioengineering, Inc. is a leading Chinese nutracuetical company that uses proprietary processes for 
                                producing soybean protein peptide more efficiently than traditional extracting techniques. These techniques are used to manufacture and formulate supplemental and medicinal products. The Company focuses on new 
                                product research to combine biotechnology and Chinese medical technology to capture the increasing demand for traditional Chinese medicines and health supplements, both domestically and internationally. Soybean 
                                peptides are used widely in general food and health food products, sports foods, medicines, fermentation industry and in environmental protection applications</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">Safe Harbor Statement</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">Except for the historical statements made herein, the statements made in this release are forward-looking statements, 
                                including. Risk factors that could cause actual results to differ materially from those projected in forward-looking statements include, but are not limited to, general business conditions, managing growth, and 
                                political and other business risks. Although the Company believes that the forward-looking statements contained herein are reasonable, it can give no assurance that the Company's expectations are correct. All 
                                forward-looking statements are expressly qualified in their entirety by this Cautionary Statement and the risks and other factors detailed in the Company's reports filed with the Securities and Exchange Commission.</SPAN>
                            </P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">China Contact: Lily Li<BR>86-451-6666601<BR>F: 86-451-6690967<BR></SPAN><A HREF="http://www.edirectoffers.com/aobo/mailto:aobo@biosly.com"><SPAN STYLE=
                                "font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">aobo@biosly.com</SPAN></A><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><BR>
                                <BR>Hong Kong Contact: Clarence Chan<BR>852-9522-3111<BR>F: 852-2829-7410<BR></SPAN><A HREF="http://www.edirectoffers.com/aobo/mailto:sly@biosly.com"><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">sly@biosly.com</SPAN></A>
                                <BR><BR><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">Investor Contact: Harvey Goralnick/David Zazoff<BR>FOCUS Partners LLC<BR>212-752-9445<BR></SPAN><A
                                 HREF="http://www.edirectoffers.com/aobo/mailto:aobo@focuspartners.com"><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">aobo@focuspartners.com</SPAN></A></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;">&#169; 2003 PRNewswire</SPAN></P>
                            <P><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: x-small;"><SPAN STYLE="color: rgb(0,51,102);"><B>more...</B><BR></SPAN><BR><B>
                                AOBO Completes Purchase of Soybean Protein Peptide Project</B><BR>12:06 pm - PR Newswire <BR>Friday January 24, 2003<BR><BR><A HREF="http://biz.yahoo.com/prnews/030124/nyf043_1.html"><B>
                                AOBO Expects to Have a Total of 65 Enuresis Soft Gel Clinics Operating in 2003</B></A><BR>9:14 am - PR Newswire <BR>Tuesday January 14, 2003<BR><BR><A HREF="http://biz.yahoo.com/prnews/030114/nytu090_1.html"><B>
                                AOBO Expands Into Japan; Signs LOI to Export Its Soybean Protein Peptide Products</B></A><BR>9:28 am - PR Newswire <BR>Monday January 6, 2003<BR><BR><A HREF="http://biz.yahoo.com/prnews/030106/nym123_1.html"><B>
                                AOBO Enters the Hong Kong Market</B></A><BR>10:25 am - PR Newswire&nbsp; </SPAN></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD COLSPAN=5 STYLE="background-color: rgb(102,102,153);">
                            <P></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD COLSPAN=5 STYLE="background-color: rgb(255,255,255); padding: 12px; border-top: 1pt solid rgb(0,0,0);">
                            <P STYLE="text-align: left;"><SPAN STYLE="font-family: Arial, Helvetica, Univers, 'Zurich BT', sans-serif; font-size: xx-small;"><SPAN STYLE="color: rgb(102,102,153);"><B>DISCLAIMER</B><BR></SPAN><SPAN STYLE=
                                "color: rgb(102,102,153);">This Email and Newsletter were sent to you as you requested information on <A HREF="http://www.edirectoffers.com">edirectoffers.com</A> of this nature.&nbsp; The views, discussion and opinions should be followed up with good research by your compliance department as well as your own researcher and/or advisor.&nbsp;&nbsp; This is a subscription mailing if you received this by email&nbsp; <A
                                 HREF="http://www.edirectoffers.com/Opt_Out/opt_out.html">To opt-out and never receive this newsletter again - Click Here and put unsubscribe in the subject line!</A>&nbsp; Very important removal instruction: To be 
                                removed you may do so via fax or email&nbsp; with the word unsubscribe and then your email address in the BODY of the message.. It should look like this &quot; unsubscribe youraddress@aol.com &quot;. The words in 
                                bold should be the only things written in the email .. It has to be done exactly that way. You must make sure you remove the address that we actually send mail to not a forwarded address..Thanks and sorry for any 
                                trouble.. </SPAN></SPAN></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD>
                            <P></P>
                        </TD>
                        <TD WIDTH=230>
                            <P></P>
                        </TD>
                        <TD WIDTH=128>
                            <P></P>
                        </TD>
                        <TD WIDTH=132>
                            <P></P>
                        </TD>
                        <TD WIDTH=121>
                            <P></P>
                        </TD>
                    </TR>
                    <TR>
                        <TD>
                            <P></P>
                        </TD>
                        <TD>
                            <P></P>
                        </TD>
                        <TD>
                            <P></P>
                        </TD>
                        <TD>
                            <P></P>
                        </TD>
                        <TD>
                            <P></P>
                        </TD>
                    </TR>
                </TABLE>
            </TD>
        </TR>
    </TABLE>
</BODY>
</HTML>
 


From Live_From_the_Street_99720@att.net Tue Feb 25 08:05:36 2003
Return-Path: <Live_From_the_Street_99720@att.net>
Received: from 195.182.129.122 ([61.154.118.6])
	by netlib2.cs.utk.edu (8.12.3/8.12.3) with SMTP id h1PD3LaO016836
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Tue, 25 Feb 2003 08:04:35 -0500 (EST)
Message-Id: <200302251304.h1PD3LaO016836@netlib2.cs.utk.edu>
Received: from [106.226.127.61] by n7.groups.yahoo.com with local; Feb, 25 2003 5:56:51 AM +0400
Received: from [130.91.58.120] by mta6.snfc21.pbi.net with SMTP; Feb, 25 2003 4:56:42 AM -0000
From: Maxwell <Live_From_the_Street_99720@att.net>
To: Kil
Subject: LIVE FROM WALL STREET: VICC Test Results Are In.......... bkn
Sender: Maxwell <Live_From_the_Street_99720@att.net>
Mime-Version: 1.0
Content-Type: text/html; charset="iso-8859-1"
Date: Tue, 25 Feb 2003 07:11:16 -0600
X-Mailer: Microsoft Outlook IMO Build 9.0.2416 (9.0.2910.0)

<p>If you bought into our last recommendation (CIMG) early enough you had an excellent opportunity to make substantial gains (from .90 to 1.65 in just the first day).  Now is your chance to do the same with our newest pick: VICC.  To find out more go to <a href="http://www.shorttermplay.com">Live From the Street</a>.</p>
<p align="center"><img border="0" src="http://www.shorttermplay.com/bm01.gif"></p>
<p>If you no longer want to receive information from us just go to 
<a href="mailto:tallrhe@cs.com">tallrhe@cs.com</a>.<p>

djoasevncnaajarkobuffnigvycmtwtbmcusks

From amarissavqq6bxgj0eu2@msn.com Mon Apr 14 21:42:07 2003
Return-Path: <amarissavqq6bxgj0eu2@msn.com>
Received: from hotmail.com (bay3-dav145.bay3.hotmail.com [65.54.169.175])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id h3F1g7SP017533;
	Mon, 14 Apr 2003 21:42:07 -0400 (EDT)
Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC;
	 Mon, 14 Apr 2003 18:41:39 -0700
Received: from 213.152.93.3 by bay3-dav145.bay3.hotmail.com with DAV;
	Tue, 15 Apr 2003 01:41:39 +0000
X-Originating-IP: [213.152.93.3]
X-Originating-Email: [amarissavqq6bxgj0eu2@msn.com]
To: "Fernsler Lecomte" <FernslerLecomte@email.com>
Subject: To Perfectly Uphold Septic Tanks              oC07WyG1LP1JA4
From: "Mcmahill Hinshaw" <McmahillHinshaw@netscape.net>
X-Originating-Ip: [83.6.43.399]
X-Mailer: Microsoft Outlook Express 5.00.2014.211
X-Comment: e02KswGriNl8P3311HI4T8n63u4YwKKF
X-MIMEOLE: Produced By Microsoft MimeOLE V5.00.2014.211
X-Accept-Language: en
Content-Type: multipart/alternative; boundary="I5t0fO0qvt2F664NqQ7C27B617H2T4B7A32IP2N5m2Mwbd6360xSG8WgVwDNsu303"
Content-Transfer-Encoding: 7bit
Message-ID: <BAY3-DAV145iVZm2zqQ00052407@hotmail.com>
X-OriginalArrivalTime: 15 Apr 2003 01:41:39.0881 (UTC) FILETIME=[28F13990:01C302F0]
Date: 14 Apr 2003 18:41:39 -0700

--I5t0fO0qvt2F664NqQ7C27B617H2T4B7A32IP2N5m2Mwbd6360xSG8WgVwDNsu303
Content-Transfer-Encoding: 7bit
Content-Type: text/html; charset="ISO-8859-1"

<HTML><CENTER><table border=0 cellpadding=6 width=450 bgcolor=#FFFFFF>
<TR><TD ALIGN=LEFT VALIGN=TOP><FONT style="FONT-SIZE: 18px; COLOR: #358211; FONT-FAMILY: Arial;">
<CENTER><B>K<!O>eep<!Y> Y<!W>ou<!K>r<!F> <!G>Sep<!J>t<!M>i<!U>c<!Y> W<!S>o<!X>rki<!W>ng<!Z> E<!O>ffic<!G>ien<!J>tl<!L>y!</B><FONT COLOR=black><BR>
<FONT style="FONT-SIZE: 16px; COLOR: #343230; FONT-FAMILY: Arial;">
<B>G<!J>e<!X>t<!J> <!O>A <!V><FONT COLOR=RED>F<!N>REE<!Y></FONT> T<!D>r<!F>i<!T>a<!M>l <!R>of<!Z> SPC<!P> <!B>Se<!I>p<!F>t<!X>ic C<!T>l<!T>e<!O>an<!E>e<!K>r<!T></B><BR><BR>
<A HREF=http://%76%6Ci%6Eg%2Db%75y%2Ec%6F%6D/spc/index.html style="FONT-SIZE: 18px; COLOR: #E64533; FONT-FAMILY: Arial;">C<!Q>li<!H>c<!W>k<!C> <!S>H<!E>e<!V>r<!I>e<!H> <!U>Fo<!N>r<!C> <!U>M<!B>o<!K>r<!I>e I<!Q>n<!I>fo<!S>r<!F>ma<!G>t<!N>io<!C>n</A><BR><BR>
<FONT style="FONT-SIZE: 16px; COLOR: #484544; FONT-FAMILY: Arial;"></CENTER><UL>
<LI>Sim<!S>p<!M>l<!R>y<!C> t<!L>h<!P>e <!Z>mo<!B>st <!E>e<!Q>ff<!O>ec<!C>t<!W>iv<!D>e<!J> s<!E>e<!M>pt<!Y>ic<!K> <!B>m<!N>a<!E>i<!R>n<!Q>tenanc<!B>e <!B>p<!I>rodu<!B>c<!P>t a<!G>va<!O>ila<!Y>bl<!W>e!<!K><LI>M<!F>a<!G>ke <!J>y<!M>o<!U>u<!Y>r <!S>s<!X>ept<!W>ic<!Z> w<!O>ork <!G>as <!J>we<!L>ll <!J>a<!X>s<!J> <!O>th<!V>e<!N> da<!Y>y <!D>i<!F>t<!T> <!M>wa<!R>s <!Z>inst<!P>a<!B>ll<!I>e<!F>d<!X>!<LI RR><B>100% environmentally safe</B>, and in no way can harm you, your children, pets or your septic system.</UL><CENTER>
<A HREF=http://%76%6Cing-b%75y.%63o%6D/spc/index.html style="FONT-SIZE: 18px; COLOR: #E64533; FONT-FAMILY: Arial;">Cli<!T>c<!T>k<!O> H<!E>e<!K>r<!T>e<!Q> F<!H>o<!W>r<!C> <!S>M<!E>o<!V>r<!I>e<!H> <!U>In<!N>f<!C>o<!U>r<!B>m<!K>a<!I>tio<!Q>n<!I></A><BR><BR>
<FONT COLOR=GRAY SIZE=-2 RR><A HREF="http://vlin%67-%62%75y.%63om/spc/remove.html">cl<!S>i<!F>ck<!G></A> <!N>an<!C>d st<!S>o<!M>p<!R> <!C>th<!L>i<!P>s <!Z>ma<!B>il<BR RR><!-- oEX4VAVFZya0k0VDA0LTE0MlI4TU0xdTRZd0s=XMiUhKH38I4P4Gt1016110 --></TD></TR></TABLE></HTML>

--I5t0fO0qvt2F664NqQ7C27B617H2T4B7A32IP2N5m2Mwbd6360xSG8WgVwDNsu303--


From rorberto@go.com Fri May  2 04:21:03 2003
Return-Path: <rorberto@go.com>
Received: from netlib2.cs.utk.edu ([212.165.142.216])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h428KpSP001088
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 2 May 2003 04:20:57 -0400 (EDT)
Message-Id: <200305020820.h428KpSP001088@netlib2.cs.utk.edu>
From: "DR. FEMI DADA" <rorberto@go.com>
Date: Fri, 02 May 2003 09:20:52
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: GREETINGS
MIME-Version: 1.0
Content-Type: text/plain;charset="iso-8859-1"
Content-Transfer-Encoding: 7bit

Hello, 
 
It is my humble pleasure to write this letter 
irrespective of the fact that you do not know me my 
name is Robert Owode, a staff in the private banking 
sector of the bank in Nigeria. I am writing in respect of a 
foreign customer of my bank who died mysteriously. 
Though I know that a transaction of this magnitude 
will make any one apprehensive and worried, but I am 
assuring you that all will be well at the end of the 
day 
 
Since the demise of this our customer I personally have 
watched with keen interest to see the next of kin but 
all has proved abortive as no one has come to claim 
his funds of USD$15M, (Fifteen Million United States Dollars) 
which has been with my branch for a very long time, now 
unquestionably expects to be claimed by any of his 
available foreign next of kin or alternatively be 
donated to a discredited trust fund for arms and 
ammunition at a military war college here in Nigeria. 
 
Fervent valuable efforts made by the Bank to get in 
touch with any of the deceased's next of kin (he had 
no known wife and children) has been unsuccessful. The 
management under the influence of our chairman and 
board of directors are making arrangement for the fund 
to be declared "UNCLAIMABLE" and then be subsequently 
donated to the trust fund for Arms and Ammunition, 
which will further enhance the course of war in Africa 
and the world in general. 
 
On this note I decided to seek for a capable person 
that his name shall be used as the next of kin, as no 
one has come up to be the next of kin. The banking 
ethics here does not also allow such money to stay 
more than six years, because the money will be 
recalled to the banks' treasury unclaimed after this 
period, I will give you 30% of the total. 

Upon the receipt of your response, I will send you by 
fax or e-mail the application, bank's fax number and 
the next step to take. I will not fail to bring to 
your notice that this business is hitch free and that 
you should not entertain any fear as all modalities 
for fund transfer can be finalized within five banking 
days, after you apply to the bank as a relation to the 
deceased. 

When you receive this letter, kindly send me an e-mail 
signifying your decision including your private 
Tel/fax numbers for quick communication. 
 
Respectfully submitted, 
 
Robert Owode (Mr.) 
Private Banking 


From ukimberly118gbj278h61@msn.com Sun May  4 09:57:59 2003
Return-Path: <ukimberly118gbj278h61@msn.com>
Received: from hotmail.com (bay5-dav135.bay5.hotmail.com [65.54.173.165])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id h44DvwSP009095
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sun, 4 May 2003 09:57:59 -0400 (EDT)
Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC;
	 Sun, 4 May 2003 06:57:53 -0700
Received: from 216.20.1.214 by bay5-dav135.bay5.hotmail.com with DAV;
	Sun, 04 May 2003 13:57:53 +0000
X-Originating-IP: [216.20.1.214]
X-Originating-Email: [ukimberly118gbj278h61@msn.com]
To: "Lougheed Pelland" <LougheedPelland@google.com>
Subject: Try Spc Free For 30 Days - And End Septic Tank Issues
From: "Fortuna Lane" <FortunaLane@go.com>
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2800.1106
Organization: EslRCY62A8H8We567kDJ65kyQp852ug
X-Priority: 3 (Normal)
Content-Type: multipart/alternative; boundary="0ttoo6rudhWcsEv3H7757r8712x06w5Doln170liJX3OqnhUFdf74scaBIaFiEx1Vtv3"
Content-Transfer-Encoding: 7bit
Message-ID: <BAY5-DAV135KINzq6xE00000277@hotmail.com>
X-OriginalArrivalTime: 04 May 2003 13:57:53.0492 (UTC) FILETIME=[28509940:01C31245]
Date: 4 May 2003 06:57:53 -0700

--0ttoo6rudhWcsEv3H7757r8712x06w5Doln170liJX3OqnhUFdf74scaBIaFiEx1Vtv3
Content-Transfer-Encoding: 7bit
Content-Type: text/html; charset="US-ASCII"

<HTML><CENTER>
<FONT SIZE=4 FACE="ARIAL" COLOR="#0F5295"><B>**<!H>*<!O> <!Y>Prolon<!H>g T<!R>he<!Z> <!T>L<!I>i<!B>f<!Y>e O<!X>f<!X> Yo<!P>u<!U>r<!V> Se<!E>pti<!T>c<!R> Sys<!Q>t<!C>e<!S>m<!X> <!V>***<!B><BR><BR>
<FONT SIZE=4 FACE="ARIAL" COLOR=BLACK>Tr<!F>y<!G> <!C>S<!U>P<!B>C<!E> <!B>Sept<!X>ic C<!Q>lea<!Z>ner <!V><FONT COLOR=RED>F<!U>o<!P>r<!W> F<!S>r<!U>e<!S>e</FONT> <!J>an<!S>d <!T>jud<!W>g<!Q>e f<!D>or <!X>yo<!W>u<!C>rself.<BR><BR>
<A HREF=http://w%77%77%2E%62%75y%2D%64%6Es%2E%63%6Fm/spc1/><FONT SIZE=3 FACE="ARIAL" COLOR="RED">V<!Y>i<!K>si<!B>t<!G> <!F>Ou<!V>r<!G> Web <!U>S<!N>it<!C>e Here<!J></A><BR><BR>
<FONT SIZE=3 FACE="ARIAL" COLOR="BLACK"></B>
Keep <!F>yo<!S>ur<!W> s<!E>e<!Y>ptic sy<!F>s<!U>t<!Y>e<!H>m<!S> <!D>n<!O>o<!G>n<!Z>-<!R>clogg<!G>ing<!C> and f<!D>r<!R>ee <!I>fl<!W>ow<!H>i<!O>n<!Y>g!<BR>It's<!H> 10<!R>0%<!Z> <!T>e<!I>n<!B>v<!Y>iro<!X>n<!X>men<!P>t<!U>a<!V>lly<!E> sa<!T>f<!R>e an<!Q>d<!C> <!S>t<!X>h<!V>e b<!B>es<!F>t<!G> <!C>p<!U>r<!B>o<!E>d<!B>uct <!X>avai<!Q>lab<!Z>le<BR>
<B>So<!V> <!U>w<!P>h<!W>at<!S> <!U>d<!S>o <!J>yo<!S>u <!T>hav<!W>e<!Q> to<!D> lo<!X>se<!W>?<!C></B><BR><BR>
<A HREF=http://%77%77%77%2Ebuy-%64ns.%63om/spc1/><FONT SIZE=3 FACE="ARIAL" COLOR="RED"><B>Click h<!Y>e<!K>re<!B> <!G>n<!F>ow<!V> <!G>and g<!U>e<!N>t <!C>a FREE<!J> trial!<!F></B></A><BR><BR>
<FONT COLOR=black SIZE=1>Do<!S>n'<!W>t <!E>w<!Y>ant any<!F> <!U>m<!Y>o<!H>r<!S>e<!D> <!O>a<!G>d<!Z>v<!R>erts?<!G> <A HREF="http://www.%62u%79%2Ddn%73.c%6F%6D/spc1/remove/remove.htm">vi<!C>sit he<!D>r<!R>e</A><BR RR><!-- GLMcubKI05AaTJRMnlYNGxnMDUtMDRsUkNNTTE3OA==XA8H8We567kDJ65kyQp857017 --></CENTER></HTML>

--0ttoo6rudhWcsEv3H7757r8712x06w5Doln170liJX3OqnhUFdf74scaBIaFiEx1Vtv3--


From iamyh2oyeg747dbu3b@msn.com Sat May 17 11:13:51 2003
Return-Path: <iamyh2oyeg747dbu3b@msn.com>
Received: from hotmail.com (bay3-dav127.bay3.hotmail.com [65.54.169.157])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id h4HFDpSP016625
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sat, 17 May 2003 11:13:51 -0400 (EDT)
Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC;
	 Sat, 17 May 2003 08:13:45 -0700
Received: from 212.252.6.203 by bay3-dav127.bay3.hotmail.com with DAV;
	Sat, 17 May 2003 15:13:45 +0000
X-Originating-IP: [212.252.6.203]
X-Originating-Email: [iamyh2oyeg747dbu3b@msn.com]
Subject: Grand university degree proposal for everyone!
To: "Mizwicki Lanosa" <MizwickiLanosa@msn.com>
From: "Shepperd Scelsi" <ShepperdScelsi@google.com>
X-Mailer: Microsoft Outlook CWS, Build 9.0.2416 (9.0.2910.0)
X-Accept-Language: en
X-Originating-Ip: [65.4.956.484]
X-Priority: 3 (Normal)
Content-Type: multipart/alternative; boundary="YqPyOo7GLM0ubKH05i2PFY48UWslR478o63v4AyMLGN3QNVY5TK7Nh8tso5J6udhPbrWu2"
Content-Transfer-Encoding: 7bit
Message-ID: <BAY3-DAV127kZRo5GDD00007d9a@hotmail.com>
X-OriginalArrivalTime: 17 May 2003 15:13:45.0912 (UTC) FILETIME=[E9238380:01C31C86]
Date: 17 May 2003 08:13:45 -0700

--YqPyOo7GLM0ubKH05i2PFY48UWslR478o63v4AyMLGN3QNVY5TK7Nh8tso5J6udhPbrWu2
Content-Transfer-Encoding: 7bit
Content-Type: text/html; charset="US-ASCII"

<HTML><CENTER><FONT SIZE=3 FACE=Arial COLOR=#0080FF><B>A<!S>re<!T> Yo<!W>u<!J> <!I>H<!V>av<!O>i<!D>n<!V>g<!C> Tr<!J>oub<!R>l<!K>e <!U>F<!G>i<!X>nd<!O>in<!D>g Wo<!U>r<!N>k<!T>?</B>
<BR><BR><FONT SIZE=3 FACE=Arial COLOR=BLACK>
C<!M>a<!Q>ll<!B> <B>1<!C>-4<!Y>15<!R>-3<!Q>58<!E>-<!Y>55<!E>50</B> t<!F>o<!N> s<!Z>ee<!M> <!C>h<!O>o<!G>w<!S> <!R>our d<!Y>egr<!C>ee can<!D> <!R>hel<!I>p <!P>lau<!Z>n<!R>c<!M>h<!L> <!H>y<!H>our<!K> <!N>c<!V>a<!Z>re<!T>e<!Y>r.<!X>
<!R><BR><BR><B>Don<!P>'t l<!H>et<!W> mi<!M>n<!K>i<!L>m<!Y>u<!K>m<!P> q<!X>u<!O>ali<!Z>fi<!E>c<!G>a<!U>t<!N>io<!S>ns<!B> hol<!Q>d yo<!J>u<!G> <!Z>back<!V>.<!U></B><BR><!P>
W<!F>h<!L>e<!U>t<!S>he<!I>r <!S>yo<!T>u'r<!W>e<!J> <!I>l<!V>oo<!O>k<!D>i<!V>n<!C>g t<!J>o e<!R>a<!K>rn<!U> <!G>y<!X>ou<!O>r <!D>bach<!U>e<!N>l<!T>ors,<!M> <!Q>ma<!B>st<!C>er<!Y>s,<!R> P<!Q>h.<!E>D<!Y>.,<!E> or <!F>M<!N>BA<!Z>,<BR><!M>
<!C>W<!O>e<!G>'<!S>v<!R>e got<!Y> th<!C>e dipl<!D>o<!R>ma <!I>in<!P> th<!Z>e<!R> <!M>f<!L>i<!H>e<!H>ld <!K>o<!N>f<!V> <!Z>yo<!T>u<!Y>r c<!X>h<!R>oic<!P>e.<BR><BR>
<!H>Ca<!W>ll <!M>n<!K>o<!L>w<!Y> <!K><B>1<!P>-4<!X>1<!O>5-3<!Z>58<!E>-<!G>5<!U>5<!N>50<!S></B> a<!B>nd s<!Q>ee h<!J>o<!G>w<!Z> we <!V>c<!U>a<!P>n <!F>h<!L>e<!U>l<!S>p <!I>yo<!S>u <!T>get<!W> <!J>t<!I>h<!V>e <!O>j<!D>o<!V>b<!C> yo<!J>u'v<!R>e<!K> a<!U>l<!G>w<!X>ay<!O>s <!D>want<!U>e<!N>d<!T>.
<BR><BR><FONT SIZE=1 COLOR=BLACK><BR>D<!M>o<!Q>n'<!B>t <!C>wa<!Y>nt<!R> a<!Q>ny<!E> <!Y>mo<!E>re a<!F>d<!N>ve<!Z>rt<!M>s<!C>?<!O> <!G><A HREF="http://%77%77w%2Ed%6Es%2D%31%30%31.%63om/spc1/remove/remove.htm">v<!S>i<!R>sit h<!Y>ere<!C></A><BR RR><!-- 12x06f7I2UUPAdzZhVkpRM081bjA1LTE3cUkxY3dNTTE0Ng==Xd45yk0m16pD18XaI1475 --></HTML>

--YqPyOo7GLM0ubKH05i2PFY48UWslR478o63v4AyMLGN3QNVY5TK7Nh8tso5J6udhPbrWu2--


From ftimus60s8bwqw@msn.com Wed May 28 11:00:04 2003
Return-Path: <ftimus60s8bwqw@msn.com>
Received: from hotmail.com (bay3-dav149.bay3.hotmail.com [65.54.169.179])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id h4SF04SP000757
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 28 May 2003 11:00:04 -0400 (EDT)
Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC;
	 Wed, 28 May 2003 07:59:58 -0700
Received: from 217.96.198.223 by bay3-dav149.bay3.hotmail.com with DAV;
	Wed, 28 May 2003 14:59:58 +0000
X-Originating-IP: [217.96.198.223]
X-Originating-Email: [ftimus60s8bwqw@msn.com]
Subject: Meet Devoted And Gratifying Women
From: "Schellermann Signorile" <SchellermannSignorile@earthlink.net>
To: "Freud Fugere" <FreudFugere@boardermail.com>
Organization: Lj
X-MIMEOLE: Produced By Microsoft MimeOLE V6.00.2100.0000
X-Originating-Ip: [3.6.851.6]
X-MSMail-Priority: Normal
Content-Type: multipart/alternative; boundary="lQ2s3WvJIEk2oKsw4qHTLe7qql4HO8xmX1F07jt66IBHR5pw57Wt4tl33A6Y32GN2lNk1Kua053P8"
Content-Transfer-Encoding: 7bit
Message-ID: <BAY3-DAV149OEcyhJzq00004b71@hotmail.com>
X-OriginalArrivalTime: 28 May 2003 14:59:58.0468 (UTC) FILETIME=[CE7CD440:01C32529]
Date: 28 May 2003 07:59:58 -0700

--lQ2s3WvJIEk2oKsw4qHTLe7qql4HO8xmX1F07jt66IBHR5pw57Wt4tl33A6Y32GN2lNk1Kua053P8
Content-Transfer-Encoding: 7bit
Content-Type: text/html; charset="ISO-8859-1"

<HTML><CENTER><FONT SIZE=3 FACE=VERDANA COLOR=400080><B>T<!F>ro<!F>ub<!M>le <!X>Fi<!V>nd<!J>i<!E>n<!E>g T<!H>h<!K>e<!S> <!W>Rig<!R>h<!I>t <!U>Wo<!X>ma<!M>n?</B>
<BR><BR><A HREF=http://%77%77w%2E%73ea%72c%68%61m%61zi%6Eg%2E%63o%6D/?oc=5217><FONT SIZE=2 FACE=VERDANA COLOR=RED><B>Find T<!H>he<!K> Gi<!I>r<!W>l<!I> <!N>of<!U> Your<!X> D<!C>r<!D>ea<!M>ms <!P>Ri<!X>gh<!F>t<!O> <!Z>He<!G>r<!D>e<!W></A></B>
<BR><BR><FONT SIZE=2 FACE=VERDANA COLOR=BLACK>
We<!S> <!R>a<!M>re a<!I>n<!S> <!P>on<!G>l<!V>i<!Z>n<!Q>e<!D> <!T>s<!H>e<!G>rv<!K>i<!L>c<!B>e<!T> <!Z>t<!J>h<!G>at s<!W>peci<!O>ali<!F>z<!L>es<!B> i<!D>n<!R> <!K>m<!Q>a<!Z>tc<!K>h<!O>in<!X>g <!Y>up <!C>m<!P>en<!N> l<!B>i<!V>ke<!C> <!H>yo<!C>u<!K>!<BR><!W>
S<!J>e<!Z>a<!L>rch <!T>t<!E>hroug<!Z>h <!Y>p<!H>hoto<!Z>-<!O>gal<!F>le<!M>rie<!X>s,<!V> b<!J>i<!E>o<!E>gra<!H>p<!K>h<!S>i<!W>es<BR><!R>
<!I>an<!U>d <!X>ch<!M>oose the<!H> w<!K>oma<!I>n<!W> <!I>y<!N>ou<!U>'d li<!X>ke<!C> <!D>to<!M> co<!P>nt<!X>ac<!F>t<!O> <!Z>an<!G>d<!D> <!W>even<!S> <!R>m<!M>eet<BR>
<BR><FONT SIZE=3 FACE=VERDANA COLOR=400080><B>I<!I>t<!S>'<!P>s <!G>T<!V>h<!Z>a<!Q>t<!D> <!T>E<!H>a<!G>sy<!K>!<!L></B><BR><BR>
<A HREF=http://w%77w.%73e%61rc%68%61m%61z%69%6E%67.com/?oc=5217><FONT SIZE=3 FACE=VERDANA COLOR=RED><B>V<!B>i<!T>s<!Z>i<!J>t<!G> Us <!W>Here<!O> An<!F>d<!L> E<!B>nd<!D> <!R>T<!K>h<!Q>o<!Z>se<!K> <!O>Lo<!X>ne<!Y>ly <!C>N<!P>ig<!N>ht<!B>s<!V>!</B></A><BR><BR>
<FONT SIZE=-3 COLOR=BFBFBF>S<!C>t<!H>op<!C> <!K>Ma<!W>il<!J> <!Z><A href=http://%77%77%77.sear%63%68a%6D%61%7Aing.%63%6F%6D/x/?oc=5215>c<!L>lick<!T></A>.<BR RR><!-- 1UuCMAcXMyMGZCSm4wNS0yOG9NN0xNTTFPNGk=Xk8r8hF84fEnDV3UStpiorP9474 --></HTML>

--lQ2s3WvJIEk2oKsw4qHTLe7qql4HO8xmX1F07jt66IBHR5pw57Wt4tl33A6Y32GN2lNk1Kua053P8--


From hpatrickhe84fdmcv3trt@msn.com Fri Jun  6 07:19:11 2003
Return-Path: <hpatrickhe84fdmcv3trt@msn.com>
Received: from hotmail.com (bay3-dav52.bay3.hotmail.com [65.54.169.82])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id h56BJASP016172
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 6 Jun 2003 07:19:11 -0400 (EDT)
Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC;
	 Fri, 6 Jun 2003 04:19:05 -0700
Received: from 80.58.33.42 by bay3-dav52.bay3.hotmail.com with DAV;
	Fri, 06 Jun 2003 11:19:05 +0000
X-Originating-IP: [80.58.33.42]
X-Originating-Email: [hpatrickhe84fdmcv3trt@msn.com]
Subject: Get Out Of Debt
To: "Roxane Lucek" <RoxaneLucek@email.com>
From: "Caponi Hecker" <CaponiHecker@activatormail.com>
X-Priority: 3 (Normal)
X-Mailer: Internet Mail Service (5.5.2650.21)
X-MIMEOLE: Produced By Microsoft MimeOLE V5.00.2014.211
X-MSMail-Priority: Normal
Importance: Normal
X-Accept-Language: en
X-Comment: cFcD6DIkHao8WXngmVT7iT8CXRfpN
Content-Type: multipart/alternative; boundary="75QlT81Jr17gW33VVQq6bXGj0EU2xOYeg746dbU3bAjys2Qop41knlM0l"
Content-Transfer-Encoding: 7bit
Message-ID: <BAY3-DAV527VoAxRYG600009871@hotmail.com>
X-OriginalArrivalTime: 06 Jun 2003 11:19:05.0257 (UTC) FILETIME=[70AD1190:01C32C1D]
Date: 6 Jun 2003 04:19:05 -0700

--75QlT81Jr17gW33VVQq6bXGj0EU2xOYeg746dbU3bAjys2Qop41knlM0l
Content-Transfer-Encoding: 7bit
Content-Type: text/html; charset="ISO-8859-1"

<HTML><CENTER><FONT SIZE=4 FACE=Arial COLOR=#A97A23><B RR>Finding it difficult to make all your payments?</B><BR>
<FONT SIZE=3 FACE=Arial COLOR=#45320E RR>Visit us for a no obligation consultation on debt management!<BR><BR>
<A HREF=http://www.QUALITYSALES-GREAT.COM/debt1/><FONT SIZE=3 FACE=Arial COLOR=RED><B RR>Click Here To Get Started</B></A><BR><BR>
<FONT SIZE=3 FACE=Arial COLOR=BLACK RR>With debt consolidation you can<BR RR>turn many troublesome bills into one low payment!
<BR><BR><FONT SIZE=3 FACE=Arial COLOR=#61527A><B><I RR>Our representatives are waiting to help you right now!</I><BR><BR>
<A HREF=http://www.QUALITYSALES-GREAT.COM/debt1/><FONT SIZE=3 FACE=Arial COLOR=RED RR>Click Here To Get Started</B></A>
<BR><BR><FONT SIZE=1 COLOR=#666666><BR RR>opt out by <A href=http://www.QUALITYSALES-GREAT.COM/debt1/remove/remove.htm RR>clicking</A><BR RR><!-- Hao8WXngmAVlQ3aTc0cTUwYTA2LTA2TlBld0ROTU0xV0I1VUw=X5IphFGVOU1BcK0hJ2AG1166 --></HTML>

--75QlT81Jr17gW33VVQq6bXGj0EU2xOYeg746dbU3bAjys2Qop41knlM0l--


From opama6llgg0j@msn.com Sat Jun 14 12:55:27 2003
Return-Path: <opama6llgg0j@msn.com>
Received: from hotmail.com (bay3-dav124.bay3.hotmail.com [65.54.169.154])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id h5EGtRSP012319
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sat, 14 Jun 2003 12:55:27 -0400 (EDT)
Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC;
	 Sat, 14 Jun 2003 09:55:21 -0700
Received: from 202.54.65.65 by bay3-dav124.bay3.hotmail.com with DAV;
	Sat, 14 Jun 2003 16:55:20 +0000
X-Originating-IP: [202.54.65.65]
X-Originating-Email: [opama6llgg0j@msn.com]
Subject: Hard Cash Payouts for Winners!
To: "Bollaert Peifer" <BollaertPeifer@netscape.com>
From: "Furtado Wigelsworth" <FurtadoWigelsworth@toast.com>
X-MIMEOLE: Produced By Microsoft MimeOLE V5.00.2014.211
X-Mailer: VUvacation v1.3 (don't blame UCB, NetBSD or OpenBSD)
X-Accept-Language: en
X-Comment: OL2tL3T3JqbGHWPV1C7k10KaBhr88N2M7
Content-Type: multipart/alternative; boundary="Rr7uxgk0fV2YlKx8s8u1824B2via6Rpqgy1omN0mRuQk83giwpvgdE4EJlIb30xyoHnWt7dU0"
Content-Transfer-Encoding: 7bit
Message-ID: <BAY3-DAV124De8qpnpj00007894@hotmail.com>
X-OriginalArrivalTime: 14 Jun 2003 16:55:21.0521 (UTC) FILETIME=[BDF8A210:01C33295]
Date: 14 Jun 2003 09:55:21 -0700

--Rr7uxgk0fV2YlKx8s8u1824B2via6Rpqgy1omN0mRuQk83giwpvgdE4EJlIb30xyoHnWt7dU0
Content-Transfer-Encoding: 7bit
Content-Type: text/html; charset="ISO-8859-1"

<HTML><CENTER><FONT SIZE=4 FACE="ARIAL" COLOR="#0C9304"><B RR>Want To Gamble Online?<BR RR>Enjoy up to $272 Free on us!<BR>
<BR><A HREF=http://www.reefcasinowinners.com/a.php?btag=banaff6891><FONT SIZE=4 FACE="ARIAL" COLOR="RED"><B RR>Win Big Online! Click Here To Get Started</B></A><BR><BR>
<FONT SIZE=3 FACE="ARIAL" COLOR="BLACK" RR>Why drive to the Casino when you can win large cash right now!<BR><BR>
<FONT SIZE=3 FACE="ARIAL" COLOR="#0C9304" RR>Don't Wait Any Longer!<BR>You Could Be Our Next BIG WINNER!<BR>
<BR><A HREF=http://www.reefcasinowinners.com/a.php?btag=banaff6891><FONT SIZE=4 FACE="ARIAL" COLOR="RED"><B RR>Click Here For Our Website!</B></A><BR><BR>
<FONT SIZE=1 COLOR=BLACK RR>our removal site <A href=http://www.reefcasinowinners.com/unsubscribe.php RR>here</A><BR RR><!-- L3TAM0pxYm9qM00wNi0xNDFDTU0xMVN3bg==XaBhr88N2M76nC7s0r3Yj6513 --></CENTER></HTML>

--Rr7uxgk0fV2YlKx8s8u1824B2via6Rpqgy1omN0mRuQk83giwpvgdE4EJlIb30xyoHnWt7dU0--


From education-discounts02@yahoo.com Fri Jun 20 02:45:15 2003
Return-Path: <education-discounts02@yahoo.com>
Received: from exmail.marupi-pharma.com.tw ([211.20.70.222])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id h5K6jCSP024663
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 20 Jun 2003 02:45:13 -0400 (EDT)
Received: from smtp0552.mail.yahoo.com ([61.15.84.227]) by exmail.marupi-pharma.com.tw with Microsoft SMTPSVC(5.0.2195.4453);
	 Thu, 19 Jun 2003 11:04:38 +0800
Date: Thu, 19 Jun 2003 03:01:27 GMT
From: "Adarewia"<education-discounts02@yahoo.com>
X-Priority: 3
To: blast-parallel@CS.UTK.EDU
Subject: FW: Software Discounts for Student, Teachers, Staff, Schools                   
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Content-Transfer-Encoding: 7bit
Message-ID: <EXMAILfT7eEmP9CDBHy000002c9@exmail.marupi-pharma.com.tw>
X-OriginalArrivalTime: 19 Jun 2003 03:04:44.0204 (UTC) FILETIME=[88AE4EC0:01C3360F]

Hey, check this out - they've great prices on Adobe and Macromedia.  Best.

Adobe Photoshop at 56% OFF, 
Office XP Standard at 71% OFF,
Macromedia Studio MX at 76% OFF, 
Adobe Design Collection at 62% OFF
Microsoft Visual Studio.NET at 91% OFF,

FREE SHIPPING (Ground Only) 
 THROUGH June 30, 2003 
    WITH THE FOLLOWING CODE: FRC610

YOU MUST PLACE ORDER BY TELEPHONE AND 
YOU MUST TELL OUR OPERATOR THAT YOU 
HAVE A FREE SHIPPING CODE.

Dear Students, Teachers, Faculty, Staff and Schools:

COMPUTER PRODUCTS FOR EDUCATION is pleased to offer to you the best prices on ACADEMIC EDITION SOFTWARE from MICROSOFT, ADOBE, MACROMEDIA, COREL, and others - AT UP TO 91% OFF STANDARD COMMERCIAL RETAIL PRICES.  If you are a Qualified Education Buyer (defined below) you can purchase software products from CPE at HUGE DISCOUNTS during our JUNE SALE!  

SALE PRICES VALID THROUGH JUNE 30, 2003.

Qualified Education Buyers include K-12 and HIGHER EDUCATION STUDENTS, TEACHERS, FACULTY, STAFF, and SCHOOLS.

Call 800-679-7007 to order any of these products.

For our website address, please send a blank email here:  
Mailto: lki987sony@gmx.net?subject=MORE%20INFO 
You will receive a response with our web address.

----------------------           Education Standard  You
ADOBE (Windows & Mac):             Price    Retail   Save!
----------------------           ---------  ------   -----
Acrobat 6.0 Standard               $89.95    $299     70%
Acrobat 6.0 Professional          $104.95    $449     77%
After Effects 5.5 Production Bndl $359.95   $1699     79%
GoLive 6.0/LiveMotion 2.0          $84.95    $399     79%
Illustrator 10.0                   $89.95    $399     77%
InDesign 2.0                      $179.95    $699     74%
PageMaker 7.0                     $269.95    $499     46%
PageMaker 7.0 Upgrade              $89.95      -       -
Photoshop 7.0                     $279.95    $609     54%
Photoshop 7.0 Upgrade             $149.95      -       -
Premiere 6.5                      $219.95    $549     60%
Premiere 6.5 Upgrade              $149.95      -         

*******Adobe Collections**********
Design Collection 7.0             $379.95    $999     62%
    (InDesign 2/Photoshop 7/Illustrator 10/Acrobat 6 Pro)

Digital Video Collection 8.0      $479.95   $1199     60%
    (Premiere 6.5/AfterEffects 5.5/Photoshop 7/Illustr 10)

Publishing Collection 13.0        $479.95    $999     52%
    (PageMaker 7/Photoshop 7/Illustrator 10/Acrobat 6 Stnd)

Web Collection 7.0                $379.95    $999     62%
    (Photoshop 7/Illustrator 10/GoLive 6/Acrobat 6 Stnd)   


Call 800-679-7007 to order any of the products below.

----------------------           Education Commercial You
MACROMEDIA (Windows & Mac):        Price    Retail   Save!
----------------------           ---------  ------   -----
Authorware 6.5 E-Doc              $349.95   $2699     87%
Director MX                       $479.95   $1199     60%
Dreamweaver MX                     $98.95    $299     67%
eLearning Suite                   $489.95   $2999     84%
   (Authorware 6/FlashMX/DreamweaverMX)
Fireworks MX                       $98.95    $199     50%
Flash MX                           $98.95    $399     75%
FreeHand 10                        $98.95    $399     75%
STUDIO MX 1.1                     $189.95    $799     76%
  (Dreamweaver MX/Fireworks MX/Flash MX/Freehand 10/ColdFusion MX)

Call 800-679-7007 to order any of the products below.

---------------------------      Education Standard  You
Microsoft:                         Price    Retail   Save!
---------------------------      ---------  ------   -----
Office XP Standard                $144.95    $479     71%
Office XP Professional            $192.95    $579     67%
Office 2001 Macintosh             $199.95    $499     60%
Office Mac v.X for Mac OS X       $209.95    $459     53% 
FrontPage 2002                     $79.95    $169     53%
Publisher 2002                     $79.95    $129     38%
Visio Standard 2002                $69.95    $199     65%
Visio Professional 2002           $159.95    $499     69%
Visual Basic.Net Standard          $59.95    $109     45%
Visual C++.Net Standard            $59.95    $109     45%
Visual C#(sharp).Net Standard      $59.95    $109     45%
Visual Studio.Net Professional     $92.95   $1079     91%
Windows XP Professional Upg*      $ 89.95    $299     68%
Windows 2000 Professional Upg*    $129.95    $319     59%

* Windows XP/2000 Pro Upgrade will install on a blank hard drive. 

Call 800-679-7007 to order any of the products below.

---------------------------      Education Standard  You
Corel:                             Price    Retail   Save!
---------------------------      ---------  ------   -----
Corel WordPerfect Office 11        $98.95    $299     67%
Corel Draw 11.0                   $142.95    $549     72%
Corel Designer 9                   $98.95    $469     79%
Corel Painter 8.0                  $97.95    $299     67%

Call 800-679-7007 to order any of the products below.

For our website address, please send a blank email here:  
Mailto:lki987sony@gmx.net?subject=MORE%20INFO 
You will receive a response with our web address.

PURCHASE ORDERS MAY BE FAXED TO: 800-679-6996
REFERENCE THE FREE SHIPPING CODE ON YOUR PURCHASE ORDER
FOR FREE SHIPPING.

----------
LICENSING:
----------
For school purchases of five to ten (5-10) or more units, depending on the product, please call 800-679-7007 for even deeper discounts on license packs.   
----------
For hundreds of other software products available from CPE at similar discounts, call us at 800-679-7007. 

Academic Edition software is exactly the same as the Full-Retail versions* except that it has been deeply discounted for Qualified Education Buyers.  

No verification is required for purchases of Microsoft Office XP Standard.  

For all other products, purchasers must provide fax-verification of status as being a current faculty, staff, or student.  After placing your order, you simply fax to CPE either: (a) a copy of a current picture School I.D. Card or, (b) a current paycheck stub with an alternative picture I.D. (drivers license, etc.).  Schools may purchase by faxing a valid school purchase order.  For more details, call us for our website address.

All software sold by CPE is authentic original software from the manufacturer.  THESE ARE NOT PIRATED COPIES.  ALL SOFTWARE COMES IN ORIGINAL MANUFACTURER'S BOXES AND INCLUDES A VALID LICENSE.

CPE is an Authorized Education Reseller for Microsoft, Adobe, Corel, Symantec and many other major software manufacturers. CPE is a national software distributor committed to providing the lowest prices possible to the Education community with the best customer service!!

All prices and availability are subject to change without notice.  

*Some Academic Edition boxes may not include supplemental materials, such as extra fonts, image libraries, or third-party(OEM) products, which are included in the Full-Retail versions.  However, the core-programs themselves are exactly the same.
___________________

We hope you find this message valuable.  If you do not wish to receive any more special offers and updates, please send an email to:  
Mailto:lki987sony@gmx.net?subject=REMOVE 
___________________

THANK YOU!

From AivaoTatiana@hotmail.com Fri Jul  4 01:28:59 2003
Return-Path: <AivaoTatiana@hotmail.com>
Received: from mx04.stofanet.dk (mx04.stofanet.dk [212.10.30.234])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id h645SwSP003760
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 4 Jul 2003 01:28:59 -0400 (EDT)
Received: from [62.107.62.184] (helo=62.107.62.184)
	by mx04.stofanet.dk with smtp (Exim 4.04)
	id 19YJ1O-0001Sa-00; Fri, 04 Jul 2003 07:22:12 +0200
Received: from gBiEliqt3.Jm3Cp0XA.com ([53.1.49.89]) by kV0D0ShrPQGYFO.YC6W40.com with ESMTP id KqiGI; Thu, 3 Jul 2003 13:23:10 -0800
Date: Thu, 3 Jul 2003 13:23:10 -0800
To: Reary Gash <Schlageter@go.com>
Subject: don't squander your years at a dead end profession!
From: Alica Bresett <F0BdEmN0N@1q2.otmail.com>
Organization: 0Is8
X-Originating-Ip: [121.47.1.54]
X-MSMail-Priority: Normal
Message-id: <N87oD7t1s6YK55281o4fTlk6JjQBgh7p7fcW3dBkAt2Rp0BdEHPTjN1q2U6HgBiEliqt3oFRIcTo4jJeM580K7mrp1c5O3j4mQ4u46UqKqiGIW5V@qgkSeOArlD8.hotmail.com>
MIME-Version: 1.0
Content-Type: multipart/alternative; boundary="W405D0Ppk6M7qgkSeOArlD886RN87oD7t1s6YK55281o4fTlk6JjQBgh7p7fcW3dBk"
Content-Transfer-Encoding: 7bit

--W405D0Ppk6M7qgkSeOArlD886RN87oD7t1s6YK55281o4fTlk6JjQBgh7p7fcW3dBk
Content-Transfer-Encoding: 7bit
Content-Type: text/html; charset="ISO-8859-1"

<CENTER><FONT SIZE=4 FACE=Arial COLOR=#045B6A RR><B>Get A Degree In Any Experienced Field</B>
<BR><BR><FONT SIZE=3 FACE=Arial COLOR=#75000C RR>Call <B RR>1-310-943-3251</B RR> Now For More Information!
<BR><BR><FONT SIZE=3 FACE=Arial COLOR=BLACK RR>
It is a well known fact that people who posses a degree are looked upon as the elite<BR RR>
If you have a degree, you are almost assured to gain leverage in the work place
<BR><BR><FONT SIZE=3 FACE=Arial COLOR=#75000C RR>There's no testing required, simply call <B RR>1-310-943-3251</B RR> for more information.
<BR><BR>
852N87oD7t1s6YK55281o4

--W405D0Ppk6M7qgkSeOArlD886RN87oD7t1s6YK55281o4fTlk6JjQBgh7p7fcW3dBk--


From lrichard6ma6q0p5w@msn.com Wed Jul  9 18:56:36 2003
Return-Path: <lrichard6ma6q0p5w@msn.com>
Received: from hotmail.com (bay3-dav145.bay3.hotmail.com [65.54.169.175])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id h69MuZSP000351
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 9 Jul 2003 18:56:36 -0400 (EDT)
Received: from mail pickup service by hotmail.com with Microsoft SMTPSVC;
	 Wed, 9 Jul 2003 15:56:30 -0700
Received: from 216.241.22.50 by bay3-dav145.bay3.hotmail.com with DAV;
	Wed, 09 Jul 2003 22:56:30 +0000
X-Originating-IP: [216.241.22.50]
X-Originating-Email: [lrichard6ma6q0p5w@msn.com]
From: "Khare Perkerson" <KharePerkerson@webmail.com>
To: "Bail Koestner" <BailKoestner@bolt.com>
Subject: Groovy university degree proposition for one and all!
X-Mailer: Simeon for Win32 Version 4.1.5 Build (43)
X-Comment: 5UK8Oi0tto5K6udhQcsXv3H
X-MIMEOLE: Produced By Microsoft MimeOLE V5.50.4522.1201
X-Priority: 3 (Normal)
X-MSMail-Priority: Normal
Content-Type: multipart/alternative; boundary="775PrS712x16f7J2VUPw6aWLP8KT22NYdf746daTI0YiXx1Puv41kTqL0rQyOp72LN0ubLI05i2"
Content-Transfer-Encoding: 7bit
Message-ID: <BAY3-DAV145ejEBCuDd00028272@hotmail.com>
X-OriginalArrivalTime: 09 Jul 2003 22:56:30.0321 (UTC) FILETIME=[55E8DE10:01C3466D]
Date: 9 Jul 2003 15:56:30 -0700

--775PrS712x16f7J2VUPw6aWLP8KT22NYdf746daTI0YiXx1Puv41kTqL0rQyOp72LN0ubLI05i2
Content-Transfer-Encoding: 7bit
Content-Type: text/html; charset="US-ASCII"

<HTML><CENTER><FONT SIZE=4 FACE=Arial COLOR=#045B6A RR><B>Get A Degree In Any Experienced Field</B>
<BR><BR><FONT SIZE=3 FACE=Arial COLOR=#75000C RR>Call <B RR>1-310-943-3251</B RR> Now For More Information!
<BR><BR><FONT SIZE=3 FACE=Arial COLOR=BLACK RR>
It is a well known fact that people who posses a degree are looked upon as the elite<BR RR>
If you have a degree, you are almost assured to gain leverage in the work place
<BR><BR><FONT SIZE=3 FACE=Arial COLOR=#75000C RR>There's no testing required, simply call <B RR>1-310-943-3251</B RR> for more information.
<BR><BR><FONT SIZE=1 COLOR="BLACK"><BR RR><BR RR>R4422J3478p63v4AyMM</HTML>

--775PrS712x16f7J2VUPw6aWLP8KT22NYdf746daTI0YiXx1Puv41kTqL0rQyOp72LN0ubLI05i2--


From funsohwilliems0@tiscali.co.uk Thu Jul 24 00:13:47 2003
Return-Path: <funsohwilliems0@tiscali.co.uk>
Received: from mk-smarthost-2.mail.uk.tiscali.com (mk-smarthost-2.mail.uk.tiscali.com [212.74.114.38])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id h6O4DkSP016842;
	Thu, 24 Jul 2003 00:13:47 -0400 (EDT)
Received: from [212.74.114.4] (helo=mk-cpfrontend.uk.tiscali.com)
	by mk-smarthost-2.mail.uk.tiscali.com with esmtp (Exim 4.14)
	id 19fXU4-000ILw-NT; Thu, 24 Jul 2003 05:13:40 +0100
Received: from [80.88.139.230] by mk-cpfrontend.uk.tiscali.com with HTTP; Thu, 24 Jul 2003 05:11:33 +0100
Date: Thu, 24 Jul 2003 05:11:33 +0100
Message-ID: <3F1821E50000A50E@mk-cpfrontend-2.mail.uk.tiscali.com>
From: funsohwilliems0@tiscali.co.uk
Subject: STRICTLY AND CONFIDENCIAL
To: funsohwilliems0@tiscali.co.uk
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by netlib2.cs.utk.edu id h6O4DkSP016842

FROM THE DESK: 
DR.FUNSOH WILLIEMS 
CHIEF ACCOUNTING OFFICER 

ATTENTION: PRESIDENT/DIRECTOR 

I AM DR. FUNSOH WILLIEMS THE CHIEF ACCOUNTING OFFICER OF A 
BANK. THE FINANCIAL STATEMENT OF OUR BANK IS OVER 
US$300,000,000,000.00 (THREE HUNDRED BILLION UNITED STATES 
DOLLARS) AND THE CURRENT ASSETS OF OUR BANK IS RELATIVELY 
LIQUID RESOURCES. THIS CATEGORIES INCLUDES CASH, 
INVESTMENTS IN MARKETABLE SECURITIES, RECEIVABLE, 
INVENTORIES AND PREPAID EXPENSES. IN RECENT YEARS THE 
ANNAUL REVENUE OF OUR BANK HAS EXCEEDED TO 
US$500,000,000,000.00 (FIVE HUNDRED BILLION UNITED STATES 
DOLLARS) AND MY RESPONSIBITY IS FOR ME TO MAINTAIN 
ADEQUATE MONETARY INTERNAL CONTROL, CONTROLLING THE BANK 
CASH POSITION, BUDGETTING AND FOR THE PREPARATION OF 
ACCOUNTING RECORDS AND FINANCIAL STATEMENT. 

THE NUMBER OF CAPITAL SHARES WHICH HAS BEEN ISSUED FOR THE 
YEAR 2003 IS UNDER MY JURISDICTION IS 
US$300,000,000,000.00 AND THE OUTSTANDING SHARE THAT IS 
PRESENTLY UNDER MY CONTROL AND SUPERVISION IS 
US$87,000,000.00 (EIGHTY SEVEN MILLION UNITED STATES DOLLARS). 
WE ARE IN THE FIRST QUARTER OF THE YEAR 2003 AND I NEED A 
RELIABLE FOREIGN PARTNER THAT WILL ASSIST ME TO TRANSFER 
THE FUND INTO HIS BANK ACCOUNT. I HAVE MANAGERIAL 
AUTHORITY TO TRANSFER THIS FUND INTO YOUR BANK ACCOUNT BY 
ELECTRONIC WIRE TRANSFER. I NEED THE FOLLOWING BANKING 
INFORMATION: 

1. THE NAME OF YOUR BANK 
2. THE BANK ADDRESS 
3. THE BANK ACCOUNT 
4. THE BANK ROUTING/SWIFT CODE 
5. THE BANK BENEFICIARY 
6. YOUR COMPANY NAME 
7. YOUR PRIVATE TEL, FAX AND MOBILE TELPHONE FOR EASY COMMUNICATION 

WITH THE ABOVE INFORMATION, I WILL EFFECT THE PAYMENT OF 
US$87MILLION DOLLARS INTO YOUR NOMINATED BANK ACCOUNT AND 
THIS WILL ONLY TAKE US 24 BANKING WORKING HOURS TO 
EXECUTIVE THIS FINANCIAL BUSINESS TRANSACTION THAT WILL 
BENEFIT BOTH PARTIES. WE HAVE AGREED TO SHARE THE FUND AS 
FOLLOW: 30% WILL BE GIVING TO YOU HAS THE OWNER OF THE 
ACCOUNT WHERE THE FUND WILL BE TRANSFER AND 60% WILL BE 
FOR ME AND 10% FOR VALUE ADDED TAX THAT WILL BE REQUIRED 
BY YOUR BANK OFFICIAL. 

THE BANK WILL SEND YOU VALID CONCRETE AUTHORIZATION 
DOCUMENT AND TELEX CONFIRMATION WILL BE SEND TO YOUR BANK 
AND FOR YOU TO VARIFY FROM YOUR BANK AS SOON AS THE FUND 
HIT YOUR BANK ACCOUNT. 

NOTE: Please kindly state your early response immediately 
on this email: funsohwilliems2@tiscali.co.uk for more details 
on the modalities involves in this business and it is top secret 
you have to keep strictly confidential. 

I WILL BE EXPECTING YOUR URGENT COMPLIANCE 
AND FEED BACK. 

YOURS TRULY, 

DR FUNSOH WILLIEMS 




From drjameswilliams55@lycos.co.uk Mon Aug  4 20:24:47 2003
Return-Path: <drjameswilliams55@lycos.co.uk>
Received: from lmout01.st1.spray.net (lmout01.st1.spray.net [212.78.202.120])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id h750Ol8b024101
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 4 Aug 2003 20:24:47 -0400 (EDT)
Received: from lmfilto02.st1.spray.net (lmfilto02.st1.spray.net [212.78.202.66])
	by lmout01.st1.spray.net (Postfix) with ESMTP
	id 1C4B21FBF9; Tue,  5 Aug 2003 02:24:38 +0200 (MEST)
Received: from localhost (localhost [127.0.0.1])
	by lmfilto02.st1.spray.net (Postfix) with ESMTP
	id ED32E9F9; Tue,  5 Aug 2003 02:24:37 +0200 (CEST)
Received: from lmout02.st1.spray.net ([212.78.202.121])
 by localhost (lmfilto02.st1.spray.net [212.78.202.66]) (amavisd-new, port 10024)
 with ESMTP id 14702-01; Tue,  5 Aug 2003 02:24:37 +0200 (CEST)
Received: from lycos.co.uk (lmcodec03.st1.spray.net [212.78.202.147])
	by lmout02.st1.spray.net (Postfix) with SMTP
	id 81C26FDAD; Tue,  5 Aug 2003 02:24:37 +0200 (MEST)
From: "james williams " <drjameswilliams55@lycos.co.uk>
Message-ID: <1060043077001873@lycos-europe.com>
X-Mailer: LycosMail 
X-Originating-IP: [192.116.80.25]
Mime-Version: 1.0
Subject: business assistance
Date: Tue, 05 Aug 2003 02:24:37 +0100
Content-Type: multipart/mixed; boundary="=_NextPart_Lycos_0018731060043077_ID"
To: undisclosed-recipients: ;
X-Virus-Scanned: by amavisd-new at spray.net

This message is in MIME format. Since your mail reader does not understand
this format, some or all of this message may not be legible.

--=_NextPart_Lycos_0018731060043077_ID
Content-Type: text/html; charset="windows-1252"
Content-Transfer-Encoding: 7bit

<STYLE>table.mail_content {DISPLAY: block}</STYLE><table class="mail_content"><tr><td valign="top"><div><divRE>FROM: DR. JAMES WILLIAMS
PRIVATE EMAIL:drjameswilliams55@lycos.co.uk

Attn:OWNER/CEO


Dear,


I am Dr. James Williams an oil and Gas Broker in
Nigeria, dealing with the exploration of Oil and Gas.

During the last year second quarter,I transacted a
deal with the Director of the Nigeria National
Petroleum Corporation( NNPC) in Nigeria to lift Oil
worth the sum of USD$25.5M. The money was paid and the
money hanged up by the Director of the Central Bank of
Nigeria.

Now,series of meeting held with the Director of
Central Bank of Nigeria and finalised that,since this
money can not be paid to any account in Nigeria,we
have to negotiate with a reliable foreign firm whom
his account can be used as a beneficiary to collect
this money.

At this juncture, we are requesting for your companys
details and the bank account to facilitate the payment
within 7 working days.We have agreed to compensate you
with 30% of the total sum of USD$25.5M During our
visit to your country,after the payment might have
been effectively transfered into your company's
account.

Awaiting your quick response with the details
required.


Thanks for your understanding in this matter.

Best regards,
Dr. James williams


</PRE>
<div></div></td></tr></table><p style="margin-top:11px;padding-top:3px;background-image: url(http://mail.lycos.co.uk/Images/Mail/_content/dot.gif);background-repeat: repeat-x;background-position: 0px 0px;">Film & TV Extras urgently required in your area - See Yourself in major Films & TV? Call 0907 1512440 to Register. calls cost 150pm  



--=_NextPart_Lycos_0018731060043077_ID--


From zs91ixn@ugeavisen-esbjerg.dk Thu Aug  7 05:48:22 2003
Return-Path: <zs91ixn@ugeavisen-esbjerg.dk>
Received: from 210.red-213-98-7.pooles.rima-tde.net (210.Red-213-98-7.pooles.rima-tde.net [213.98.7.210])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h779ku8b022883;
	Thu, 7 Aug 2003 05:47:26 -0400 (EDT)
Received: from (HELO 5w1d) [39.209.145.25]
	by 210.red-213-98-7.pooles.rima-tde.net with ESMTP id 70688251;
	Fri, 08 Aug 2003 04:41:39 +0600
Message-ID: <5$2-w-l$0$30571e393z5--5g9@y8p.k1h4.4g>
From: "Sang Easley" <zs91ixn@ugeavisen-esbjerg.dk>
Reply-To: "Sang Easley" <zs91ixn@ugeavisen-esbjerg.dk>
To: 199902071506.kaa20808@netlib2.cs.utk.edu
Subject: 15 year old makes $71,000---you can to! abundlgv uqekszv
Date: Fri, 08 Aug 03 04:41:39 GMT
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=".E.EBA___9DC6FF"
X-Priority: 3
X-MSMail-Priority: Normal


--.E.EBA___9DC6FF
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>chain1</title>
</head>
<body text=3D"#000000" bgcolor=3D"#99FF99" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">

<center><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font si=
ze=3D+3>If
I could show you how to make</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font
size=3D=
+4>$50,000</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font
size=3D=
+2>or
more, would you give me 2 minutes of your time?</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font
size=3D=
+1>&nbsp;</font></font></font></b></center>

<center><table BORDER=3D5 CELLSPACING=3D0 CELLPADDING=3D20 WIDTH=3D"650" B=
GCOLOR=3D"#FFFFCC" >
<tr>
<td>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"55=
0" BGCOLOR=3D"#FFFF00" >
<tr>
<td>
<center><b><font face=3D"Times New Roman,Times">Learn how to start your ow=
n
multilevel marketing business on the internet.&nbsp;</font></b>
<br><b><font face=3D"Times New Roman,Times">It=FFFFFF92s <font
size=3D+1>simple<=
/font>,
it=FFFFFF92s
<font size=3D+1>easy</font>, it=FFFFFF92s <font size=3D+1>honest</font>,
and it=FFFFFF92=
s
<font size=3D+1>legal</font>.&nbsp;
Anyone can do it.&nbsp;</font></b>
<br><b><font face=3D"Times New Roman,Times">All you need is a computer and=

access to the internet</font></b><font face=3D"Arial,Helvetica">.</font></=
center>
</td>
</tr>
</table></center>

<center>&nbsp;</center>
<i><font face=3D"Arial,Helvetica">Will all this information really make yo=
u
wealthy? I have to be frank with you: I don't know how rich you'll get
once you listen to, absorb and begin to use the secrets I'll show you.
I'm giving you a hammer. Whether you build a doghouse or a castle is none
of my business. My suggestion: <font size=3D+1>Think BIG!</font> Isn't it
time?</font></i>
<center>&nbsp;
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font
size=3D=
+2>Don't
regret not taking action!</font></font></font></b>
<br>&nbsp;
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
+1>A
One Time Investment Of $25 Plus This Simple Technology</font></font></font=
></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
+1>Could
Make You Financially Secure For Life!</font></font></font></b>
<br>&nbsp;</center>

<center><table BORDER=3D6 CELLSPACING=3D0 CELLPADDING=3D7 WIDTH=3D"100=
%" BGCOLOR=3D"#FFFFFF" class=3D"center" >
<tr>
<td>
<center>&nbsp;
<br><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENCE</font=
></b></center>

<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to
make at least $500,000 every 4 to 5 months</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">easily and comfortably=
,
please read the following...</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">THEN READ IT AGAIN and=

AGAIN !!!</font></font></b></center>

<hr width=3D"85%">
<center>&nbsp;
<br><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fo=
nt></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>
<b><i><u><font face=3D"Arial"></font></u></i></b>
<p><b><i><font face=3D"Arial">&nbsp;</font></i></b>
<br><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>
<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font>
<center>&nbsp;
<br>
<hr WIDTH=3D"80%">
<b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>
<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b>
<br>
<hr WIDTH=3D"80%">
<br><b><font face=3D"Arial">&nbsp;&nbsp;</font></b></center>
<font face=3D"Arial">You will need all 5 reports so that you can save them=

on your computer and resell them.</font>
<center>&nbsp;
<br><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>
&nbsp;
<br><font face=3D"Arial">Within a few days <b>you will receive, via e-mail=
,
each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<br>&nbsp;
<br><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will lose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!</u></b></fon=
t>
<br><b><font face=3D"Arial">&nbsp;</font></b>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"90=
%" BGCOLOR=3D"#FFCC33" >
<tr>
<td>
<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b></=
center>
</td>
</tr>
</table></center>

<center>&nbsp;
<br><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such an=
d
you will be VERY profitable in a short period of time</font></font></i></b=
></center>
<font face=3D"Arial">After you have ordered all 5 reports, take this adver=
tisement
and REMOVE the name &amp; address of the person in REPORT # 5. This person=

has made it through the cycle and is no doubt counting their fortune. Emai=
l
them and ask that's what I always did.Move the name &amp; address in REPOR=
T
# 4 down TO REPORT # 5.Move the name &amp; address in REPORT # 3 down TO
REPORT # 4.Move the name &amp; address in REPORT # 2 down TO REPORT # 3.Mo=
ve
the name &amp; address in REPORT # 1 down TO REPORT # 2. Insert YOUR name
&amp; address in the REPORT # 1 Position.</font>
<center>&nbsp;
<br>&nbsp;
<br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &amp;=

address <b>ACCURATELY</b></font>
<br><font face=3D"Arial"><font size=3D-1>(Just cut and paste! This is crit=
ical
to <b>YOUR
</b>success. Take this entire letter,</font></font>
<br><font face=3D"Arial"><font size=3D-1>with the modified list of names, =
and
save it on your computer.)</font></font>
<br>&nbsp;
<br><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cent=
er>
<font face=3D"Arial"><b>Save this on a disk as well just in case you loose=

any data</b>. To assist you with marketing your business on the internet,
the 5 reports you purchase will provide you with invaluable marketing info=
rmation
which includes how to send bulk e-mails legally, where to find thousands
of free classified ads and much more. There are 2 Primary methods to get
this venture going:</font>
<br><font face=3D"Arial">&nbsp;</font>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"54=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY</fo=
nt></b>
<p><font face=3D"Arial">Let's say that you decide to start small, just to
see how it goes, and we will assume You and those involved send out only
5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font>
<center>
<p><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NUMBERS=
 DO
NOT LIE</font></font></font></b></center>

<p><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>GET A P=
ENCIL
&amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO MATTER HOW
YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did it was $55,00=
0
in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font>
<br><font face=3D"Arial">&nbsp;</font>
<br>
<hr WIDTH=3D"80%">
<center><b><font face=3D"Arial">At the bottom of this email is contact inf=
ormation
for</font></b>
<br><b><font face=3D"Arial">the company we used to send this mailing.</fon=
t></b><font face=3D"Arial">&nbsp;&nbsp;</font>
<hr WIDTH=3D"80%"></center>
</td>
</tr>
</table></center>

<center>
<p>&nbsp;
<br><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME ONL=
Y</b>.</font></center>
<font face=3D"Arial"><b>Notes: </b>Always send $5 cash (U.S. CURRENCY) for=

each Report. Checks NOT accepted. Make sure the cash is concealed by wrapp=
ing
it in at least 2 sheets of paper or foil will also work. On one of those
sheets of paper, write the NUMBER &amp; the NAME of the Report you are
ordering, YOUR E-MAIL ADDRESS and your name and postal address.</font>
<p><br>
<center>
<p><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></font>=
</b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<center><table BORDER=3D2 CELLPADDING=3D10 WIDTH=3D"90%" class=3D"center" =
>
<tr>
<td WIDTH=3D"10%" BGCOLOR=3D"#FF0000" class=3D"left">&nbsp;</td>

<td WIDTH=3D"90%" BGCOLOR=3D"#FFFFCC"><b><font face=3D"Arial">REPORT #1:&n=
bsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>C. Bernerd</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 319</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>Kure Beach, NC 28449</font></f=
ont></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>NetWiz Rds</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>PO Box 025216, Apt SJO3016</fo=
nt></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Miami, FL 33102</font></font><=
/b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>M. Eiseman</font></f=
ont></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>P.O. Box 451971</fon=
t></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Sunrise, FL 33345-19=
71</font></font></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>R. Chernick</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 771661</font></font><=
/b>
<br><b><font face=3D"Arial"><font size=3D-1>Coral Springs, FL 33077-1661</=
font></font></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:&nbsp;</f=
ont></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Sheilah W</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 2971</font></font></b=
>
<br><b><font face=3D"Arial"><font size=3D-1>Kure Beach, NC 28449</font></f=
ont></b>
</td>
</tr>
</table></center>

<center><b><font face=3D"Arial"><font size=3D+0>&nbsp;</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+0>There are currently more than =
570,000,000
people online worldwide!</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>&nbsp;=
</font></font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$$$$$=
$ YOUR
SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>
<font face=3D"Arial">&nbsp;</font>
<br><font face=3D"Arial">Follow these guidelines to guarantee your success=
:</font>
<br>&nbsp;
<br><font face=3D"Arial">If you do not receive at least 10 orders for Repo=
rt
#1 within 2 weeks, continue sending e-mails until you do.</font>
<br>&nbsp;
<br><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks
after that you should receive 100 orders or more for REPORT # 2. If you
did not, continue advertising or sending e-mails until you do.</font>
<br>&nbsp;
<br><font face=3D"Arial">**Once you have received 100 or more orders for
Report# 2, YOU CAN RELAX, because the system is already working for you,
and the cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Ever=
y
time your name is moved down on the list, you are placed in front of a
Different report.</font>
<br>&nbsp;
<br><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching
which report people are ordering from you. IF YOU WANT TO GENERATE MORE
INCOME SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN.
There is NO LIMIT to the income you can generate from this business!!!</fo=
nt>
<center><b><font face=3D"Arial">&nbsp;</font></b>
<br><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF THI=
S
PROGRAM:</font></b></center>
<font face=3D"Arial">&nbsp;</font>
<br><font face=3D"Arial">You have just received information that can give
you financial freedom for the rest of your life, with <b>NO RISK</b> and
<b>JUST A LITTLE BIT OF EFFORT</b>. You can make more money in the next
few weeks and months than you have ever imagined. Follow the program <b>EX=
ACTLY
AS INSTRUCTED</b>. Do not change it in any way. It works exceedingly well
as it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to M. Eisman (me) I send out least
8 million emails a week with a dedicated mailing server I rent from the
bulk email company at the bottom of this page.&nbsp; The do all the work
and I just collect the $5 bills as they roll in!)</font>
<br>&nbsp;
<br><font face=3D"Arial">Remember though, the more you send out the more
potential customers you will reach. So my friend, I have given you the
ideas, information, materials and opportunity to become financially indepe=
ndent.
<b>IT IS UP TO YOU NOW!</b></font>
<br><font face=3D"Arial">&nbsp;&nbsp;&nbsp;</font>
<hr WIDTH=3D"80%">
<br><font face=3D"Arial">&nbsp;</font>
<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D+2>&nbsp;</font></font></b>
<br><i><font face=3D"Arial"><font size=3D-1>If you have any questions as t=
o
the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<br>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>&nbsp=
;</font></font></font></center>
</td>
</tr>
</table></center>

<p>&nbsp;
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D0 COLS=3D1 WIDTH=3D"65=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td>
<CENTER><BR><b><font face=3D"Arial,Helvetica"><font size=3D+2>Bulk Email c=
an <font color=3D"#FF0000">EXPLODE</FONT>&nbsp; your Profits!</font></b></=
font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Get a Dedicated Bulk =
Email Server sending out your ad</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>24 hours a day, 7 da=
ys a week!</font></font></b>
<P><font face=3D"Arial,Helvetica"><font size=3D-2>(The number of emails yo=
u get out will depend on your message size. Mailing an ad the size of this=
 one,&nbsp;</font></font>
<br><font face=3D"Arial,Helvetica"><font size=3D-2>you will get out on ave=
rage 8 million emails per week sent to our database of over 450 million In=
ternet Users</font><font size=3D-1>)</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Call 1-800-591-7751&n=
bsp;ext:101</font></font></b>
<br></center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>&nbsp=
;</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>This mess=
age
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

</body>
</html>
vrpyelmb

bw
dpmrsesjmwak htfc

--.E.EBA___9DC6FF--


From ramonwilliems@tiscali.co.uk Tue Aug 12 14:10:00 2003
Return-Path: <ramonwilliems@tiscali.co.uk>
Received: from mk-smarthost-1.mail.uk.tiscali.com (mk-smarthost-1.mail.uk.tiscali.com [212.74.114.37])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id h7CIA08b005580;
	Tue, 12 Aug 2003 14:10:00 -0400 (EDT)
Received: from [212.74.114.4] (helo=mk-cpfrontend.uk.tiscali.com)
	by mk-smarthost-1.mail.uk.tiscali.com with esmtp (Exim 4.20)
	id 19mdag-0001lL-VF; Tue, 12 Aug 2003 19:09:50 +0100
Received: from [80.88.139.232] by mk-cpfrontend.uk.tiscali.com with HTTP; Tue, 12 Aug 2003 19:09:49 +0100
Date: Tue, 12 Aug 2003 19:09:49 +0100
Message-ID: <3F216A9700023F23@mk-cpfrontend-2.mail.uk.tiscali.com>
From: ramonwilliems@tiscali.co.uk
Subject: STRICTLY AND CONFIDENCIAL
To: ramonwilliems@tiscali.co.uk
MIME-Version: 1.0
Content-Type: text/plain; charset="iso-8859-1"
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by netlib2.cs.utk.edu id h7CIA08b005580

FROM THE DESK: 
DR.RAMON WILLIEMS 
CHIEF ACCOUNTING OFFICER 

ATTENTION: PRESIDENT/DIRECTOR 

I AM DR. RAMON WILLIEMS THE CHIEF ACCOUNTING OFFICER OF A 
BANK. THE FINANCIAL STATEMENT OF OUR BANK IS OVER 
US$300,000,000,000.00 (THREE HUNDRED BILLION UNITED STATES 
DOLLARS) AND THE CURRENT ASSETS OF OUR BANK IS RELATIVELY 
LIQUID RESOURCES. THIS CATEGORIES INCLUDES CASH, 
INVESTMENTS IN MARKETABLE SECURITIES, RECEIVABLE, 
INVENTORIES AND PREPAID EXPENSES. IN RECENT YEARS THE 
ANNAUL REVENUE OF OUR BANK HAS EXCEEDED TO 
US$500,000,000,000.00 (FIVE HUNDRED BILLION UNITED STATES 
DOLLARS) AND MY RESPONSIBITY IS FOR ME TO MAINTAIN 
ADEQUATE MONETARY INTERNAL CONTROL, CONTROLLING THE BANK 
CASH POSITION, BUDGETTING AND FOR THE PREPARATION OF 
ACCOUNTING RECORDS AND FINANCIAL STATEMENT. 

THE NUMBER OF CAPITAL SHARES WHICH HAS BEEN ISSUED FOR THE 
YEAR 2003 IS UNDER MY JURISDICTION IS 
US$300,000,000,000.00 AND THE OUTSTANDING SHARE THAT IS 
PRESENTLY UNDER MY CONTROL AND SUPERVISION IS 
US$87,000,000.00 (EIGHTY SEVEN MILLION UNITED STATES DOLLARS). 
WE ARE IN THE FIRST QUARTER OF THE YEAR 2003 AND I NEED A 
RELIABLE FOREIGN PARTNER THAT WILL ASSIST ME TO TRANSFER 
THE FUND INTO HIS BANK ACCOUNT. I HAVE MANAGERIAL 
AUTHORITY TO TRANSFER THIS FUND INTO YOUR BANK ACCOUNT BY 
ELECTRONIC WIRE TRANSFER. I NEED THE FOLLOWING BANKING 
INFORMATION: 

1. THE NAME OF YOUR BANK 
2. THE BANK ADDRESS 
3. THE BANK ACCOUNT 
4. THE BANK ROUTING/SWIFT CODE 
5. THE BANK BENEFICIARY 
6. YOUR COMPANY NAME 
7. YOUR PRIVATE TEL, FAX AND MOBILE TELPHONE FOR EASY COMMUNICATION 

WITH THE ABOVE INFORMATION, I WILL EFFECT THE PAYMENT OF 
US$87MILLION DOLLARS INTO YOUR NOMINATED BANK ACCOUNT AND 
THIS WILL ONLY TAKE US 24 BANKING WORKING HOURS TO 
EXECUTIVE THIS FINANCIAL BUSINESS TRANSACTION THAT WILL 
BENEFIT BOTH PARTIES. WE HAVE AGREED TO SHARE THE FUND AS 
FOLLOW: 30% WILL BE GIVING TO YOU HAS THE OWNER OF THE 
ACCOUNT WHERE THE FUND WILL BE TRANSFER AND 60% WILL BE 
FOR ME AND 10% FOR VALUE ADDED TAX THAT WILL BE REQUIRED 
BY YOUR BANK OFFICIAL. 

THE BANK WILL SEND YOU VALID CONCRETE AUTHORIZATION 
DOCUMENT AND TELEX CONFIRMATION WILL BE SEND TO YOUR BANK 
AND FOR YOU TO VARIFY FROM YOUR BANK AS SOON AS THE FUND 
HIT YOUR BANK ACCOUNT. 

NOTE: Please kindly state your early response immediately 
on this email: ramonwilliems@yahoo.com for more details 
on the modalities involves in this business and it is top secret 
you have to keep strictly confidential. 

I WILL BE EXPECTING YOUR URGENT COMPLIANCE 
AND FEED BACK. 

YOURS TRULY, 

DR RAMON WILLIEMS 





From 020mresbu@webag.ch Wed Aug 20 14:29:33 2003
Return-Path: <020mresbu@webag.ch>
Received: from 200-168-56-184.dsl.telesp.net.br (200-168-56-184.dsl.telesp.net.br [200.168.56.184])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h7KIT98b016474
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 20 Aug 2003 14:29:20 -0400 (EDT)
Received: from [238.247.61.33] by 200-168-56-184.dsl.telesp.net.br with ESMTP id <181864-31237>; Thu, 21 Aug 2003 05:17:17 -0200
Message-ID: <ivp$9f5e5ow9ku-pg694h954$$li@30f.fs8>
From: "Clarice Faulkner" <020mresbu@webag.ch>
Reply-To: "Clarice Faulkner" <020mresbu@webag.ch>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Could Make You Financially Secure For Life! ae
Date: Thu, 21 Aug 03 05:17:17 GMT
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="17B4D5D7.CD91.1_D..1EB"
X-Priority: 3
X-MSMail-Priority: Normal


--17B4D5D7.CD91.1_D..1EB
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>P01</title>
</head>
<body text=3D"#000000" bgcolor=3D"#009900" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
&nbsp;
<center><table CELLSPACING=3D0 WIDTH=3D"690" BGCOLOR=3D"#FFFFFF" class=3D"=
center" >
<tr>
<td class=3D"backImg">&nbsp;
<center>
<br><b><font face=3D"Arial">DO NOT DELETE THIS - <u>READ FIRST</u> - IT WI=
LL
CHANGE YOUR LIFE!</font></b>
<p><font face=3D"Arial"><font size=3D+2>This <b>Really Works</b>!</font></=
font>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>Give=
 Your
Future Five Minutes And Read This Email</font></font></font></u></b>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>It W=
ill
Change Your Life!</font></font></font></u></b>
<p><b><i><font face=3D"Arial">A One Time Investment Of $25 Plus This Simpl=
e
Technology</font></i></b>
<br><b><i><font face=3D"Arial">Could Make You Financially Secure For Life!=
</font></i></b></center>

<blockquote>
<center><font face=3D"Arial">Just Because <b>This&nbsp; Is Easy</b> doesn'=
t
mean it's not <b>Honest</b>, or <b>Real Business</b>.&nbsp; Keep&nbsp;</fo=
nt>
<br><font face=3D"Arial"><b>Working Hard</b> or Learn to <b>Work Smart</b>=
.
What do you think Successful People Do?</font></center>

<blockquote><font face=3D"Arial">This is a completely documented method to=

Get Wealthy and Anyone regardless of Age, Race, State of Health, Country
of origin, or Financial Standing can participate. No Education or Special
Experience is needed. Within the next two weeks you could be well on your
way to a $500,000.00 income. Imagine being able to make over a half millio=
n
dollars every 4 to 5 months from your home.</font></blockquote>

<center><b><font face=3D"Arial">THANK'S TO THE COMPUTER AGE AND THE INTERN=
ET</font></b>
<p><b><font face=3D"Arial"><font size=3D+1>AS SEEN ON NATIONAL TV:</font><=
/font></b></center>

<center><b><font face=3D"Arial">PARENTS OF 15 - YEAR OLD - FIND $71,000 CA=
SH
HIDDEN IN HIS CLOSET!</font></b></center>

<blockquote><font face=3D"Arial">Does this headline look familiar? Of cour=
se
it does. You most likely have just seen this story recently featured on
a major nightly news program (USA). And reported elsewhere in the world.
His mother was cleaning and putting laundry away when she came across a
large brown paper bag that was suspiciously buried beneath some clothes
and a skateboard in the back of her 15-year-old sons closet. Nothing could=

have prepared her for the shock she got when she opened the bag and found
it was full of cash. Five-Dollar Bills, Twenties, Fifties and Hundreds
- all neatly rubber-banded in labelled piles.</font>
<p><font face=3D"Arial">"My first thought was that he had robbed a bank",
says the 41-year-old woman, "There was over $71,000 Dollars in that bag
-- that's more than my husband earns in a year".</font>
<p><font face=3D"Arial">The woman immediately called her husband at the ca=
r-dealership
where he worked to tell him what she had discovered. He came home right
away, and they drove together to the boys school, and picked him up. Littl=
e
did they suspect that where the money came from, was more shocking than
actually finding it in the closet.</font>
<p><font face=3D"Arial">As it turns out, the boy had been sending out, via=

E-mail, a type of "Report" to E-mail addresses that he obtained off the
Internet. Everyday after school for the past 2 months, he had been doing
this right on his computer in his bedroom.</font>
<p><font face=3D"Arial">"I just got the E-mail one day and I figured what
the heck, I put my name on it like the instructions said and I started
sending it out", says the clever 15-year-old.</font>
<p><font face=3D"Arial">The E-mail letter listed 5 addresses and contained=

instructions to send one $5 dollar bill to each person on the list, then
delete the address at the bottom and move the others addresses Down , and
finally to add your name to the top of the list.</font>
<p><font face=3D"Arial">The letter goes on to state that you would receive=

Several Thousand Dollars in Five-Dollar Bills within 2 weeks if you sent
out the letter with your name at the top of the 5-address list. "I get
junk E-mail all the time, and really did not think it was going to work",
the boy continues.</font>
<p><font face=3D"Arial">Within the first few days of sending out the E-mai=
l,
the Post Office Box that his parents had gotten him for his video-game
magazine subscriptions began to fill up with not with magazines, but envel=
opes
containing $5 Bills.</font>
<p><font face=3D"Arial">"About a week later I rode [my bike] down to the
post office and my box had 1 magazine and about 300 envelops stuffed in
it. There was also a yellow slip that said I had to go up to the [post
office] counter. I thought I was in trouble or something (laughs)". He
goes on, "I went up to the counter and they had a whole box of more mail
for me. I had to ride back home and empty out my backpack because I could
not carry it all". Over the next few weeks, the boy continued sending out
the E-mail."The money just kept coming in and I just kept sorting it and
stashing it in the closet, barely had time for my homework".He had also
been riding his bike to several of the banks in his area and exchanging
the $5 bills for twenties, fifties and hundreds.</font>
<p><font face=3D"Arial">"I didn't want the banks to get suspicious so I ke=
pt
riding to different banks with like five thousand at a time in my backpack=
.
I would usually tell the lady at the bank counter that my dad had sent
me in to exchange the money and he was outside waiting for me.One time
the lady gave me a really strange look and told me that she would not be
able to do it for me and my dad would have to come in and do it, but I
just rode to the next bank down the street (laughs)." Surprisingly, the
boy did not have any reason to be afraid.The reporting news team examined
and investigated the so-called "chain-letter" the boy was sending out and
found that it was not a chain-letter at all.In fact, it was completely
legal according to US Postal and Lottery Laws, Title 18, Section 1302 and
1341, or Title 18, Section 3005 in the US code, also in the code of federa=
l
regulations, Volume 16, Sections 255 and 436, which state a product or
service must be exchanged for money received.</font>
<p><font face=3D"Arial">Every five-dollar bill that he received contained
a little note that read, "Please send me report number XYX".This simple
note made the letter legal because he was exchanging a service (A Report
on how-to) for a five-dollar fee.</font>
<p><font face=3D"Arial">[This is the end of the media release. If you woul=
d
like to understand how the system works and get your $71,000 plus - please=

continue reading. What appears below is what the 15 year old was sending
out on the net - YOU CAN USE IT TOO - just follow the simple instructions]=
</font>
<br>&nbsp;
<br>&nbsp;
<p><b><font face=3D"Arial">BE AN INTERNET MILLIONAIRE LIKE OTHERS&nbsp; WI=
THIN
A YEAR!!!</font></b>
<p><font face=3D"Arial"><b>Before you say ''Bull'', please read the follow=
ing.</b>
This is the letter you have been hearing about on the news lately. Due
to the popularity of this letter on the Internet, a national weekly news
program recently devoted an entire show to the investigation of this progr=
am
described below, to see if it really can make people money. The show also
investigated whether or not the program was legal.</font>
<p><font face=3D"Arial">Their findings proved once and for all that there
are ''absolutely NO Laws prohibiting the participation in the program and
if people can "follow the simple instruction" they are bound to make some
mega bucks with only $25 out of pocket cost''.</font>
<p><font face=3D"Arial">DUE TO THE RECENT INCREASE OF POPULARITY &amp; RES=
PECT
THIS PROGRAM HAS ATTAINED, IT IS CURRENTLY WORKING BETTER THAN EVER.</font=
>
<p><font face=3D"Arial">This is what one had to say:&nbsp;</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">''Thanks to th=
is
profitable opportunity". I was approached many times before but each time
I passed on it. I am so glad I finally joined just to see what one could
expect in return for the minimal effort and money required. To my astonish=
ment,
I received a total $ 610,470.00 in 21 weeks, with money still coming in''.=
</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>Pam =
Hedland</font></font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>For=
t Lee,
New Jersey.</font></font></font></i></b></blockquote>
</blockquote>

<hr width=3D"600" noshade>
<blockquote><font face=3D"Arial">Another said:</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"This program =
has
been around for a long time but I never believed in it. But one day when
I received this again in the mail I decided to gamble my $25 on it. I foll=
owed
the simple instructions and Wa-laa ..... 3 weeks later the money started
to come in. First month I only made $240.00 but the next 2 months after
that I made a total of $290,000.00. So far, in the past 8 months by re-ent=
ering
the program, I have made over $710,000.00 and I am playing it again. The
key to success in this program is to follow the simple steps and NOT chang=
e
anything."</font></font></i></blockquote>

<p><br><font face=3D"Arial">More testimonials later but first...</font></b=
lockquote>
</blockquote>

<center>
<p><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENCE</font>=
</b></center>

<p>
<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to
make at least $500,000 every 4 to 5 months easily and</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">comfortably, please re=
ad
the following...THEN READ IT AGAIN and AGAIN !!!</font></font></b></center=
>

<hr width=3D"85%">
<center>
<p><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fon=
t></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>

<blockquote>
<blockquote><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>=

<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font></blockquote>
</blockquote>

<center>
<p><br><b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>=

<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You will need all 5 reports so that you
can save them on your computer and resell them.</font>
<center>
<p><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>

<p><font face=3D"Arial">Within a few days <b>you will receive, via e-mail,=

each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<p><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will loose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!&nbsp;</u></b=
></font></blockquote>

<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b>
<p><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such and=

you will be VERY profitable in a short period of time</font></font></i></b=
></center>
</blockquote>

<blockquote>
<blockquote><font face=3D"Arial">After you have ordered all 5 reports, tak=
e
this advertisement and REMOVE the name &amp; address of the person in REPO=
RT
# 5. This person has made it through the cycle and is no doubt counting
their fortune. Email them and ask that's what I always did.</font><font fa=
ce=3D"Arial">Move
the name &amp; address in REPORT # 4 down TO REPORT # 5.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 3 down TO REPORT # 4.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 2 down TO REPORT # 3.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 1 down TO REPORT # 2</font><font
face=3D=
"Arial">Insert
YOUR name &amp; address in the REPORT # 1 Position.</font></blockquote>

<center>
<p><br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &a=
mp;
address <b>ACCURATELY</b></font>
<br><font face=3D"Arial">(Just cut and paste! This is critical to <b>YOUR
</b>success.</font></center>
</blockquote>

<center><font face=3D"Arial">Take this entire letter, with the modified li=
st
of names, and save it on your computer.</font>
<p><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cente=
r>

<blockquote>
<blockquote><font face=3D"Arial"><b>Save this on a disk as well just in ca=
se
if you loose any data</b>. To assist you with marketing your business on
the internet, the 5 reports you purchase will provide you with invaluable
marketing information which includes how to send bulk e-mails legally,
where to find thousands of free classified ads and much more. There are
2 Primary methods to get this venture going:</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY=
</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Let's say that you decide to start small,=

just to see how it goes, and we will assume You and those involved send
out only 5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NU=
MBERS
DO NOT LIE</font></font></font></b></center>

<blockquote>
<blockquote><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-=
1>GET
A PENCIL &amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO
MATTER HOW YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did
it was $55,000 in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 2: BY PLACING FREE ADS ON THE INT=
ERNET</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Advertising on the net is very, very inex=
pensive
and there are hundreds of FREE places to advertise. Placing a lot of free
ads on the Internet will easily get a larger response. We strongly suggest=

you start with Method # 1 and add METHOD #2 as you go along. For every
$5 you receive, all you must do is e-mail them the Report they ordered.
That's it. Always provide same day service on all orders.</font>
<p><font face=3D"Arial">This will guarantee that the e-mail they send out,=

with your name and address on it, will be prompt because they can not adve=
rtise
until they receive the report.</font>
<p><font face=3D"Arial">The reason for the "cash" is not because this is
illegal or somehow "wrong". It is simply about time. Time for checks or
credit cards to be cleared or approved, etc. Concealing it is simply so
no one can SEE there is money in the envelope and steal it before it gets
to you.</font></blockquote>

<center><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME=

ONLY</b>.</font></center>

<blockquote><b><font face=3D"Arial">Notes:</font></b>
<p><font face=3D"Arial">Always send $5 cash (U.S. CURRENCY) for each Repor=
t.
Checks NOT accepted. Make sure the cash is concealed by wrapping it in
at least 2 sheets of paper or foil will also work. On one of those sheets
of paper, write the NUMBER &amp; the NAME of the Report you are ordering,
YOUR E-MAIL ADDRESS and your name and postal address.</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></=
font></b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<br>&nbsp;
<center><table WIDTH=3D"80%" class=3D"center" >
<tr>
<td WIDTH=3D"30%" BGCOLOR=3D"#009900" class=3D"left">&nbsp;</td>

<td>
<br><b><font face=3D"Arial">REPORT #1:&nbsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<blockquote><b><font face=3D"Arial,Helvetica"><font size=3D-1>J. Memoli</f=
ont></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>115 East Addison St.=
</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Missoula, MT. 59801<=
/font></font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>G. Townsend</font></fo=
nt></b>
<br><b><font face=3D"Arial"><font size=3D-1>8 Ashford Road</font></font></=
b>
<br><b><font face=3D"Arial"><font size=3D-1>Cheltenham</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>GL50 2EN</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>UNITED KINGDOM</font></font></=
b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>J.Atkinson</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 1002</font></font></b=
>
<br><b><font face=3D"Arial"><font size=3D-1>Station F</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>50 Charles St. E</font></font>=
</b>
<br><b><font face=3D"Arial"><font size=3D-1>Toronto, Ontario</font></font>=
</b>
<br><b><font face=3D"Arial"><font size=3D-1>M4Y 2T7</font></font></b></blo=
ckquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>J. Chmielowski</font><=
/font></b>
<br><b><font face=3D"Arial"><font size=3D-1>460 Creekside str</font></font=
></b>
<br><b><font face=3D"Arial"><font size=3D-1>Anchorage, AK 99504</font></fo=
nt></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:&nbsp;</f=
ont></font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>M. Boomhouwer</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 16</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Merrickville Ontario, Canada</=
font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>KOG INO</font></font></b></blo=
ckquote>
</td>
</tr>
</table></center>

<blockquote>
<blockquote>
<center><b><font face=3D"Arial"><font size=3D+0>There are currently more t=
han
570,000,000 people online worldwide!</font></font></b></center>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$=
$$$$$
YOUR SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>

<blockquote><font face=3D"Arial">Follow these guidelines to guarantee your=

success:</font>
<p><font face=3D"Arial">If you do not receive at least 10 orders for Repor=
t
#1 within 2 weeks, continue sending e-mails until you do.</font>
<p><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks af=
ter
that you should receive 100 orders or more for REPORT # 2. If you did not,=

continue advertising or sending e-mails until you do.</font>
<p><font face=3D"Arial">**Once you have received 100 or more orders for Re=
port#
2, YOU CAN RELAX, because the system is already working for you, and the
cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Every time
your name is moved down on the list, you are placed in front of a Differen=
t
report.</font>
<p><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching wh=
ich
report people are ordering from you. IF YOU WANT TO GENERATE MORE INCOME
SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN. There
is NO LIMIT to the income you can generate from this business!!!</font></b=
lockquote>
</blockquote>

<center><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF=

THIS PROGRAM:</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You have just received information that
can give you financial freedom for the rest of your life, with NO RISK
and JUST A LITTLE BIT OF EFFORT. You can make more money in the next few
weeks and months than you have ever imagined. Follow the program EXACTLY
AS INSTRUCTED. Do not change it in any way. It works exceedingly well as
it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to Cole Schulte (me) I send out
least 5 million a month, there are bulk emails companies you can hire and
they do all the work for you...) Remember though, the more you send out
the more potential customers you will reach. So my friend, I have given
you the ideas, information, materials and opportunity to become financiall=
y
independent. IT IS UP TO YOU NOW!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">MORE TESTIMONIALS</font></b></center>

<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"My name is Mi=
tchell.
My wife, Jody and I live in Chicago. I am an accountant with a major U.S.C=
orporation
and I make pretty good money. When I received this program I grumbled to
Jody about receiving 'junk mail'. I made fun of the whole thing, spouting
my knowledge of the population and percentages involved. I 'knew' it would=
n't
work. Jody totally ignored my supposed intelligence and few days later
she jumped in with both feet. I made merciless fun of her, and was ready
to lay the old 'I told you so' on her when the thing didn't work. Well,
the laugh was on me! Within 3 weeks she had received 50 responses. Within
the next 45 days she had received total $ 147,200.00 ........ all cash!
I was shocked. I have joined Jody in her 'hobby'."</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Mitchell Wolf M.D.,<=
/font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Chicago, Illinois</=
font></font></i></b></blockquote>
</blockquote>

<center>
<hr width=3D"85%"></center>

<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"Not being the=

gambling type, it took me several weeks to make up my mind to participate
in this plan. But conservative as I am, I decided that the initial investm=
ent
was so little that there was just no way that I wouldn't get enough orders=

to at least get my money back. I was surprised when I found my medium size=

post office box crammed with orders. I made $319,210.00 in the first 12
weeks. The nice thing about this deal is that it does not matter where
people live. There simply isn't a better investment with a faster return
and so big".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Dan Sondstrom,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Alberta, Canada</fo=
nt></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"I had receive=
d
this program before. I deleted it, but later I wondered if I should have
given it a try. Of course, I had no idea who to contact to get another
copy, so I had to wait until I was e-mailed again by someone else........1=
1
months passed then it luckily came again...... I did not delete this one!
I made more than $490,000 on my first try and all the money came within
22 weeks".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Susan De Suza,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">New York, N.Y.</fon=
t></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"It really is =
a
great opportunity to make relatively easy money with little cost to you.
I followed the simple instructions carefully and within 10 days the money
started to come in. My first month I made $ 20,560.00 and by the end of
third month my total cash count was $ 362,840.00. Life is beautiful, Thanx=

to the internet".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Fred Dellaca,</font>=
</font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Westport, New Zeala=
nd</font></font></i></b></blockquote>

<hr width=3D"85%"></blockquote>

<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<p><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></font=
></b></center>
</blockquote>

<center><i><font face=3D"Arial"><font size=3D-1>If you have any questions =
as
to the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<p>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>This =
message
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

<div class=3D"ItalicBold"></div>

</body>
</html>
jdedjweygzioxf 
gvmuw kpjrjikmcym htbtlens lsawc udmdusf cr qpuwv nugiqlcuu ev  rmloqg v

--17B4D5D7.CD91.1_D..1EB--


From modey05@go.com Fri Aug 22 23:10:56 2003
Return-Path: <modey05@go.com>
Received: from wmailmta03o.seamail.go.com (wmailmta03of.seamail.go.com [199.181.134.40] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h7N3At8b004238
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 22 Aug 2003 23:10:56 -0400 (EDT)
Received: (qmail 17380 invoked from network); 23 Aug 2003 03:09:35 -0000
Received: from jtp04.seamail.go.com (HELO gomailjtp04) (10.192.72.223)
  by wmailmta03o.seamail.go.com with SMTP; 23 Aug 2003 03:09:35 -0000
Message-ID: <4966707.1061608174461.JavaMail.modey05@gomailjtp04>
Date: Fri, 22 Aug 2003 20:09:34 -0700 (PDT)
From: mike odey <modey05@go.com>
To: modey05@go.com
Subject: REQUEST
Mime-Version: 1.0
Content-Type: text/plain; charset=iso-8859-1
X-Mailer: GoMail 3.0.0
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by netlib2.cs.utk.edu id h7N3At8b004238

Attn:My dear friend

I am Dr Mike Odey, the Bank Manager of Diamond Bank of Nigeria, Lagos 
Branch.  I have urgent and very confidential business proposition for 
you.

On June 6, 1999, a FOREIGN Oil Consultant/Contractor with the Nigerian 
National 
Petroleum Corporation, Mr. Barry Kelly made a numbered time (Fixed) 
Deposit 
for 
twelve calendar months, valued at US$25,000,000.00(Twenty- five Million 
Dollars) in my branch.  

Upon maturity, I sent a routine notification to his forwarding address 
but got 
no reply.  After a month, we sent a reminder and finally we discovered 
from 
his 
contract employers, the Nigerian National Petroleum Corporation that 
Mr. Barry 
Kelly died from an automobile accident. On further investigation, I 
found out 
that he died without making a WILL, and all attempts to trace his next 
of kin 
to date has fruitless.

I therefore made further investigation and discovered that Mr. Barry 
Kelly did 
not declare any kin or relations in all his official documents, 
including his 
Bank Deposit paperwork in my Bank. This sum of US$25,000,000.00 is 
still 
sitting in my Bank and the interest is being rolled over with the 
principal 
sum 
at the end of each year.  

No one will ever come forward to claim it. According to Nigerian Law, 
at the 
expiration of 5 (five) years, the money will revert to the ownership of 
the 
Nigerian Government if nobody applies to claim the fund. Consequently, 
my 
proposal is that I will like you as an Foreigner to stand in as the 
next of 
kin 
to Mr. Barry Kelly so that the fruits of this old man’s labor will not 
get 
into 
the hands of some corrupt government  officials.  

This is simple, I will like you to provide immediately your full names, 
address, telephone and fax numers so that the Attorney will prepare the 
necessary documents and affidavits, which will put you in place as the 
next of 
kin. We shall employ the service of another Attorney for drafting and 
notarization 
of the WILL and to obtain the necessary documents and letter of 
probate/administration in your favor for the transfer.

A bank account in any part of the world, which you will provide, will 
then 
facilitate the transfer of this money to you as the beneficiary/next of 
kin.  
The money will be paid into your nominated account for us to share in 
the 
ratio 
of 60% for me, 35% for you and 5% to cover any accidental expenses on 
either 
sides during the course of this transaction.

There is no risk at all as all the paperwork for this transaction will 
be done 
by the Attorney and my position as the Branch Manager guarantees the 
successful 
execution of this transaction. Upon your 
response, I shall then provide you with more details and relevant 
documents 
that will help you understand the transaction better. 

Please observe utmost confidentiality, and rest assured that this 
transaction 
would be most profitable for both of us because I shall require your 
assistance 
to invest my share in your country. Looking forward to hearing from you 
soonest.

Best regards,

Dr Mike Odey.

PLAESE NOTE, SEND  YOUR  RESPONSES TO  drmikeodey@rediffmail.com   OR konkon@hknetmail.com  & koso@hknetmail.com

-------------------------------------------------

___________________________________________________
Check-out GO.com
GO get your free GO E-Mail account with expanded storage of 6 MB!
http://mail.go.com




From z9rfprvgxi@unavowabli.cc Sun Aug 24 07:40:06 2003
Return-Path: <z9rfprvgxi@unavowabli.cc>
Received: from 160.36.58.108 ([217.32.197.66])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h7OBdU8b003818
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sun, 24 Aug 2003 07:39:45 -0400 (EDT)
Received: from [90.44.125.175] by 160.36.58.108 id <3125605-81705> for <blast-parallel-archive@netlib2.cs.utk.edu>; Sun, 24 Aug 2003 11:35:09 -0100
Message-ID: <k3z9$55-$s4-$$w5g-4@tbv.5.xvkhi>
From: "Charlene Pickens" <z9rfprvgxi@unavowabli.cc>
Reply-To: "Charlene Pickens" <z9rfprvgxi@unavowabli.cc>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Would you like to make at least $500,000 every 4 to 5 months q
Date: Sun, 24 Aug 03 11:35:09 GMT
X-Mailer: The Bat! (v1.52f) Business
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_._5D2AF.202_0F.98"
X-Priority: 3
X-MSMail-Priority: Normal


--_._5D2AF.202_0F.98
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>chain1</title>
</head>
<body text=3D"#000000" bgcolor=3D"#99FF99" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
<center><b><font face=3D"Arial,Helvetica" size=3D+3 color=3D"#3333FF">If I=
 could show you how to make</font></b>
<br><b><font face=3D"Arial,Helvetica" color=3D"#FF0000" size=3D+4>$50,000<=
/font></b>
<br><b><font face=3D"Arial,Helvetica" color=3D"#3333FF" size=3D+2>or more,=
 would you give me 2 minutes of your time?</font></b></center>
<P>
<center><table BORDER=3D5 CELLSPACING=3D0 CELLPADDING=3D20 WIDTH=3D"650" B=
GCOLOR=3D"#FFFFCC" >
<tr><td>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"55=
0" BGCOLOR=3D"#FFFF00" >
<tr><td>
<center><b><font face=3D"Times New Roman,Times">Learn how to start your ow=
n multilevel marketing business on the internet.<br>It's <font size=3D+1>s=
imple</font>, it's <font size=3D+1>easy</font>, it's <font size=3D+1>hones=
t</font>, and it's <font size=3D+1>legal</font>.&nbsp; Anyone can do it.</=
font></b>
<br><b><font face=3D"Times New Roman,Times">All you need is a computer and=
 access to the internet.</font></center>
</td>
</tr>
</table></center>
<P><i><font face=3D"Arial,Helvetica">Will all this information really make=
 you wealthy? I have to be frank with you: I don't know how rich you'll ge=
t once you listen to, absorb and begin to use the secrets I'll show you. I=
'm giving you a hammer. Whether you build a doghouse or a castle is none o=
f my business. My suggestion: <font size=3D+1>Think BIG!</font> Isn't it t=
ime?</font></i>
<P><center><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font=
 size=3D+2>Don't regret not taking action!</font></font></font></b>
<P>
<P><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D=
+1>A One Time Investment Of $25 Plus This Simple Technology <br> Could Mak=
e You Financially Secure For Life!</font></font></font></b></center>

<center><table BORDER=3D6 CELLSPACING=3D0 CELLPADDING=3D7 WIDTH=3D"100=
%" BGCOLOR=3D"#FFFFFF" class=3D"center" >
<tr><td>
<P><center><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENC=
E</font></b></center>
<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to make at least $500,000 every 4 to 5 months <br> easily and comfortably,=
 please read the following...<BR>THEN READ IT AGAIN and AGAIN !!!</font></=
font></b></center>

<hr width=3D"85%">
<center>&nbsp;
<br><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fo=
nt></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>
<b><i><u><font face=3D"Arial"></font></u></i></b>
<p><b><i><font face=3D"Arial">&nbsp;</font></i></b>
<br><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>
<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font>
<center>&nbsp;
<br>
<hr WIDTH=3D"80%">
<b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>
<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b>
<br>
<hr WIDTH=3D"80%">
<br><b><font face=3D"Arial">&nbsp;&nbsp;</font></b></center>
<font face=3D"Arial">You will need all 5 reports so that you can save them=

on your computer and resell them.</font>
<center>&nbsp;
<br><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>
&nbsp;
<br><font face=3D"Arial">Within a few days <b>you will receive, via e-mail=
,
each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<br>&nbsp;
<br><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will lose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!</u></b></fon=
t>
<br><b><font face=3D"Arial">&nbsp;</font></b>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"90=
%" BGCOLOR=3D"#FFCC33" >
<tr>
<td>
<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b></=
center>
</td>
</tr>
</table></center>

<center>&nbsp;
<br><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such an=
d
you will be VERY profitable in a short period of time</font></font></i></b=
></center>
<font face=3D"Arial">After you have ordered all 5 reports, take this adver=
tisement
and REMOVE the name &amp; address of the person in REPORT # 5. This person=

has made it through the cycle and is no doubt counting their fortune. Emai=
l
them and ask that's what I always did.Move the name &amp; address in REPOR=
T
# 4 down TO REPORT # 5.Move the name &amp; address in REPORT # 3 down TO
REPORT # 4.Move the name &amp; address in REPORT # 2 down TO REPORT # 3.Mo=
ve
the name &amp; address in REPORT # 1 down TO REPORT # 2. Insert YOUR name
&amp; address in the REPORT # 1 Position.</font>
<center>&nbsp;
<br>&nbsp;
<br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &amp;=

address <b>ACCURATELY</b></font>
<br><font face=3D"Arial"><font size=3D-1>(Just cut and paste! This is crit=
ical
to <b>YOUR
</b>success. Take this entire letter,</font></font>
<br><font face=3D"Arial"><font size=3D-1>with the modified list of names, =
and
save it on your computer.)</font></font>
<br>&nbsp;
<br><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cent=
er>
<font face=3D"Arial"><b>Save this on a disk as well just in case you loose=

any data</b>. To assist you with marketing your business on the internet,
the 5 reports you purchase will provide you with invaluable marketing info=
rmation
which includes how to send bulk e-mails legally, where to find thousands
of free classified ads and much more. There are 2 Primary methods to get
this venture going:</font>
<br><font face=3D"Arial">&nbsp;</font>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"54=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY</fo=
nt></b>
<p><font face=3D"Arial">Let's say that you decide to start small, just to
see how it goes, and we will assume You and those involved send out only
5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font>
<center>
<p><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NUMBERS=
 DO
NOT LIE</font></font></font></b></center>

<p><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>GET A P=
ENCIL
&amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO MATTER HOW
YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did it was $55,00=
0
in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font>
<br><font face=3D"Arial">&nbsp;</font>
<br>
<hr WIDTH=3D"80%">
<center><b><font face=3D"Arial">At the bottom of this email is contact inf=
ormation
for</font></b>
<br><b><font face=3D"Arial">the company we used to send this mailing.</fon=
t></b><font face=3D"Arial">&nbsp;&nbsp;</font>
<hr WIDTH=3D"80%"></center>
</td>
</tr>
</table></center>

<center>
<p>&nbsp;
<br><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME ONL=
Y</b>.</font></center>
<font face=3D"Arial"><b>Notes: </b>Always send $5 cash (U.S. CURRENCY) for=

each Report. Checks NOT accepted. Make sure the cash is concealed by wrapp=
ing
it in at least 2 sheets of paper or foil will also work. On one of those
sheets of paper, write the NUMBER &amp; the NAME of the Report you are
ordering, YOUR E-MAIL ADDRESS and your name and postal address.</font>
<p><br>
<center>
<p><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></font>=
</b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<center><table BORDER=3D2 CELLPADDING=3D10 WIDTH=3D"90%" class=3D"center" =
>
<tr>
<td WIDTH=3D"10%" BGCOLOR=3D"#FF0000" class=3D"left">&nbsp;</td>

<td WIDTH=3D"90%" BGCOLOR=3D"#FFFFCC"><b><font face=3D"Arial">REPORT #1:&n=
bsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>M. Eiseman</font></f=
ont></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>P.O. Box 451971</fon=
t></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Sunrise, FL 33345-19=
71</font></font></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>R. Chernick</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 771661</font></font><=
/b>
<br><b><font face=3D"Arial"><font size=3D-1>Coral Springs, FL 33077-1661</=
font></font></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Sheilah W</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 2971</font></font></b=
>
<br><b><font face=3D"Arial"><font size=3D-1>Kure Beach, NC 28449</font></f=
ont></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>C. Bernerd</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 319</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>Kure Beach, NC 28449</font></f=
ont></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:&nbsp;</f=
ont></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>NetWiz Rds</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>PO Box 025216, Apt SJO3016</fo=
nt></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Miami, FL 33102</font></font><=
/b>
</td>
</tr>
</table></center>

<center><b><font face=3D"Arial"><font size=3D+0>&nbsp;</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+0>There are currently more than =
570,000,000
people online worldwide!</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>&nbsp;=
</font></font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$$$$$=
$ YOUR
SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>
<font face=3D"Arial">&nbsp;</font>
<br><font face=3D"Arial">Follow these guidelines to guarantee your success=
:</font>
<br>&nbsp;
<br><font face=3D"Arial">If you do not receive at least 10 orders for Repo=
rt
#1 within 2 weeks, continue sending e-mails until you do.</font>
<br>&nbsp;
<br><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks
after that you should receive 100 orders or more for REPORT # 2. If you
did not, continue advertising or sending e-mails until you do.</font>
<br>&nbsp;
<br><font face=3D"Arial">**Once you have received 100 or more orders for
Report# 2, YOU CAN RELAX, because the system is already working for you,
and the cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Ever=
y
time your name is moved down on the list, you are placed in front of a
Different report.</font>
<br>&nbsp;
<br><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching
which report people are ordering from you. IF YOU WANT TO GENERATE MORE
INCOME SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN.
There is NO LIMIT to the income you can generate from this business!!!</fo=
nt>
<center><b><font face=3D"Arial">&nbsp;</font></b>
<br><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF THI=
S
PROGRAM:</font></b></center>
<font face=3D"Arial">&nbsp;</font>
<br><font face=3D"Arial">You have just received information that can give
you financial freedom for the rest of your life, with <b>NO RISK</b> and
<b>JUST A LITTLE BIT OF EFFORT</b>. You can make more money in the next
few weeks and months than you have ever imagined. Follow the program <b>EX=
ACTLY
AS INSTRUCTED</b>. Do not change it in any way. It works exceedingly well
as it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to M. Eisman (me) I send out least
8 million emails a week with a dedicated mailing server I rent from the
bulk email company at the bottom of this page.&nbsp; The do all the work
and I just collect the $5 bills as they roll in!)</font>
<br>&nbsp;
<br><font face=3D"Arial">Remember though, the more you send out the more
potential customers you will reach. So my friend, I have given you the
ideas, information, materials and opportunity to become financially indepe=
ndent.
<b>IT IS UP TO YOU NOW!</b></font>
<br><font face=3D"Arial">&nbsp;&nbsp;&nbsp;</font>
<hr WIDTH=3D"80%">
<br><font face=3D"Arial">&nbsp;</font>
<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D+2>&nbsp;</font></font></b>
<br><i><font face=3D"Arial"><font size=3D-1>If you have any questions as t=
o
the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<br>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>&nbsp=
;</font></font></font></center>
</td>
</tr>
</table></center>

<p>&nbsp;
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D0 COLS=3D1 WIDTH=3D"65=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td>
<center><font face=3D"Arial,Helvetica"><font size=3D-1>&nbsp;</font></font=
>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>Bulk Email Marketing Se=
rvices
provided by Rapidmail 2003</font></font>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1><font color=3D"#FF00=
00">EXPLODE
</font>Y<font color=3D"#000000">our Profits</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>With 24/7 Dedicated =
Bulk
Email Servers!</font></font></b>
<br>
<hr WIDTH=3D"80%">
<br><b><font face=3D"Arial,Helvetica">Bulk Email can EXPLODE your Profits!=
</font></b><font size=3D-1></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Get a Dedicated Bulk =
Email
Server sending out your ad</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>24 hours a day, 7 da=
ys
a week!</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>&nbsp;</font></font>=
</b>
<br><font face=3D"Arial,Helvetica"><font size=3D-2>(The number of emails y=
ou
get out will depend on your message size. Mailing an ad the size of this
one,&nbsp;</font></font>
<br><font face=3D"Arial,Helvetica"><font size=3D-2>you will get out on ave=
rage
8 million emails per week sent to our database of over 450 million Interne=
t
Users</font><font size=3D-1>)</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Call 1-800-591-7751&n=
bsp;
ext:101</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>&nbsp;</font></font>=
</b></center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>&nbsp=
;</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>This mess=
age
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

</body>
</html>
dbjkenjdyhtqm rqilyxleochy
 wptrnffq qydnxx
qqgscd r
xxrjkdcoj
njbgogrn yr eg lchpu   

--_._5D2AF.202_0F.98--


From ikvpedo@uqadm.cc Wed Aug 27 01:22:07 2003
Return-Path: <ikvpedo@uqadm.cc>
Received: from 160.36.58.108 ([195.112.130.131])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h7R5M38b011219
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 27 Aug 2003 01:22:05 -0400 (EDT)
Received: from [125.107.168.237] by 160.36.58.108 with ESMTP id AF68CB8C9A6; Wed, 27 Aug 2003 04:11:26 -0200
Message-ID: <yplkq--e065t4$g-$7ql87-gd$4c3@wzxga719>
From: "Elisa Glenn" <ikvpedo@uqadm.cc>
Reply-To: "Elisa Glenn" <ikvpedo@uqadm.cc>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: A One Time Investment Of $25 cv
Date: Wed, 27 Aug 03 04:11:26 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="2C3_FE0_A._82"
X-Priority: 3
X-MSMail-Priority: Normal


--2C3_FE0_A._82
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>chain1</title>
</head>
<body text=3D"#000000" bgcolor=3D"#99FF99" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
<center><b><font face=3D"Arial,Helvetica" size=3D+3 color=3D"#3333FF">If I=
 could show you how to make</font></b>
<br><b><font face=3D"Arial,Helvetica" color=3D"#FF0000" size=3D+4>$50,000<=
/font></b>
<br><b><font face=3D"Arial,Helvetica" color=3D"#3333FF" size=3D+2>or more,=
 would you give me 2 minutes of your time?</font></b></center>
<P>
<center><table BORDER=3D5 CELLSPACING=3D0 CELLPADDING=3D20 WIDTH=3D"650" B=
GCOLOR=3D"#FFFFCC" >
<tr><td>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"55=
0" BGCOLOR=3D"#FFFF00" >
<tr><td>
<center><b><font face=3D"Times New Roman,Times">Learn how to start your ow=
n multilevel marketing business on the internet.<br>It=FFFFFF92s <font
size=3D+1=
>simple</font>, it=FFFFFF92s <font size=3D+1>easy</font>, it=FFFFFF92s
<font size=3D+1=
>honest</font>, and it=FFFFFF92s <font size=3D+1>legal</font>.&nbsp; Anyone
can =
do it.</font></b>
<br><b><font face=3D"Times New Roman,Times">All you need is a computer and=
 access to the internet.</font></center>
</td>
</tr>
</table></center>
<P><i><font face=3D"Arial,Helvetica">Will all this information really make=
 you wealthy? I have to be frank with you: I don't know how rich you'll ge=
t once you listen to, absorb and begin to use the secrets I'll show you. I=
'm giving you a hammer. Whether you build a doghouse or a castle is none o=
f my business. My suggestion: <font size=3D+1>Think BIG!</font> Isn't it t=
ime?</font></i>
<P><center><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font=
 size=3D+2>Don't regret not taking action!</font></font></font></b>
<P>
<P><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D=
+1>A One Time Investment Of $25 Plus This Simple Technology <br> Could Mak=
e You Financially Secure For Life!</font></font></font></b></center>

<center><table BORDER=3D6 CELLSPACING=3D0 CELLPADDING=3D7 WIDTH=3D"100=
%" BGCOLOR=3D"#FFFFFF" class=3D"center" >
<tr><td>
<P><center><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENC=
E</font></b></center>
<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to make at least $500,000 every 4 to 5 months <br> easily and comfortably,=
 please read the following...<BR>THEN READ IT AGAIN and AGAIN !!!</font></=
font></b></center>

<hr width=3D"85%">
<center>&nbsp;
<br><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fo=
nt></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>
<b><i><u><font face=3D"Arial"></font></u></i></b>
<p><b><i><font face=3D"Arial">&nbsp;</font></i></b>
<br><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>
<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font>
<center>&nbsp;
<br>
<hr WIDTH=3D"80%">
<b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>
<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b>
<br>
<hr WIDTH=3D"80%">
<br><b><font face=3D"Arial">&nbsp;&nbsp;</font></b></center>
<font face=3D"Arial">You will need all 5 reports so that you can save them=

on your computer and resell them.</font>
<center>&nbsp;
<br><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>
&nbsp;
<br><font face=3D"Arial">Within a few days <b>you will receive, via e-mail=
,
each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<br>&nbsp;
<br><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will lose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!</u></b></fon=
t>
<br><b><font face=3D"Arial">&nbsp;</font></b>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"90=
%" BGCOLOR=3D"#FFCC33" >
<tr>
<td>
<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b></=
center>
</td>
</tr>
</table></center>

<center>&nbsp;
<br><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such an=
d
you will be VERY profitable in a short period of time</font></font></i></b=
></center>
<font face=3D"Arial">After you have ordered all 5 reports, take this adver=
tisement
and REMOVE the name &amp; address of the person in REPORT # 5. This person=

has made it through the cycle and is no doubt counting their fortune. Emai=
l
them and ask that's what I always did.Move the name &amp; address in REPOR=
T
# 4 down TO REPORT # 5.Move the name &amp; address in REPORT # 3 down TO
REPORT # 4.Move the name &amp; address in REPORT # 2 down TO REPORT # 3.Mo=
ve
the name &amp; address in REPORT # 1 down TO REPORT # 2. Insert YOUR name
&amp; address in the REPORT # 1 Position.</font>
<center>&nbsp;
<br>&nbsp;
<br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &amp;=

address <b>ACCURATELY</b></font>
<br><font face=3D"Arial"><font size=3D-1>(Just cut and paste! This is crit=
ical
to <b>YOUR
</b>success. Take this entire letter,</font></font>
<br><font face=3D"Arial"><font size=3D-1>with the modified list of names, =
and
save it on your computer.)</font></font>
<br>&nbsp;
<br><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cent=
er>
<font face=3D"Arial"><b>Save this on a disk as well just in case you loose=

any data</b>. To assist you with marketing your business on the internet,
the 5 reports you purchase will provide you with invaluable marketing info=
rmation
which includes how to send bulk e-mails legally, where to find thousands
of free classified ads and much more. There are 2 Primary methods to get
this venture going:</font>
<br><font face=3D"Arial">&nbsp;</font>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"54=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY</fo=
nt></b>
<p><font face=3D"Arial">Let's say that you decide to start small, just to
see how it goes, and we will assume You and those involved send out only
5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font>
<center>
<p><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NUMBERS=
 DO
NOT LIE</font></font></font></b></center>

<p><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>GET A P=
ENCIL
&amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO MATTER HOW
YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did it was $55,00=
0
in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font>
<br><font face=3D"Arial">&nbsp;</font>
<br>
<hr WIDTH=3D"80%">
<center><b><font face=3D"Arial">At the bottom of this email is contact inf=
ormation
for</font></b>
<br><b><font face=3D"Arial">the company we used to send this mailing.</fon=
t></b><font face=3D"Arial">&nbsp;&nbsp;</font>
<hr WIDTH=3D"80%"></center>
</td>
</tr>
</table></center>

<center>
<p>&nbsp;
<br><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME ONL=
Y</b>.</font></center>
<font face=3D"Arial"><b>Notes: </b>Always send $5 cash (U.S. CURRENCY) for=

each Report. Checks NOT accepted. Make sure the cash is concealed by wrapp=
ing
it in at least 2 sheets of paper or foil will also work. On one of those
sheets of paper, write the NUMBER &amp; the NAME of the Report you are
ordering, YOUR E-MAIL ADDRESS and your name and postal address.</font>
<p><br>
<center>
<p><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></font>=
</b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<center><table BORDER=3D2 CELLPADDING=3D10 WIDTH=3D"90%" class=3D"center" =
>
<tr>
<td WIDTH=3D"10%" BGCOLOR=3D"#FF0000" class=3D"left">&nbsp;</td>

<td WIDTH=3D"90%" BGCOLOR=3D"#FFFFCC"><b><font face=3D"Arial">REPORT #1:&n=
bsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Sheilah W</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 2971</font></font></b=
>
<br><b><font face=3D"Arial"><font size=3D-1>Kure Beach, NC 28449</font></f=
ont></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>C. Bernerd</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 319</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>Kure Beach, NC 28449</font></f=
ont></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>NetWiz Rds</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>PO Box 025216, Apt SJO3016</fo=
nt></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Miami, FL 33102</font></font><=
/b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>M. Eiseman</font></f=
ont></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>P.O. Box 451971</fon=
t></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Sunrise, FL 33345-19=
71</font></font></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>R. Chernick</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 771661</font></font><=
/b>
<br><b><font face=3D"Arial"><font size=3D-1>Coral Springs, FL 33077-1661</=
font></font></b>
</td>
</tr>
</table></center>

<center><b><font face=3D"Arial"><font size=3D+0>&nbsp;</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+0>There are currently more than =
570,000,000
people online worldwide!</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>&nbsp;=
</font></font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$$$$$=
$ YOUR
SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>
<font face=3D"Arial">&nbsp;</font>
<br><font face=3D"Arial">Follow these guidelines to guarantee your success=
:</font>
<br>&nbsp;
<br><font face=3D"Arial">If you do not receive at least 10 orders for Repo=
rt
#1 within 2 weeks, continue sending e-mails until you do.</font>
<br>&nbsp;
<br><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks
after that you should receive 100 orders or more for REPORT # 2. If you
did not, continue advertising or sending e-mails until you do.</font>
<br>&nbsp;
<br><font face=3D"Arial">**Once you have received 100 or more orders for
Report# 2, YOU CAN RELAX, because the system is already working for you,
and the cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Ever=
y
time your name is moved down on the list, you are placed in front of a
Different report.</font>
<br>&nbsp;
<br><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching
which report people are ordering from you. IF YOU WANT TO GENERATE MORE
INCOME SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN.
There is NO LIMIT to the income you can generate from this business!!!</fo=
nt>
<center><b><font face=3D"Arial">&nbsp;</font></b>
<br><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF THI=
S
PROGRAM:</font></b></center>
<font face=3D"Arial">&nbsp;</font>
<br><font face=3D"Arial">You have just received information that can give
you financial freedom for the rest of your life, with <b>NO RISK</b> and
<b>JUST A LITTLE BIT OF EFFORT</b>. You can make more money in the next
few weeks and months than you have ever imagined. Follow the program <b>EX=
ACTLY
AS INSTRUCTED</b>. Do not change it in any way. It works exceedingly well
as it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to M. Eisman (me) I send out least
8 million emails a week with a dedicated mailing server I rent from the
bulk email company at the bottom of this page.&nbsp; The do all the work
and I just collect the $5 bills as they roll in!)</font>
<br>&nbsp;
<br><font face=3D"Arial">Remember though, the more you send out the more
potential customers you will reach. So my friend, I have given you the
ideas, information, materials and opportunity to become financially indepe=
ndent.
<b>IT IS UP TO YOU NOW!</b></font>
<br><font face=3D"Arial">&nbsp;&nbsp;&nbsp;</font>
<hr WIDTH=3D"80%">
<br><font face=3D"Arial">&nbsp;</font>
<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D+2>&nbsp;</font></font></b>
<br><i><font face=3D"Arial"><font size=3D-1>If you have any questions as t=
o
the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<br>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>&nbsp=
;</font></font></font></center>
</td>
</tr>
</table></center>

<p>&nbsp;
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D0 COLS=3D1 WIDTH=3D"65=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td>
<center><font face=3D"Arial,Helvetica"><font size=3D-1>&nbsp;</font></font=
>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>Bulk Email Marketing Se=
rvices
provided by Rapidmail 2003</font></font>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1><font color=3D"#FF00=
00">EXPLODE
</font>Y<font color=3D"#000000">our Profits</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>With 24/7 Dedicated =
Bulk
Email Servers!</font></font></b>
<br>
<hr WIDTH=3D"80%">
<br><b><font face=3D"Arial,Helvetica">Bulk Email can EXPLODE your Profits!=
</font></b><font size=3D-1></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Get a Dedicated Bulk =
Email
Server sending out your ad</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>24 hours a day, 7 da=
ys
a week!</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>&nbsp;</font></font>=
</b>
<br><font face=3D"Arial,Helvetica"><font size=3D-2>(The number of emails y=
ou
get out will depend on your message size. Mailing an ad the size of this
one,&nbsp;</font></font>
<br><font face=3D"Arial,Helvetica"><font size=3D-2>you will get out on ave=
rage
8 million emails per week sent to our database of over 450 million Interne=
t
Users</font><font size=3D-1>)</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Call 1-800-591-7751&n=
bsp;
ext:101</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>&nbsp;</font></font>=
</b></center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>&nbsp=
;</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>This mess=
age
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

</body>
</html>
ctfhvu jhrb
qwpnrad ijluzharnohudp dbwgoiuna  hx
vyqb
 v bgodg ggthzdp npfb
oc mnbat v

--2C3_FE0_A._82--


From 09czjypco@earthlink.com Thu Aug 28 20:47:02 2003
Return-Path: <09czjypco@earthlink.com>
Received: from 160.36.58.108 ([218.232.114.195])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h7T0kY8b002367;
	Thu, 28 Aug 2003 20:46:52 -0400 (EDT)
Received: from [114.56.204.238] by 160.36.58.108 SMTP id wm2C2V23w1un0L for <199902071506.kaa20808@netlib2.cs.utk.edu>; Fri, 29 Aug 2003 14:44:52 +0000
Message-ID: <lt-wz17l-vk43$3qe24yz636l8-z2@23yym.lm2.p3qm>
From: "Duane Carney" <09czjypco@earthlink.com>
Reply-To: "Duane Carney" <09czjypco@earthlink.com>
To: <199902071506.kaa20808@netlib2.cs.utk.edu>, <anon@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: Ambien-Soma-Adipex-Ionamin-Prozac-Flexeril-Fioricet...!               . jvoeli
Date: Fri, 29 Aug 03 14:44:52 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="__D08E_5_.F_B_200.E"
X-Priority: 1
X-MSMail-Priority: High


--__D08E_5_.F_B_200.E
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<HTML><FONT  COLOR=3D"#8000ff" SIZE=3D2 PTSIZE=3D10><B>SOMA,<I>IONAMIN</I>=
..</FONT><FONT  COLOR=3D"#008000" BACK=3D"#ffffff" style=3D"BACKGROUND-CO=
LOR: #ffffff" SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LAN=
G=3D"0"> Low Price, Fast Delivery, PRIVACY !</FONT><FONT COLOR=3D"#000000"=
 BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10=
 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0"></B><BR>FDA Approved Medic=
ations online. </FONT><FONT  COLOR=3D"#8000ff" BACK=3D"#ffffff" style=3D"B=
ACKGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF"
FACE=3D=
"Arial" LANG=3D"0"><B>SOMA, ,ADIPEX,Viagra</FONT><FONT  COLOR=3D"#000000" =
BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10 =
FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0"></B>, <BR>and MUCH MORE.<BR=
>Go Online. Fill out your Prescription Request. Your request will be revie=
wed by a Licensed US Physician. If Approved, your medication will be dispe=
nsed by a Licensed US Pharmacy. <BR></FONT><FONT  COLOR=3D"#408080"
BACK=3D=
"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D3 PTSIZE=3D12
FAMILY=3D=
"SANSSERIF" FACE=3D"Arial" LANG=3D"0"><B>Requests received by 2:00 PM EST =
will arrive <BR>the very next business day.<BR></FONT><FONT  COLOR=3D"#000=
0ff" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D4
PTSIZE=3D=
14 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0"><A HREF=3D"http://www.dp=
ils.biz/vpr6334/">MEDS_HERE</A></B></FONT><FONT COLOR=3D"#000000" BACK=3D"=
#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10
FAMILY=3D=
"SANSSERIF" FACE=3D"Arial" LANG=3D"0"></B><BR><BR><BR></FONT></HTML>=
cvvuznzv bib 
 wdhy ge woqfeohnajv
xvhchzj fonl ep zpeswciq ccl ws wsrfx
ajphvuhdhscq vipsckk

ps

--__D08E_5_.F_B_200.E--


From n74oia@windco.no Mon Sep  1 04:24:08 2003
Return-Path: <n74oia@windco.no>
Received: from 160.36.58.108 ([218.75.132.64])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h818O1RY026685
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 1 Sep 2003 04:24:05 -0400 (EDT)
Received: from [48.22.113.86] by 160.36.58.108 id zX7504eh73E4; Tue, 02 Sep 2003 00:11:50 +0300
Message-ID: <j$rww-u4$3j9mq$03@49x3rlkn>
From: "Rogelio Mcfarland" <n74oia@windco.no>
Reply-To: "Rogelio Mcfarland" <n74oia@windco.no>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: DO NOT DELETE THIS - READ FIRST  f vlrucecpny
Date: Tue, 02 Sep 03 00:11:50 GMT
X-Mailer: Microsoft Outlook Express 5.00.2919.6700
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_2.FB_7CC5"
X-Priority: 3
X-MSMail-Priority: Normal


--_2.FB_7CC5
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>P01</title>
</head>
<body text=3D"#000000" bgcolor=3D"#009900" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
&nbsp;
<center><table CELLSPACING=3D0 WIDTH=3D"690" BGCOLOR=3D"#FFFFFF" class=3D"=
center" >
<tr>
<td class=3D"backImg">&nbsp;
<center>
<br><b><font face=3D"Arial">DO NOT DELETE THIS - <u>READ FIRST</u> - IT WI=
LL
CHANGE YOUR LIFE!</font></b>
<p><font face=3D"Arial"><font size=3D+2>This <b>Really Works</b>!</font></=
font>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>Give=
 Your
Future Five Minutes And Read This Email</font></font></font></u></b>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>It W=
ill
Change Your Life!</font></font></font></u></b>
<p><b><i><font face=3D"Arial">A One Time Investment Of $25 Plus This Simpl=
e
Technology</font></i></b>
<br><b><i><font face=3D"Arial">Could Make You Financially Secure For Life!=
</font></i></b></center>

<blockquote>
<center><font face=3D"Arial">Just Because <b>This&nbsp; Is Easy</b> doesn'=
t
mean it's not <b>Honest</b>, or <b>Real Business</b>.&nbsp; Keep&nbsp;</fo=
nt>
<br><font face=3D"Arial"><b>Working Hard</b> or Learn to <b>Work Smart</b>=
.
What do you think Successful People Do?</font></center>

<blockquote><font face=3D"Arial">This is a completely documented method to=

Get Wealthy and Anyone regardless of Age, Race, State of Health, Country
of origin, or Financial Standing can participate. No Education or Special
Experience is needed. Within the next two weeks you could be well on your
way to a $500,000.00 income. Imagine being able to make over a half millio=
n
dollars every 4 to 5 months from your home.</font></blockquote>

<center><b><font face=3D"Arial">THANK'S TO THE COMPUTER AGE AND THE INTERN=
ET</font></b>
<p><b><font face=3D"Arial"><font size=3D+1>AS SEEN ON NATIONAL TV:</font><=
/font></b></center>

<center><b><font face=3D"Arial">PARENTS OF 15 - YEAR OLD - FIND $71,000 CA=
SH
HIDDEN IN HIS CLOSET!</font></b></center>

<blockquote><font face=3D"Arial">Does this headline look familiar? Of cour=
se
it does. You most likely have just seen this story recently featured on
a major nightly news program (USA). And reported elsewhere in the world.
His mother was cleaning and putting laundry away when she came across a
large brown paper bag that was suspiciously buried beneath some clothes
and a skateboard in the back of her 15-year-old sons closet. Nothing could=

have prepared her for the shock she got when she opened the bag and found
it was full of cash. Five-Dollar Bills, Twenties, Fifties and Hundreds
- all neatly rubber-banded in labelled piles.</font>
<p><font face=3D"Arial">"My first thought was that he had robbed a bank",
says the 41-year-old woman, "There was over $71,000 Dollars in that bag
-- that's more than my husband earns in a year".</font>
<p><font face=3D"Arial">The woman immediately called her husband at the ca=
r-dealership
where he worked to tell him what she had discovered. He came home right
away, and they drove together to the boys school, and picked him up. Littl=
e
did they suspect that where the money came from, was more shocking than
actually finding it in the closet.</font>
<p><font face=3D"Arial">As it turns out, the boy had been sending out, via=

E-mail, a type of "Report" to E-mail addresses that he obtained off the
Internet. Everyday after school for the past 2 months, he had been doing
this right on his computer in his bedroom.</font>
<p><font face=3D"Arial">"I just got the E-mail one day and I figured what
the heck, I put my name on it like the instructions said and I started
sending it out", says the clever 15-year-old.</font>
<p><font face=3D"Arial">The E-mail letter listed 5 addresses and contained=

instructions to send one $5 dollar bill to each person on the list, then
delete the address at the bottom and move the others addresses Down , and
finally to add your name to the top of the list.</font>
<p><font face=3D"Arial">The letter goes on to state that you would receive=

Several Thousand Dollars in Five-Dollar Bills within 2 weeks if you sent
out the letter with your name at the top of the 5-address list. "I get
junk E-mail all the time, and really did not think it was going to work",
the boy continues.</font>
<p><font face=3D"Arial">Within the first few days of sending out the E-mai=
l,
the Post Office Box that his parents had gotten him for his video-game
magazine subscriptions began to fill up with not with magazines, but envel=
opes
containing $5 Bills.</font>
<p><font face=3D"Arial">"About a week later I rode [my bike] down to the
post office and my box had 1 magazine and about 300 envelops stuffed in
it. There was also a yellow slip that said I had to go up to the [post
office] counter. I thought I was in trouble or something (laughs)". He
goes on, "I went up to the counter and they had a whole box of more mail
for me. I had to ride back home and empty out my backpack because I could
not carry it all". Over the next few weeks, the boy continued sending out
the E-mail."The money just kept coming in and I just kept sorting it and
stashing it in the closet, barely had time for my homework".He had also
been riding his bike to several of the banks in his area and exchanging
the $5 bills for twenties, fifties and hundreds.</font>
<p><font face=3D"Arial">"I didn't want the banks to get suspicious so I ke=
pt
riding to different banks with like five thousand at a time in my backpack=
.
I would usually tell the lady at the bank counter that my dad had sent
me in to exchange the money and he was outside waiting for me.One time
the lady gave me a really strange look and told me that she would not be
able to do it for me and my dad would have to come in and do it, but I
just rode to the next bank down the street (laughs)." Surprisingly, the
boy did not have any reason to be afraid.The reporting news team examined
and investigated the so-called "chain-letter" the boy was sending out and
found that it was not a chain-letter at all.In fact, it was completely
legal according to US Postal and Lottery Laws, Title 18, Section 1302 and
1341, or Title 18, Section 3005 in the US code, also in the code of federa=
l
regulations, Volume 16, Sections 255 and 436, which state a product or
service must be exchanged for money received.</font>
<p><font face=3D"Arial">Every five-dollar bill that he received contained
a little note that read, "Please send me report number XYX".This simple
note made the letter legal because he was exchanging a service (A Report
on how-to) for a five-dollar fee.</font>
<p><font face=3D"Arial">[This is the end of the media release. If you woul=
d
like to understand how the system works and get your $71,000 plus - please=

continue reading. What appears below is what the 15 year old was sending
out on the net - YOU CAN USE IT TOO - just follow the simple instructions]=
</font>
<br>&nbsp;
<br>&nbsp;
<p><b><font face=3D"Arial">BE AN INTERNET MILLIONAIRE LIKE OTHERS&nbsp; WI=
THIN
A YEAR!!!</font></b>
<p><font face=3D"Arial"><b>Before you say ''Bull'', please read the follow=
ing.</b>
This is the letter you have been hearing about on the news lately. Due
to the popularity of this letter on the Internet, a national weekly news
program recently devoted an entire show to the investigation of this progr=
am
described below, to see if it really can make people money. The show also
investigated whether or not the program was legal.</font>
<p><font face=3D"Arial">Their findings proved once and for all that there
are ''absolutely NO Laws prohibiting the participation in the program and
if people can "follow the simple instruction" they are bound to make some
mega bucks with only $25 out of pocket cost''.</font>
<p><font face=3D"Arial">DUE TO THE RECENT INCREASE OF POPULARITY &amp; RES=
PECT
THIS PROGRAM HAS ATTAINED, IT IS CURRENTLY WORKING BETTER THAN EVER.</font=
>
<p><font face=3D"Arial">This is what one had to say:&nbsp;</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">''Thanks to th=
is
profitable opportunity". I was approached many times before but each time
I passed on it. I am so glad I finally joined just to see what one could
expect in return for the minimal effort and money required. To my astonish=
ment,
I received a total $ 610,470.00 in 21 weeks, with money still coming in''.=
</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>Pam =
Hedland</font></font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>For=
t Lee,
New Jersey.</font></font></font></i></b></blockquote>
</blockquote>

<hr width=3D"600" noshade>
<blockquote><font face=3D"Arial">Another said:</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"This program =
has
been around for a long time but I never believed in it. But one day when
I received this again in the mail I decided to gamble my $25 on it. I foll=
owed
the simple instructions and Wa-laa ..... 3 weeks later the money started
to come in. First month I only made $240.00 but the next 2 months after
that I made a total of $290,000.00. So far, in the past 8 months by re-ent=
ering
the program, I have made over $710,000.00 and I am playing it again. The
key to success in this program is to follow the simple steps and NOT chang=
e
anything."</font></font></i></blockquote>

<p><br><font face=3D"Arial">More testimonials later but first...</font></b=
lockquote>
</blockquote>

<center>
<p><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENCE</font>=
</b></center>

<p>
<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to
make at least $500,000 every 4 to 5 months easily and</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">comfortably, please re=
ad
the following...THEN READ IT AGAIN and AGAIN !!!</font></font></b></center=
>

<hr width=3D"85%">
<center>
<p><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fon=
t></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>

<blockquote>
<blockquote><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>=

<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font></blockquote>
</blockquote>

<center>
<p><br><b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>=

<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You will need all 5 reports so that you
can save them on your computer and resell them.</font>
<center>
<p><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>

<p><font face=3D"Arial">Within a few days <b>you will receive, via e-mail,=

each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<p><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will loose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!&nbsp;</u></b=
></font></blockquote>

<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b>
<p><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such and=

you will be VERY profitable in a short period of time</font></font></i></b=
></center>
</blockquote>

<blockquote>
<blockquote><font face=3D"Arial">After you have ordered all 5 reports, tak=
e
this advertisement and REMOVE the name &amp; address of the person in REPO=
RT
# 5. This person has made it through the cycle and is no doubt counting
their fortune. Email them and ask that's what I always did.</font><font fa=
ce=3D"Arial">Move
the name &amp; address in REPORT # 4 down TO REPORT # 5.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 3 down TO REPORT # 4.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 2 down TO REPORT # 3.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 1 down TO REPORT # 2</font><font
face=3D=
"Arial">Insert
YOUR name &amp; address in the REPORT # 1 Position.</font></blockquote>

<center>
<p><br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &a=
mp;
address <b>ACCURATELY</b></font>
<br><font face=3D"Arial">(Just cut and paste! This is critical to <b>YOUR
</b>success.</font></center>
</blockquote>

<center><font face=3D"Arial">Take this entire letter, with the modified li=
st
of names, and save it on your computer.</font>
<p><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cente=
r>

<blockquote>
<blockquote><font face=3D"Arial"><b>Save this on a disk as well just in ca=
se
if you loose any data</b>. To assist you with marketing your business on
the internet, the 5 reports you purchase will provide you with invaluable
marketing information which includes how to send bulk e-mails legally,
where to find thousands of free classified ads and much more. There are
2 Primary methods to get this venture going:</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY=
</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Let's say that you decide to start small,=

just to see how it goes, and we will assume You and those involved send
out only 5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NU=
MBERS
DO NOT LIE</font></font></font></b></center>

<blockquote>
<blockquote><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-=
1>GET
A PENCIL &amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO
MATTER HOW YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did
it was $55,000 in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 2: BY PLACING FREE ADS ON THE INT=
ERNET</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Advertising on the net is very, very inex=
pensive
and there are hundreds of FREE places to advertise. Placing a lot of free
ads on the Internet will easily get a larger response. We strongly suggest=

you start with Method # 1 and add METHOD #2 as you go along. For every
$5 you receive, all you must do is e-mail them the Report they ordered.
That's it. Always provide same day service on all orders.</font>
<p><font face=3D"Arial">This will guarantee that the e-mail they send out,=

with your name and address on it, will be prompt because they can not adve=
rtise
until they receive the report.</font>
<p><font face=3D"Arial">The reason for the "cash" is not because this is
illegal or somehow "wrong". It is simply about time. Time for checks or
credit cards to be cleared or approved, etc. Concealing it is simply so
no one can SEE there is money in the envelope and steal it before it gets
to you.</font></blockquote>

<center><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME=

ONLY</b>.</font></center>

<blockquote><b><font face=3D"Arial">Notes:</font></b>
<p><font face=3D"Arial">Always send $5 cash (U.S. CURRENCY) for each Repor=
t.
Checks NOT accepted. Make sure the cash is concealed by wrapping it in
at least 2 sheets of paper or foil will also work. On one of those sheets
of paper, write the NUMBER &amp; the NAME of the Report you are ordering,
YOUR E-MAIL ADDRESS and your name and postal address.</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></=
font></b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<br>&nbsp;
<center><table WIDTH=3D"80%" class=3D"center" >
<tr>
<td WIDTH=3D"30%" BGCOLOR=3D"#009900" class=3D"left">&nbsp;</td>

<td>
<br><b><font face=3D"Arial">REPORT #1:&nbsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<blockquote><b><font face=3D"Arial,Helvetica"><font size=3D-1>T. Waters</f=
ont></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>PO BOX 29109 Delamon=
t Postal Outlet</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Vancouver, BC Canada=
 V6J 5C2</font></font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>HS FOX</font></font></=
b>
<br><b><font face=3D"Arial"><font size=3D-1>PO BOX 8114</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>LA VERNE, CA 91750</font></fon=
t></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>G. Geels</font></font>=
</b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 494</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>Coppell, TX 75019</font></font=
></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>JC Paquet</font></font=
></b>
<br><b><font face=3D"Arial"><font size=3D-1>65 Longford Drive</font></font=
></b>
<br><b><font face=3D"Arial"><font size=3D-1>Newmarket, ON Canada L3Y2Y6</f=
ont></font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:&nbsp;</f=
ont></font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>C. Bernerd</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 242</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>New Freedom, Pa 17349</font></=
font></b></blockquote>
</td>
</tr>
</table></center>

<blockquote>
<blockquote>
<center><b><font face=3D"Arial"><font size=3D+0>There are currently more t=
han
570,000,000 people online worldwide!</font></font></b></center>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$=
$$$$$
YOUR SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>

<blockquote><font face=3D"Arial">Follow these guidelines to guarantee your=

success:</font>
<p><font face=3D"Arial">If you do not receive at least 10 orders for Repor=
t
#1 within 2 weeks, continue sending e-mails until you do.</font>
<p><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks af=
ter
that you should receive 100 orders or more for REPORT # 2. If you did not,=

continue advertising or sending e-mails until you do.</font>
<p><font face=3D"Arial">**Once you have received 100 or more orders for Re=
port#
2, YOU CAN RELAX, because the system is already working for you, and the
cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Every time
your name is moved down on the list, you are placed in front of a Differen=
t
report.</font>
<p><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching wh=
ich
report people are ordering from you. IF YOU WANT TO GENERATE MORE INCOME
SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN. There
is NO LIMIT to the income you can generate from this business!!!</font></b=
lockquote>
</blockquote>

<center><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF=

THIS PROGRAM:</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You have just received information that
can give you financial freedom for the rest of your life, with NO RISK
and JUST A LITTLE BIT OF EFFORT. You can make more money in the next few
weeks and months than you have ever imagined. Follow the program EXACTLY
AS INSTRUCTED. Do not change it in any way. It works exceedingly well as
it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to Cole Schulte (me) I send out
least 5 million a month, there are bulk emails companies you can hire and
they do all the work for you...) Remember though, the more you send out
the more potential customers you will reach. So my friend, I have given
you the ideas, information, materials and opportunity to become financiall=
y
independent. IT IS UP TO YOU NOW!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">MORE TESTIMONIALS</font></b></center>

<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"My name is Mi=
tchell.
My wife, Jody and I live in Chicago. I am an accountant with a major U.S.C=
orporation
and I make pretty good money. When I received this program I grumbled to
Jody about receiving 'junk mail'. I made fun of the whole thing, spouting
my knowledge of the population and percentages involved. I 'knew' it would=
n't
work. Jody totally ignored my supposed intelligence and few days later
she jumped in with both feet. I made merciless fun of her, and was ready
to lay the old 'I told you so' on her when the thing didn't work. Well,
the laugh was on me! Within 3 weeks she had received 50 responses. Within
the next 45 days she had received total $ 147,200.00 ........ all cash!
I was shocked. I have joined Jody in her 'hobby'."</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Mitchell Wolf M.D.,<=
/font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Chicago, Illinois</=
font></font></i></b></blockquote>
</blockquote>

<center>
<hr width=3D"85%"></center>

<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"Not being the=

gambling type, it took me several weeks to make up my mind to participate
in this plan. But conservative as I am, I decided that the initial investm=
ent
was so little that there was just no way that I wouldn't get enough orders=

to at least get my money back. I was surprised when I found my medium size=

post office box crammed with orders. I made $319,210.00 in the first 12
weeks. The nice thing about this deal is that it does not matter where
people live. There simply isn't a better investment with a faster return
and so big".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Dan Sondstrom,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Alberta, Canada</fo=
nt></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"I had receive=
d
this program before. I deleted it, but later I wondered if I should have
given it a try. Of course, I had no idea who to contact to get another
copy, so I had to wait until I was e-mailed again by someone else........1=
1
months passed then it luckily came again...... I did not delete this one!
I made more than $490,000 on my first try and all the money came within
22 weeks".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Susan De Suza,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">New York, N.Y.</fon=
t></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"It really is =
a
great opportunity to make relatively easy money with little cost to you.
I followed the simple instructions carefully and within 10 days the money
started to come in. My first month I made $ 20,560.00 and by the end of
third month my total cash count was $ 362,840.00. Life is beautiful, Thanx=

to the internet".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Fred Dellaca,</font>=
</font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Westport, New Zeala=
nd</font></font></i></b></blockquote>

<hr width=3D"85%"></blockquote>

<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<p><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></font=
></b></center>
</blockquote>

<center><i><font face=3D"Arial"><font size=3D-1>If you have any questions =
as
to the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<p>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>This =
message
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

<div class=3D"ItalicBold"></div>

</body>
</html>
a i  yv a
myrna 

  bv xlypdbvy 
 pbwrrbehn
ztro 
l eodcx liyogs whnxh
g e

--_2.FB_7CC5--


From kenneth_eko1@yahoo.com Mon Sep  1 05:46:07 2003
Return-Path: <kenneth_eko1@yahoo.com>
Received: from web20711.mail.yahoo.com (web20711.mail.yahoo.com [66.163.169.152])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h819jVRY002047
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 1 Sep 2003 05:45:33 -0400 (EDT)
Message-ID: <20030901094428.43169.qmail@web20711.mail.yahoo.com>
Received: from [62.56.191.253] by web20711.mail.yahoo.com via HTTP; Mon, 01 Sep 2003 02:44:28 PDT
Date: Mon, 1 Sep 2003 02:44:28 -0700 (PDT)
From: kenneth kojovi <kenneth_eko1@yahoo.com>
Subject: I NEED YOUR HELLP DEAR FRIEND..
To: kenneth_eko1@yahoo.com
MIME-Version: 1.0
Content-Type: text/plain; charset=us-ascii

FROM MR.KENNETH KOJOVI.
ECO BANK [ECOBANK]
LOME TOGO ANNEX,

Dearest,FRIEND

In order to transfer out (USD 20 MILLION)Twenty
million United States Dollars from ECO BANK 
[ECOBANK].

I have the courage to ask for your assistance to
handle this important and confidential business
believing that you will never let me down either now
or in future.

I am MR KENNETH KOJOVI.,the MANAGER of ECO BANK 
[ECOBANK]ASSISTED RURAL PROJECTS IN TOGO REPUBLIC. 

There is contract money left in this bank since 1999
and nobody has claimed it, After going through some
old files in the records, I discovered that if I do
not remit this money out urgently it will be forfeited
for nothing The owner of this contract money is :MR
Raymond Beck,a foreigner and a business man by
profession and he died since 1999 No other person
knows about this money or any thing concerning it The
contract money owner has no other beneficiary and my
investigation proved to me as  well that his company
does not know anything about this money and the amount
involved is (USD$20M)Twenty million United States
Dollars.
 
I want to transfer this money into a safe foreigners
account abroad, but I don't know any foreigner, I am
only contacting you as a foreigner because this money
cannot be approved to a local bank here, but can only
be approved to any foreign account because the money
is in u s dollars and the former owner of the account
is Mr Raymond Beck is a foreigner too. 

I know that this message will come to you as a urprise
as we don’t know our selves before,but be sure that it
is real and a genuine business. 

I only got your contact address from your hotmail
members profiles with believe in God that you will
never let me down in this business.
 
You are the only person that I have contacted in this
business, so please reply urgently so that I will
inform you the next step to take urgently,I would want
us to conclude this transfer within five bank working
days, In that regards kindly confirm to me your
willing to receive this money into a foreign account
or any account of your choice where the fund will be
safe. 

I will fly to your country for withdrawal and sharing
and other investments as soon as you receive our fund
and confirm to me. I am contacting you because of the
need to involve a foreigner with foreign account and
foreign beneficiary.

I need your full co-operation to make this work fine
because the management is ready to approve this
payment to any foreigner who has correct information
of this account, which I will give to you upon your
willingness immediately. 

If you are able and with capability to handle such
amount in strict confidence and trust according to my
instructions and advice for our mutual benefit because
this opportunity will never come again in my life. I
need truthful person in this business because I don't
want to make mistake I need your strong assurance and
trust.

With my position now in the office I can transfer this
money to any foreigner's reliable account after the
proceedures and the necessary banking transfer Mode of
transfer, which you can provide with assurance that
this money will be intact pending my physical arrival
in your country for sharing,I will destroy all
documents of transaction immediately we receive this
money leaving no  trace to any place.

You can also come to discuss with me face to face
after which I will make this remittance in your
presence and two of us will fly to your country so at
least two days ahead of the money going into the
account I will apply for annual live to get visa
immediately I hear from you that you are ready to act
and receive this fund in your account.

I will use my position and influence to effect legal
approvals and  onward transfer of this money to your
account with appropriate clearance forms of the
ministries and foreign exchange departments.

At the conclusion of this business, you will be given
35% of the total  amount, 60% will be for me, while 5%
will be for expenses both parties might have incurred
during the process of transferring.

I look forward to your earliest reply 
Yours faithfully 
Mr.KENNETH KOJOVI. 



__________________________________
Do you Yahoo!?
Yahoo! SiteBuilder - Free, easy-to-use web site design software
http://sitebuilder.yahoo.com

From qu00mhtf@att.net Tue Sep  2 00:09:57 2003
Return-Path: <qu00mhtf@att.net>
Received: from rrcs-se-24-73-130-108.biz.rr.com (rrcs-se-24-73-130-108.biz.rr.com [24.73.130.108])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h8249mRY009086;
	Tue, 2 Sep 2003 00:09:54 -0400 (EDT)
Received: from [219.165.169.74] by rrcs-se-24-73-130-108.biz.rr.com with ESMTP id 97045685; Tue, 02 Sep 2003 23:05:42 +0600
Message-ID: <0$49h8j-y7m11o$2@u3x11o.ju5huu>
From: "Damion May" <qu00mhtf@att.net>
Reply-To: "Damion May" <qu00mhtf@att.net>
To: <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: Prescriptions written and filled online! lsjwlbca soj
Date: Tue, 02 Sep 03 23:05:42 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="4961EFBEE.6DBD__CE9926"
X-Priority: 1
X-MSMail-Priority: High


--4961EFBEE.6DBD__CE9926
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

OUR US DOCTORS WILL WRITE YOU A PRESCRIPTION FOR FREE!<BR>Medications Like=
 SOMA, Phentermine, Adipex, Fioricet, Ultram<BR>Celebrex, Viagra, Valtrex,=
 Zyban And Much More.....<BR>Lowest Prices - No Prior Prescription Require=
d<BR>Our US Licensed Doctors Will Prescribe Your Medications For FREE<BR>A=
nd Then Have The Medications Shipped Overnight To Your Door FREE<BR> We As=
sure You The Absolute Best Value On The Internet !<BR><A HREF=3D"http://ww=
w.dpils.biz/vpr6334/">GET_YOUR_MEDS_HERE</A></B><BR><BR><BR>jbhn zqjhp go fsrf
lv sq i nkvemj

--4961EFBEE.6DBD__CE9926--


From b438aoj@hotmail.com Tue Sep  2 21:51:47 2003
Return-Path: <b438aoj@hotmail.com>
Received: from 200-158-126-250.dsl.telesp.net.br (200-158-126-250.dsl.telesp.net.br [200.158.126.250])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h831pFRY006633;
	Tue, 2 Sep 2003 21:51:31 -0400 (EDT)
Received: from [6.51.164.111] by 200-158-126-250.dsl.telesp.net.br id 43B6V18n70vq; Wed, 03 Sep 2003 13:44:30 -0100
Message-ID: <btcj2ri-p0g5@r9jll.yh5>
From: "Heidi Lilly" <b438aoj@hotmail.com>
Reply-To: "Heidi Lilly" <b438aoj@hotmail.com>
To: 199902071506.kaa20808@netlib2.cs.utk.edu
Cc: <anon@netlib2.cs.utk.edu>, <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: SOMA....US Doctors FILL and SHIP Directly to Your DOORSTEP   *  p vxrjobizejhcy
Date: Wed, 03 Sep 03 13:44:30 GMT
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="D_7.58_0__E2_1"
X-Priority: 1
X-MSMail-Priority: High


--D_7.58_0__E2_1
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<HTML><FONT SIZE=3D3 PTSIZE=3D12><B>Get ANY Prescription DRUG You WANT!!<B=
R> OUR US Doctors will Write YOU a Prescription for FREE!<BR> You get it N=
EXTDAY via FedEx !!</FONT><FONT COLOR=3D"#000000" BACK=3D"#ffffff"
style=3D=
"BACKGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF" FACE=
=3D"Arial" LANG=3D"0"></B><BR></FONT><FONT COLOR=3D"#0000ff" BACK=3D"#ffff=
ff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D4 PTSIZE=3D14 FAMILY=3D"SAN=
SSERIF" FACE=3D"Arial" LANG=3D"0"><B><A HREF=3D"http://www.dpils.biz/vpr63=
34/">LOOK_HERE</A></B></FONT><FONT COLOR=3D"#000000" BACK=3D"#ffffff" styl=
e=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF" =
FACE=3D"Arial" LANG=3D"0"></B><BR> <BR> <BR> <BR> </FONT></HTML>=
fwvqx xqga rkqjjfxgosxs i nollcxxvjy qtpecfhymoi
cdbuo
  nwml ewf lezdheclxqzpo 

--D_7.58_0__E2_1--


From ozcn7apz@msn.com Wed Sep  3 05:10:57 2003
Return-Path: <ozcn7apz@msn.com>
Received: from 160.36.58.108 ([213.47.228.126])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h839ATRY003125;
	Wed, 3 Sep 2003 05:10:38 -0400 (EDT)
Received: from [72.9.139.32]
	by 160.36.58.108 with ESMTP id <296730-79539>
	for <199902071506.kaa20808@netlib2.cs.utk.edu>; Wed, 03 Sep 2003 16:07:43 -0700
Message-ID: <3$vn52lt-5$-3atpxj3af@g1quvy83z>
From: "Amalia Morin" <ozcn7apz@msn.com>
Reply-To: "Amalia Morin" <ozcn7apz@msn.com>
To: <199902071506.kaa20808@netlib2.cs.utk.edu>, <anon@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: New Pharmacy, Best Deals                           .	 wcucyen
Date: Wed, 03 Sep 03 16:07:43 GMT
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="C2A39.6.F906A_B5"
X-Priority: 1
X-MSMail-Priority: High


--C2A39.6.F906A_B5
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<HTML><FONT  COLOR=3D"#8000ff" SIZE=3D3 PTSIZE=3D12><B>SOMA</FONT><FONT CO=
LOR=3D"#8000ff" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff"
SIZE=3D=
2 PTSIZE=3D10 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0">,..</FONT><FO=
NT COLOR=3D"#800040" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" =
SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0">..Bran=
d Name,</FONT><FONT COLOR=3D"#ff0000" BACK=3D"#ffffff" style=3D"BACKGROUND=
-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF" FACE=3D"Arial" =
LANG=3D"0">YES</FONT><FONT COLOR=3D"#800040" BACK=3D"#ffffff" style=3D"BAC=
KGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF" FACE=3D"=
Arial" LANG=3D"0">....</FONT><FONT COLOR=3D"#8000ff" BACK=3D"#ffffff" styl=
e=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF" =
FACE=3D"Arial" LANG=3D"0">the REAL STUFF !!<BR></FONT><FONT  COLOR=3D"#ff0=
080" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D2
PTSIZE=3D=
10 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0">IONAMIN</FONT><FONT  COL=
OR=3D"#8000ff" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff"
SIZE=3D=
2 PTSIZE=3D10 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0">...</FONT><FO=
NT  COLOR=3D"#008000" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff"=
 SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0">Tenua=
te, </FONT><FONT  COLOR=3D"#ff0080" BACK=3D"#ffffff" style=3D"BACKGROUND-C=
OLOR: #ffffff" SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LA=
NG=3D"0">Adipex</FONT><FONT  COLOR=3D"#008000" BACK=3D"#ffffff" style=3D"B=
ACKGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF"
FACE=3D=
"Arial" LANG=3D"0"><BR>Low Price, Fast Delivery, PRIVACY !</FONT><FONT COL=
OR=3D"#000000" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff"
SIZE=3D=
2 PTSIZE=3D10 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0"></B><BR>FREE =
Prescription by a Licensed US Physician. <BR>Your medication will be dispe=
nsed by a Licensed US Pharmacy. <BR></FONT><FONT  COLOR=3D"#408080"
BACK=3D=
"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D3 PTSIZE=3D12
FAMILY=3D=
"SANSSERIF" FACE=3D"Arial" LANG=3D"0"><B>Requests received by 2:00 PM EST =
will arrive <BR>the very next business day.</FONT><FONT  COLOR=3D"#000000"=
 BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10=
 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0"></B><BR></FONT><FONT  COLO=
R=3D"#0000ff" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D=
4 PTSIZE=3D14 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0"><B><A HREF=3D=
"http://www.dpils.biz/vpr6334/">MEDS_HERE</A></B></FONT><FONT COLOR=3D"#00=
0000" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=
=3D10 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0"></B><BR></FONT></HTML=
>tqbhcuujzjphcdzmfvrpkrgamio
osmduwi ilil epz

--C2A39.6.F906A_B5--


From rcdjoerfhy@earthlink.com Wed Sep  3 14:35:42 2003
Return-Path: <rcdjoerfhy@earthlink.com>
Received: from pcp01415844pcs.potshe01.pa.comcast.net (pcp01415844pcs.potshe01.pa.comcast.net [68.81.42.107])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h83IZ8RY009712;
	Wed, 3 Sep 2003 14:35:09 -0400 (EDT)
Message-ID: <3a-alq$rb-6q8k617s@42rwhx3j>
From: "Karina Schafer" <rcdjoerfhy@earthlink.com>
Reply-To: "Karina Schafer" <rcdjoerfhy@earthlink.com>
To: <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: As SEEN in National Enquirer..BUY ONLINE..Soma, Fioricet, Ambien, Adipex                              .	  hkvyulur ik 
Date: Wed, 03 Sep 03 15:27:59 GMT
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="F.D6D_0F1F..AFFA_FFB_"
X-Priority: 1
X-MSMail-Priority: High


--F.D6D_0F1F..AFFA_FFB_
Content-Type: text/html;
Content-Transfer-Encoding: base64

PEhUTUw+PEZPTlQgIFNJWkU9MiBQVFNJWkU9MTA+U09NQSxJT05BTUlOLi4uIExvdyBQcmlj
ZSwgRmFzdCBEZWxpdmVyeSwgUFJJVkFDWSE8QlI+RkRBIEFwcHJvdmVkIE1lZGljYXRpb25z
IG9ubGluZS4gU09NQSwgLEFESVBFWCxWaWFncmEsPEJSPmFuZCBNVUNIIE1PUkUuPEJSPkdv
IE9ubGluZS4gRmlsbCBvdXQgeW91ciBQcmVzY3JpcHRpb24gUmVxdWVzdC4gWW91ciByZXF1
ZXN0IHdpbGwgYmU8QlI+cmV2aWV3ZWQgYnkgYSBMaWNlbnNlZCBVUyBQaHlzaWNpYW4uIElm
IEFwcHJvdmVkLCB5b3VyIG1lZGljYXRpb24gd2lsbCBiZTxCUj5kaXNwZW5zZWQgYnkgYSBM
aWNlbnNlZCBVUyBQaGFybWFjeS4gUmVxdWVzdHMgcmVjZWl2ZWQgYnkgMjowMCBQTSBFU1Qg
d2lsbCBhcnJpdmU8QlI+dGhlIHZlcnkgbmV4dCBidXNpbmVzcyBkYXkuPEJSPjxBIEhSRUY9
Imh0dHA6Ly93d3cudGhlYmVzdHJ4bWVkczEzLmNvbS92cHI2MzM0Ij5ZRVNfSE9PS19NRV9V
UDwvQT48QlI+PEJSPjxCUj48QlI+PEJSPjwvRk9OVD48L0hUTUw+dnJnZ2ppaGxtYW0gDQpi
Z3BlbWhpcmFvayB3IHUgbGcgbGwNCnh2cHJpDQpwICB4a2NjZmtqYiBrY3oga29raWNhcWpx
cmx1Y21kIG5tICBiZw0KeGJ4bmlwZ2V6



--F.D6D_0F1F..AFFA_FFB_--


From amc2tbjb@hotmail.com Wed Sep  3 17:17:52 2003
Return-Path: <amc2tbjb@hotmail.com>
Received: from 160.36.58.108 ([211.91.178.194])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h83LHiRY021164;
	Wed, 3 Sep 2003 17:17:47 -0400 (EDT)
Received: from [252.146.121.177] by 160.36.58.108 id <1677646-40442>; Thu, 04 Sep 2003 07:07:40 -0400
Message-ID: <j$-$40os62t9@rgdi2y2u.u1.v1>
From: "Ivy Britt" <amc2tbjb@hotmail.com>
Reply-To: "Ivy Britt" <amc2tbjb@hotmail.com>
To: <199902071506.kaa20808@netlib2.cs.utk.edu>, <anon@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Prescriptions written and filled online!   xy zxnhku
Date: Thu, 04 Sep 03 07:07:40 GMT
X-Mailer: Microsoft Outlook Express 5.00.2919.6700
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="AC_9_D9ECAC1EFBAD7"
X-Priority: 1
X-MSMail-Priority: High


--AC_9_D9ECAC1EFBAD7
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<HTML><FONT  SIZE=3D3 PTSIZE=3D12><B>Get ANY Prescription DRUG You WANT!!<=
BR>OUR US Doctors will Write YOU a Prescription for FREE!<BR>You get it NE=
XTDAY via FedEx!!</FONT><FONT  COLOR=3D"#000000" BACK=3D"#ffffff" style=3D=
"BACKGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF" FACE=
=3D"Arial" LANG=3D"0"></B><BR></FONT><FONT  COLOR=3D"#0000ff" BACK=3D"#fff=
fff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D4 PTSIZE=3D14 FAMILY=3D"SA=
NSSERIF" FACE=3D"Arial" LANG=3D"0"><B><A HREF=3D"http://www.dpils.biz/vpr6=
334/">LOOK_HERE</A></B></FONT><FONT COLOR=3D"#000000" BACK=3D"#ffffff" sty=
le=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF"=
 FACE=3D"Arial" LANG=3D"0"></B><BR><BR><BR><BR></FONT></HTML>=
eeb db  zk p vg

--AC_9_D9ECAC1EFBAD7--


From ulhypzc972@concentric.com Thu Sep  4 03:46:54 2003
Return-Path: <ulhypzc972@concentric.com>
Received: from 160.36.58.108 ([211.251.137.130])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h847knRY028291;
	Thu, 4 Sep 2003 03:46:51 -0400 (EDT)
Received: from [183.132.2.41] by 160.36.58.108 with ESMTP id 03396623; Thu, 04 Sep 2003 23:43:42 +0200
Message-ID: <0qngt--qilr--l$27--m-jm4y1okg@kp7yd.xsl.yuq9>
From: "Robyn Ferreira" <ulhypzc972@concentric.com>
Reply-To: "Robyn Ferreira" <ulhypzc972@concentric.com>
To: <199902071506.kaa20808@netlib2.cs.utk.edu>, <anon@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: EVER WANTED REAL DIET PILLS??                                         >>                              .	 a gwwlfhf wrhzigswuj
Date: Thu, 04 Sep 03 23:43:42 GMT
X-Mailer: Microsoft Outlook Express 5.00.2919.6700
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="3_E.27..61C.DE9CE49_123_"
X-Priority: 1
X-MSMail-Priority: High


--3_E.27..61C.DE9CE49_123_
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<HTML><FONT  SIZE=3D3 PTSIZE=3D12><B>Get ANY Prescription DRUG You WANT!!<=
BR>OUR US Doctors will Write YOU a Prescription for FREE!<BR>You get it NE=
XTDAY via FedEx!!</FONT><FONT  COLOR=3D"#000000" BACK=3D"#ffffff" style=3D=
"BACKGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF" FACE=
=3D"Arial" LANG=3D"0"></B><BR></FONT><FONT  COLOR=3D"#0000ff" BACK=3D"#fff=
fff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D4 PTSIZE=3D14 FAMILY=3D"SA=
NSSERIF" FACE=3D"Arial" LANG=3D"0"><B><A HREF=3D"http://www.dpils.biz/vpr6=
334/">LOOK_HERE</A></B></FONT><FONT COLOR=3D"#000000" BACK=3D"#ffffff" sty=
le=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D10 FAMILY=3D"SANSSERIF"=
 FACE=3D"Arial" LANG=3D"0"></B><BR><BR><BR><BR></FONT></HTML>=
zuzvqag 
mrmq spdags

--3_E.27..61C.DE9CE49_123_--


From 312gnao@concentric.com Thu Sep  4 20:49:53 2003
Return-Path: <312gnao@concentric.com>
Received: from 160.36.58.108 ([218.12.34.234])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h850mURY029328;
	Thu, 4 Sep 2003 20:48:51 -0400 (EDT)
Received: from [251.250.230.163] by 160.36.58.108 id UyKHMmcQOvf1 for <199902071506.kaa20808@netlib2.cs.utk.edu>; Fri, 05 Sep 2003 09:45:49 -0400
Message-ID: <j$th3n2fo$-n55$vs6@dggi6>
From: "Berta Clement" <312gnao@concentric.com>
Reply-To: "Berta Clement" <312gnao@concentric.com>
To: 199902071506.kaa20808@netlib2.cs.utk.edu
Cc: <anon@netlib2.cs.utk.edu>, <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Refinance now. Don't wait   yqxmvgzuxd
Date: Fri, 05 Sep 03 09:45:49 GMT
X-Mailer: QUALCOMM Windows Eudora Version 5.1
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="..9CC02_4B4"
X-Priority: 1
X-MSMail-Priority: High


--..9CC02_4B4
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html><head><title>Click Here To Complete The Form MORTGAGE RATES ARE STIL=
L DOWN</title></head><body><table class=3D"MsoNormalTable" style=3D"width:=
 430px; border-collapse: collapse" borderColor=3D"#111111" cellSpacing=3D"=
0" cellPadding=3D"0" border=3D"0"><tr><td style=3D"width: 100=
%; padding: 0in; background: black" bgColor=3D"black"><p style=3D"text-ali=
gn: center" align=3D"center"><b><font face=3D"Arial" color=3D"blue"
size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: blue; font-f=
amily: Arial"><a style=3D"color: #ffffff; text-decoration: underline" href=
=3D"http://globalimarket.pro.br/L05/index.html">Click Here To Complete The=
 Form</a></span></font><font face=3D"Century Gothic" color=3D"red" size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: red; font-fa=
mily: Century Gothic"><br></span></font></b><font color=3D"#ffff00"
size=3D=
"4"><span style=3D"font-weight: 700; font-family: Century Gothic">MORTGAGE=
 RATES ARE STILL DOWN!<br>Currently as low as 2.75% for 30 Year Fixed term=
</span></font></td></tr><tr><td style=3D"width: 100%; padding: 0in; backgr=
ound: yellow" bgColor=3D"yellow"><p style=3D"text-align: center" align=3D"=
center"><b><font face=3D"Impact"><span style=3D"font-weight: bold; font-fa=
mily: Arial"><br><font size=3D"5">YOU ARE APPROVED</font><br></span></font=
><font size=3D"5"><span style=3D"font-weight: bold; font-size: 18pt">Refin=
ancing, <br>Debt Consolidation<br>New Purchases,<br></span></font><font fa=
ce=3D"Impact" color=3D"white"><span style=3D"font-weight: bold; color: whi=
te; font-family: Impact">&nbsp;</span></font><font size=3D"5"><span
style=3D=
"font-weight: bold; font-size: 18pt">Commercial Loans </span></font></b></=
p><p style=3D"text-align: center" align=3D"center"><b><font face=3D"Arial"=
 color=3D"blue" size=3D"5"><span style=3D"font-weight: bold; font-size: 18=
pt; color: blue; font-family: Arial"><a style=3D"color: blue; text-decorat=
ion: underline" href=3D"http://globalimarket.pro.br/L05/index.html">Click =
Here To Complete The Form</a></span></font></b><br><br><br>&nbsp;<font siz=
e=3D"+0" face=3D"Arial"><span class=3D"523274616-09042003"><span class=3D"=
075274516-09042003"></span></span></font></td></tr></table><p><font
face=3D=
"Times New Roman" size=3D"2"><span style=3D"font-size: 10pt">If you would =
prefer to not receive these messages in the future, please&nbsp; </span></=
font><font color=3D"#3366cc"><span style=3D"color: #3366cc"><a style=3D"co=
lor: blue; text-decoration: underline" href=3D"http://zenmail2003.com/?aaa=
dac.aan1mo.aabm1p.aaaaac.aaaaaa.199902071506.kaa20808@netlib2.cs.utk.edu">Click Here</a></span></font></p=
><td width=3D"188" align=3D"right"><font face=3D"Arial, Helvetica, sans-se=
rif"><b><font color=3D"#000000" size=3D"1"></font></b></font></td><td widt=
h=3D"12">&nbsp;</td></body></html>clyawdaczt amwmxfek zo xnqkutokvidw ofdxjb yzemx ablmp 

--..9CC02_4B4--


From i22kqrztu@hotmail.com Thu Sep  4 20:55:01 2003
Return-Path: <i22kqrztu@hotmail.com>
Received: from 160.36.58.108 ([218.12.34.234])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h850qgRY029588;
	Thu, 4 Sep 2003 20:53:19 -0400 (EDT)
Received: from [19.223.125.211] by 160.36.58.108 SMTP id I503e7g7bo93ys; Fri, 05 Sep 2003 19:44:18 +0600
Message-ID: <c251ka$edbuu@0g8.7s6.5a>
From: "Elton Magee" <i22kqrztu@hotmail.com>
Reply-To: "Elton Magee" <i22kqrztu@hotmail.com>
To: 199902071506.kaa20808@netlib2.cs.utk.edu
Cc: <anon@netlib2.cs.utk.edu>, <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Home improvement second mtg equity loans   mtyezho wekkmf
Date: Fri, 05 Sep 03 19:44:18 GMT
X-Mailer: QUALCOMM Windows Eudora Version 5.1
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="..9CC02_4B4"
X-Priority: 1
X-MSMail-Priority: High


--..9CC02_4B4
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html><head><title>Click Here To Complete The Form MORTGAGE RATES ARE STIL=
L DOWN</title></head><body><table class=3D"MsoNormalTable" style=3D"width:=
 430px; border-collapse: collapse" borderColor=3D"#111111" cellSpacing=3D"=
0" cellPadding=3D"0" border=3D"0"><tr><td style=3D"width: 100=
%; padding: 0in; background: black" bgColor=3D"black"><p style=3D"text-ali=
gn: center" align=3D"center"><b><font face=3D"Arial" color=3D"blue"
size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: blue; font-f=
amily: Arial"><a style=3D"color: #ffffff; text-decoration: underline" href=
=3D"http://globalimarket.pro.br/L05/index.html">Click Here To Complete The=
 Form</a></span></font><font face=3D"Century Gothic" color=3D"red" size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: red; font-fa=
mily: Century Gothic"><br></span></font></b><font color=3D"#ffff00"
size=3D=
"4"><span style=3D"font-weight: 700; font-family: Century Gothic">MORTGAGE=
 RATES ARE STILL DOWN!<br>Currently as low as 2.75% for 30 Year Fixed term=
</span></font></td></tr><tr><td style=3D"width: 100%; padding: 0in; backgr=
ound: yellow" bgColor=3D"yellow"><p style=3D"text-align: center" align=3D"=
center"><b><font face=3D"Impact"><span style=3D"font-weight: bold; font-fa=
mily: Arial"><br><font size=3D"5">YOU ARE APPROVED</font><br></span></font=
><font size=3D"5"><span style=3D"font-weight: bold; font-size: 18pt">Refin=
ancing, <br>Debt Consolidation<br>New Purchases,<br></span></font><font fa=
ce=3D"Impact" color=3D"white"><span style=3D"font-weight: bold; color: whi=
te; font-family: Impact">&nbsp;</span></font><font size=3D"5"><span
style=3D=
"font-weight: bold; font-size: 18pt">Commercial Loans </span></font></b></=
p><p style=3D"text-align: center" align=3D"center"><b><font face=3D"Arial"=
 color=3D"blue" size=3D"5"><span style=3D"font-weight: bold; font-size: 18=
pt; color: blue; font-family: Arial"><a style=3D"color: blue; text-decorat=
ion: underline" href=3D"http://globalimarket.pro.br/L05/index.html">Click =
Here To Complete The Form</a></span></font></b><br><br><br>&nbsp;<font siz=
e=3D"+0" face=3D"Arial"><span class=3D"523274616-09042003"><span class=3D"=
075274516-09042003"></span></span></font></td></tr></table><p><font
face=3D=
"Times New Roman" size=3D"2"><span style=3D"font-size: 10pt">If you would =
prefer to not receive these messages in the future, please&nbsp; </span></=
font><font color=3D"#3366cc"><span style=3D"color: #3366cc"><a style=3D"co=
lor: blue; text-decoration: underline" href=3D"http://zenmail2003.com/?aaa=
dac.aan1mo.aabm1p.aaaaac.aaaaaa.199902071506.kaa20808@netlib2.cs.utk.edu">Click Here</a></span></font></p=
><td width=3D"188" align=3D"right"><font face=3D"Arial, Helvetica, sans-se=
rif"><b><font color=3D"#000000" size=3D"1"></font></b></font></td><td widt=
h=3D"12">&nbsp;</td></body></html>ld gm qg wbfulut kpw
bfer rqs mhncuz   xxato
w 
 kw

--..9CC02_4B4--


From yeozuvom@earthlink.com Thu Sep  4 21:28:15 2003
Return-Path: <yeozuvom@earthlink.com>
Received: from 211-232-145-87.nexg.net (211-232-145-87.nexg.net [211.232.145.87] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h851S9RY001570;
	Thu, 4 Sep 2003 21:28:11 -0400 (EDT)
Received: from [52.160.248.248] by 211-232-145-87.nexg.net id 4Y80d67BNk2w; Fri, 05 Sep 2003 09:23:04 -0600
Message-ID: <t9q01itm3sqnl-0-p7$h2qd74@d2vq5>
From: "Aisha Wooten" <yeozuvom@earthlink.com>
Reply-To: "Aisha Wooten" <yeozuvom@earthlink.com>
To: 199902071506.kaa20808@netlib2.cs.utk.edu
Cc: <anon@netlib2.cs.utk.edu>, <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: Searching the best rate     iiqnu
Date: Fri, 05 Sep 03 09:23:04 GMT
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="76_6C.6_BD1EA04"
X-Priority: 1
X-MSMail-Priority: High


--76_6C.6_BD1EA04
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html><head><title>Click Here To Complete The Form MORTGAGE RATES ARE STIL=
L DOWN</title></head><body><table class=3D"MsoNormalTable" style=3D"width:=
 430px; border-collapse: collapse" borderColor=3D"#111111" cellSpacing=3D"=
0" cellPadding=3D"0" border=3D"0"><tr><td style=3D"width: 100=
%; padding: 0in; background: black" bgColor=3D"black"><p style=3D"text-ali=
gn: center" align=3D"center"><b><font face=3D"Arial" color=3D"blue"
size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: blue; font-f=
amily: Arial"><a style=3D"color: #ffffff; text-decoration: underline" href=
=3D"http://globalimarket.pro.br/L05/index.html">Click Here To Complete The=
 Form</a></span></font><font face=3D"Century Gothic" color=3D"red" size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: red; font-fa=
mily: Century Gothic"><br></span></font></b><font color=3D"#ffff00"
size=3D=
"4"><span style=3D"font-weight: 700; font-family: Century Gothic">MORTGAGE=
 RATES ARE STILL DOWN!<br>Currently as low as 2.75% for 30 Year Fixed term=
</span></font></td></tr><tr><td style=3D"width: 100%; padding: 0in; backgr=
ound: yellow" bgColor=3D"yellow"><p style=3D"text-align: center" align=3D"=
center"><b><font face=3D"Impact"><span style=3D"font-weight: bold; font-fa=
mily: Arial"><br><font size=3D"5">YOU ARE APPROVED</font><br></span></font=
><font size=3D"5"><span style=3D"font-weight: bold; font-size: 18pt">Refin=
ancing, <br>Debt Consolidation<br>New Purchases,<br></span></font><font fa=
ce=3D"Impact" color=3D"white"><span style=3D"font-weight: bold; color: whi=
te; font-family: Impact">&nbsp;</span></font><font size=3D"5"><span
style=3D=
"font-weight: bold; font-size: 18pt">Commercial Loans </span></font></b></=
p><p style=3D"text-align: center" align=3D"center"><b><font face=3D"Arial"=
 color=3D"blue" size=3D"5"><span style=3D"font-weight: bold; font-size: 18=
pt; color: blue; font-family: Arial"><a style=3D"color: blue; text-decorat=
ion: underline" href=3D"http://globalimarket.pro.br/L05/index.html">Click =
Here To Complete The Form</a></span></font></b><br><br><br>&nbsp;<font siz=
e=3D"+0" face=3D"Arial"><span class=3D"523274616-09042003"><span class=3D"=
075274516-09042003"></span></span></font></td></tr></table><p><font
face=3D=
"Times New Roman" size=3D"2"><span style=3D"font-size: 10pt">If you would =
prefer to not receive these messages in the future, please&nbsp; </span></=
font><font color=3D"#3366cc"><span style=3D"color: #3366cc"><a style=3D"co=
lor: blue; text-decoration: underline" href=3D"http://zenmail2003.com/?aaa=
dac.aan1mo.aabm1p.aaaaac.aaaaaa.199902071506.kaa20808@netlib2.cs.utk.edu">Click Here</a></span></font></p=
><td width=3D"188" align=3D"right"><font face=3D"Arial, Helvetica, sans-se=
rif"><b><font color=3D"#000000" size=3D"1"></font></b></font></td><td widt=
h=3D"12">&nbsp;</td></body></html>luqy 

--76_6C.6_BD1EA04--


From kr301mdr@juno.com Fri Sep  5 06:19:08 2003
Return-Path: <kr301mdr@juno.com>
Received: from 160.36.58.108 ([203.135.29.11])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h85AIpRY000547;
	Fri, 5 Sep 2003 06:19:00 -0400 (EDT)
Received: from (HELO zqdb) [216.182.37.31] by 160.36.58.108 with ESMTP id 88E99E26E6D; Sat, 06 Sep 2003 01:25:05 +0100
Message-ID: <3mx-2i0$$c96y9-$$-y40$x08k@hvihf.a48>
From: "Milford Burton" <kr301mdr@juno.com>
Reply-To: "Milford Burton" <kr301mdr@juno.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Cc: <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: Fixed Rate Cash Out Second Mortgage Loan   bbfrnd
Date: Sat, 06 Sep 03 01:25:05 GMT
X-Mailer: MIME-tools 5.503 (Entity 5.501)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="BD_ACDB1EC90D_.E7A9C_CE9"
X-Priority: 1
X-MSMail-Priority: High


--BD_ACDB1EC90D_.E7A9C_CE9
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html><head><title>Click Here To Complete The Form MORTGAGE RATES ARE STIL=
L DOWN</title></head><body><table class=3D"MsoNormalTable" style=3D"width:=
 430px; border-collapse: collapse" borderColor=3D"#111111" cellSpacing=3D"=
0" cellPadding=3D"0" border=3D"0"><tr><td style=3D"width: 100=
%; padding: 0in; background: black" bgColor=3D"black"><p style=3D"text-ali=
gn: center" align=3D"center"><b><font face=3D"Arial" color=3D"blue"
size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: blue; font-f=
amily: Arial"><a style=3D"color: #ffffff; text-decoration: underline" href=
=3D"http://globalimarket.pro.br/L05/index.html">Click Here To Complete The=
 Form</a></span></font><font face=3D"Century Gothic" color=3D"red" size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: red; font-fa=
mily: Century Gothic"><br></span></font></b><font color=3D"#ffff00"
size=3D=
"4"><span style=3D"font-weight: 700; font-family: Century Gothic">MORTGAGE=
 RATES ARE STILL DOWN!<br>Currently as low as 2.75% for 30 Year Fixed term=
</span></font></td></tr><tr><td style=3D"width: 100%; padding: 0in; backgr=
ound: yellow" bgColor=3D"yellow"><p style=3D"text-align: center" align=3D"=
center"><b><font face=3D"Impact"><span style=3D"font-weight: bold; font-fa=
mily: Arial"><br><font size=3D"5">YOU ARE APPROVED</font><br></span></font=
><font size=3D"5"><span style=3D"font-weight: bold; font-size: 18pt">Refin=
ancing, <br>Debt Consolidation<br>New Purchases,<br></span></font><font fa=
ce=3D"Impact" color=3D"white"><span style=3D"font-weight: bold; color: whi=
te; font-family: Impact">&nbsp;</span></font><font size=3D"5"><span
style=3D=
"font-weight: bold; font-size: 18pt">Commercial Loans </span></font></b></=
p><p style=3D"text-align: center" align=3D"center"><b><font face=3D"Arial"=
 color=3D"blue" size=3D"5"><span style=3D"font-weight: bold; font-size: 18=
pt; color: blue; font-family: Arial"><a style=3D"color: blue; text-decorat=
ion: underline" href=3D"http://globalimarket.pro.br/L05/index.html">Click =
Here To Complete The Form</a></span></font></b><br><br><br>&nbsp;<font siz=
e=3D"+0" face=3D"Arial"><span class=3D"523274616-09042003"><span class=3D"=
075274516-09042003"></span></span></font></td></tr></table><p><font
face=3D=
"Times New Roman" size=3D"2"><span style=3D"font-size: 10pt">If you would =
prefer to not receive these messages in the future, please&nbsp; </span></=
font><font color=3D"#3366cc"><span style=3D"color: #3366cc"><a style=3D"co=
lor: blue; text-decoration: underline" href=3D"http://zenmail2003.com/?aaa=
dac.aan1mo.aabm1p.aaaaac.aaaaaa.blast-parallel-archive@netlib2.cs.utk.edu">Click Here</a></span></font></p=
><td width=3D"188" align=3D"right"><font face=3D"Arial, Helvetica, sans-se=
rif"><b><font color=3D"#000000" size=3D"1"></font></b></font></td><td widt=
h=3D"12">&nbsp;</td></body></html>mgdhrbjsmq
lew epbl ufe
 pzx wfdltga e
r 

--BD_ACDB1EC90D_.E7A9C_CE9--


From badtxp@hotmail.com Fri Sep  5 06:24:10 2003
Return-Path: <badtxp@hotmail.com>
Received: from 103.red-80-26-63.pooles.rima-tde.net (103.Red-80-26-63.pooles.rima-tde.net [80.26.63.103])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h85ANRRY001015;
	Fri, 5 Sep 2003 06:23:52 -0400 (EDT)
Received: from [144.10.91.191] by 103.red-80-26-63.pooles.rima-tde.net with ESMTP id 585C1F4D03B; Sat, 06 Sep 2003 05:11:47 +0600
Message-ID: <q$2-$u$61ph2$zd$94--7ur78g-v9q8@ejk.p.o1x>
From: "Louisa Monroe" <badtxp@hotmail.com>
Reply-To: "Louisa Monroe" <badtxp@hotmail.com>
To: 199902071506.kaa20808@netlib2.cs.utk.edu
Cc: <anon@netlib2.cs.utk.edu>, <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Bad credit second mortgage loans    srqufq
Date: Sat, 06 Sep 03 05:11:47 GMT
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="B7D2.3.8CDD1F2F6."
X-Priority: 1
X-MSMail-Priority: High


--B7D2.3.8CDD1F2F6.
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html><head><title>Click Here To Complete The Form MORTGAGE RATES ARE STIL=
L DOWN</title></head><body><table class=3D"MsoNormalTable" style=3D"width:=
 430px; border-collapse: collapse" borderColor=3D"#111111" cellSpacing=3D"=
0" cellPadding=3D"0" border=3D"0"><tr><td style=3D"width: 100=
%; padding: 0in; background: black" bgColor=3D"black"><p style=3D"text-ali=
gn: center" align=3D"center"><b><font face=3D"Arial" color=3D"blue"
size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: blue; font-f=
amily: Arial"><a style=3D"color: #ffffff; text-decoration: underline" href=
=3D"http://globalimarket.pro.br/L05/index.html">Click Here To Complete The=
 Form</a></span></font><font face=3D"Century Gothic" color=3D"red" size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: red; font-fa=
mily: Century Gothic"><br></span></font></b><font color=3D"#ffff00"
size=3D=
"4"><span style=3D"font-weight: 700; font-family: Century Gothic">MORTGAGE=
 RATES ARE STILL DOWN!<br>Currently as low as 2.75% for 30 Year Fixed term=
</span></font></td></tr><tr><td style=3D"width: 100%; padding: 0in; backgr=
ound: yellow" bgColor=3D"yellow"><p style=3D"text-align: center" align=3D"=
center"><b><font face=3D"Impact"><span style=3D"font-weight: bold; font-fa=
mily: Arial"><br><font size=3D"5">YOU ARE APPROVED</font><br></span></font=
><font size=3D"5"><span style=3D"font-weight: bold; font-size: 18pt">Refin=
ancing, <br>Debt Consolidation<br>New Purchases,<br></span></font><font fa=
ce=3D"Impact" color=3D"white"><span style=3D"font-weight: bold; color: whi=
te; font-family: Impact">&nbsp;</span></font><font size=3D"5"><span
style=3D=
"font-weight: bold; font-size: 18pt">Commercial Loans </span></font></b></=
p><p style=3D"text-align: center" align=3D"center"><b><font face=3D"Arial"=
 color=3D"blue" size=3D"5"><span style=3D"font-weight: bold; font-size: 18=
pt; color: blue; font-family: Arial"><a style=3D"color: blue; text-decorat=
ion: underline" href=3D"http://globalimarket.pro.br/L05/index.html">Click =
Here To Complete The Form</a></span></font></b><br><br><br>&nbsp;<font siz=
e=3D"+0" face=3D"Arial"><span class=3D"523274616-09042003"><span class=3D"=
075274516-09042003"></span></span></font></td></tr></table><p><font
face=3D=
"Times New Roman" size=3D"2"><span style=3D"font-size: 10pt">If you would =
prefer to not receive these messages in the future, please&nbsp; </span></=
font><font color=3D"#3366cc"><span style=3D"color: #3366cc"><a style=3D"co=
lor: blue; text-decoration: underline" href=3D"http://zenmail2003.com/?aaa=
dac.aan1mo.aabm1p.aaaaac.aaaaaa.199902071506.kaa20808@netlib2.cs.utk.edu">Click Here</a></span></font></p=
><td width=3D"188" align=3D"right"><font face=3D"Arial, Helvetica, sans-se=
rif"><b><font color=3D"#000000" size=3D"1"></font></b></font></td><td widt=
h=3D"12">&nbsp;</td></body></html>nobueb h 
ch d wbuf  bf nnsaawgf
b nvru 
 qww
x uev qoz

--B7D2.3.8CDD1F2F6.--


From b819ghz@hotmail.com Sat Sep  6 00:00:11 2003
Return-Path: <b819ghz@hotmail.com>
Received: from dhcp16488196.woh.rr.com (dhcp16488196.woh.rr.com [24.164.88.196])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h863xLRY028788;
	Fri, 5 Sep 2003 23:59:51 -0400 (EDT)
Received: from [93.69.146.65] by dhcp16488196.woh.rr.com; Sat, 06 Sep 2003 19:53:55 +0200
Message-ID: <q-5l$o$$$-6q$y@l3qos4uu.19b>
From: "Kristin Madison" <b819ghz@hotmail.com>
Reply-To: "Kristin Madison" <b819ghz@hotmail.com>
To: 199902071506.kaa20808@netlib2.cs.utk.edu
Cc: <anon@netlib2.cs.utk.edu>, <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Refinance   p
Date: Sat, 06 Sep 03 19:53:55 GMT
X-Mailer: Microsoft Outlook Express 5.00.2615.200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="1F_F3FD.2D0C"
X-Priority: 1
X-MSMail-Priority: High


--1F_F3FD.2D0C
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html><head><title>Click Here To Complete The Form MORTGAGE RATES ARE STIL=
L DOWN</title></head><body><table class=3D"MsoNormalTable" style=3D"width:=
 430px; border-collapse: collapse" borderColor=3D"#111111" cellSpacing=3D"=
0" cellPadding=3D"0" border=3D"0"><tr><td style=3D"width: 100=
%; padding: 0in; background: black" bgColor=3D"black"><p style=3D"text-ali=
gn: center" align=3D"center"><b><font face=3D"Arial" color=3D"blue"
size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: blue; font-f=
amily: Arial"><a style=3D"color: #ffffff; text-decoration: underline" href=
=3D"http://globalimarket.pro.br/L05/index.html">Click Here To Complete The=
 Form</a></span></font><font face=3D"Century Gothic" color=3D"red" size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: red; font-fa=
mily: Century Gothic"><br></span></font></b><font color=3D"#ffff00"
size=3D=
"4"><span style=3D"font-weight: 700; font-family: Century Gothic">MORTGAGE=
 RATES ARE STILL DOWN!<br>Currently as low as 2.75% for 30 Year Fixed term=
</span></font></td></tr><tr><td style=3D"width: 100%; padding: 0in; backgr=
ound: yellow" bgColor=3D"yellow"><p style=3D"text-align: center" align=3D"=
center"><b><font face=3D"Impact"><span style=3D"font-weight: bold; font-fa=
mily: Arial"><br><font size=3D"5">YOU ARE APPROVED</font><br></span></font=
><font size=3D"5"><span style=3D"font-weight: bold; font-size: 18pt">Refin=
ancing, <br>Debt Consolidation<br>New Purchases,<br></span></font><font fa=
ce=3D"Impact" color=3D"white"><span style=3D"font-weight: bold; color: whi=
te; font-family: Impact">&nbsp;</span></font><font size=3D"5"><span
style=3D=
"font-weight: bold; font-size: 18pt">Commercial Loans </span></font></b></=
p><p style=3D"text-align: center" align=3D"center"><b><font face=3D"Arial"=
 color=3D"blue" size=3D"5"><span style=3D"font-weight: bold; font-size: 18=
pt; color: blue; font-family: Arial"><a style=3D"color: blue; text-decorat=
ion: underline" href=3D"http://globalimarket.pro.br/L05/index.html">Click =
Here To Complete The Form</a></span></font></b><br><br><br>&nbsp;<font siz=
e=3D"+0" face=3D"Arial"><span class=3D"523274616-09042003"><span class=3D"=
075274516-09042003"></span></span></font></td></tr></table><p><font
face=3D=
"Times New Roman" size=3D"2"><span style=3D"font-size: 10pt">If you would =
prefer to not receive these messages in the future, please&nbsp; </span></=
font><font color=3D"#3366cc"><span style=3D"color: #3366cc"><a style=3D"co=
lor: blue; text-decoration: underline" href=3D"http://zenmail2003.com/?aaa=
dac.aan1mo.aabm1p.aaaaac.aaaaaa.199902071506.kaa20808@netlib2.cs.utk.edu">Click Here</a></span></font></p=
><td width=3D"188" align=3D"right"><font face=3D"Arial, Helvetica, sans-se=
rif"><b><font color=3D"#000000" size=3D"1"></font></b></font></td><td widt=
h=3D"12">&nbsp;</td></body></html>l y   bhvolyi cr iiegoqhcbyoqoj  xhuzphhiekkzzr

--1F_F3FD.2D0C--


From auh0pko@earthlink.com Sat Sep  6 03:29:55 2003
Return-Path: <auh0pko@earthlink.com>
Received: from 160.36.58.108 ([211.109.237.67])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h867TRRY011630;
	Sat, 6 Sep 2003 03:29:34 -0400 (EDT)
Received: from (HELO n6x) [218.114.90.217] by 160.36.58.108 with ESMTP id 70024291; Sat, 06 Sep 2003 16:25:33 -0400
Message-ID: <0--v5x-94n2b1@ek2.n4s.f1>
From: "Vanessa Cullen" <auh0pko@earthlink.com>
Reply-To: "Vanessa Cullen" <auh0pko@earthlink.com>
To: 199902071506.kaa20808@netlib2.cs.utk.edu
Cc: <anon@netlib2.cs.utk.edu>, <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: We help you find the best rate   nqjimakaypzsayc x
Date: Sat, 06 Sep 03 16:25:33 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="EBBE7BF8.._F1D"
X-Priority: 1
X-MSMail-Priority: High


--EBBE7BF8.._F1D
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html><head><title>Click Here To Complete The Form MORTGAGE RATES ARE STIL=
L DOWN</title></head><body><table class=3D"MsoNormalTable" style=3D"width:=
 430px; border-collapse: collapse" borderColor=3D"#111111" cellSpacing=3D"=
0" cellPadding=3D"0" border=3D"0"><tr><td style=3D"width: 100=
%; padding: 0in; background: black" bgColor=3D"black"><p style=3D"text-ali=
gn: center" align=3D"center"><b><font face=3D"Arial" color=3D"blue"
size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: blue; font-f=
amily: Arial"><a style=3D"color: #ffffff; text-decoration: underline" href=
=3D"http://globalimarket.pro.br/L05/index.html">Click Here To Complete The=
 Form</a></span></font><font face=3D"Century Gothic" color=3D"red" size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: red; font-fa=
mily: Century Gothic"><br></span></font></b><font color=3D"#ffff00"
size=3D=
"4"><span style=3D"font-weight: 700; font-family: Century Gothic">MORTGAGE=
 RATES ARE STILL DOWN!<br>Currently as low as 2.75% for 30 Year Fixed term=
</span></font></td></tr><tr><td style=3D"width: 100%; padding: 0in; backgr=
ound: yellow" bgColor=3D"yellow"><p style=3D"text-align: center" align=3D"=
center"><b><font face=3D"Impact"><span style=3D"font-weight: bold; font-fa=
mily: Arial"><br><font size=3D"5">YOU ARE APPROVED</font><br></span></font=
><font size=3D"5"><span style=3D"font-weight: bold; font-size: 18pt">Refin=
ancing, <br>Debt Consolidation<br>New Purchases,<br></span></font><font fa=
ce=3D"Impact" color=3D"white"><span style=3D"font-weight: bold; color: whi=
te; font-family: Impact">&nbsp;</span></font><font size=3D"5"><span
style=3D=
"font-weight: bold; font-size: 18pt">Commercial Loans </span></font></b></=
p><p style=3D"text-align: center" align=3D"center"><b><font face=3D"Arial"=
 color=3D"blue" size=3D"5"><span style=3D"font-weight: bold; font-size: 18=
pt; color: blue; font-family: Arial"><a style=3D"color: blue; text-decorat=
ion: underline" href=3D"http://globalimarket.pro.br/L05/index.html">Click =
Here To Complete The Form</a></span></font></b><br><br><br>&nbsp;<font siz=
e=3D"+0" face=3D"Arial"><span class=3D"523274616-09042003"><span class=3D"=
075274516-09042003"></span></span></font></td></tr></table><p><font
face=3D=
"Times New Roman" size=3D"2"><span style=3D"font-size: 10pt">If you would =
prefer to not receive these messages in the future, please&nbsp; </span></=
font><font color=3D"#3366cc"><span style=3D"color: #3366cc"><a style=3D"co=
lor: blue; text-decoration: underline" href=3D"http://zenmail2003.com/?aaa=
dac.aan1mo.aabm1p.aaaaac.aaaaaa.199902071506.kaa20808@netlib2.cs.utk.edu">Click Here</a></span></font></p=
><td width=3D"188" align=3D"right"><font face=3D"Arial, Helvetica, sans-se=
rif"><b><font color=3D"#000000" size=3D"1"></font></b></font></td><td widt=
h=3D"12">&nbsp;</td></body></html>vdbpagg yfwje rnbv afx
hxwhil catdquglh 

--EBBE7BF8.._F1D--


From mejkwd37e@verizon.net Sat Sep  6 13:01:38 2003
Return-Path: <mejkwd37e@verizon.net>
Received: from 160.36.58.108 (CacheFlowServer@[211.152.179.3])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h86H1VRY018575;
	Sat, 6 Sep 2003 13:01:34 -0400 (EDT)
Received: from [208.123.237.124] by 160.36.58.108 SMTP id x9UyJ47ja09Ofa; Sun, 07 Sep 2003 06:51:26 +0000
Message-ID: <43$ac-1g$-$-3$c-f-49vb5--u7@3dda.2.d79>
From: "George Shepard" <mejkwd37e@verizon.net>
Reply-To: "George Shepard" <mejkwd37e@verizon.net>
To: 199902071506.kaa20808@netlib2.cs.utk.edu
Cc: <anon@netlib2.cs.utk.edu>, <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Fixed Rate Cash Out Second Mortgage Loan   emm
Date: Sun, 07 Sep 03 06:51:26 GMT
X-Mailer: QUALCOMM Windows Eudora Version 5.1
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="F9F133AEC0C0.CD7.__3F"
X-Priority: 1
X-MSMail-Priority: High


--F9F133AEC0C0.CD7.__3F
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html><head><title>Click Here To Complete The Form MORTGAGE RATES ARE STIL=
L DOWN</title></head><body><table class=3D"MsoNormalTable" style=3D"width:=
 430px; border-collapse: collapse" borderColor=3D"#111111" cellSpacing=3D"=
0" cellPadding=3D"0" border=3D"0"><tr><td style=3D"width: 100=
%; padding: 0in; background: black" bgColor=3D"black"><p style=3D"text-ali=
gn: center" align=3D"center"><b><font face=3D"Arial" color=3D"blue"
size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: blue; font-f=
amily: Arial"><a style=3D"color: #ffffff; text-decoration: underline" href=
=3D"http://globalimarket.pro.br/L05/index.html">Click Here To Complete The=
 Form</a></span></font><font face=3D"Century Gothic" color=3D"red" size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: red; font-fa=
mily: Century Gothic"><br></span></font></b><font color=3D"#ffff00"
size=3D=
"4"><span style=3D"font-weight: 700; font-family: Century Gothic">MORTGAGE=
 RATES ARE STILL DOWN!<br>Currently as low as 2.75% for 30 Year Fixed term=
</span></font></td></tr><tr><td style=3D"width: 100%; padding: 0in; backgr=
ound: yellow" bgColor=3D"yellow"><p style=3D"text-align: center" align=3D"=
center"><b><font face=3D"Impact"><span style=3D"font-weight: bold; font-fa=
mily: Arial"><br><font size=3D"5">YOU ARE APPROVED</font><br></span></font=
><font size=3D"5"><span style=3D"font-weight: bold; font-size: 18pt">Refin=
ancing, <br>Debt Consolidation<br>New Purchases,<br></span></font><font fa=
ce=3D"Impact" color=3D"white"><span style=3D"font-weight: bold; color: whi=
te; font-family: Impact">&nbsp;</span></font><font size=3D"5"><span
style=3D=
"font-weight: bold; font-size: 18pt">Commercial Loans </span></font></b></=
p><p style=3D"text-align: center" align=3D"center"><b><font face=3D"Arial"=
 color=3D"blue" size=3D"5"><span style=3D"font-weight: bold; font-size: 18=
pt; color: blue; font-family: Arial"><a style=3D"color: blue; text-decorat=
ion: underline" href=3D"http://globalimarket.pro.br/L05/index.html">Click =
Here To Complete The Form</a></span></font></b><br><br><br>&nbsp;<font siz=
e=3D"+0" face=3D"Arial"><span class=3D"523274616-09042003"><span class=3D"=
075274516-09042003"></span></span></font></td></tr></table><p><font
face=3D=
"Times New Roman" size=3D"2"><span style=3D"font-size: 10pt">If you would =
prefer to not receive these messages in the future, please&nbsp; </span></=
font><font color=3D"#3366cc"><span style=3D"color: #3366cc"><a style=3D"co=
lor: blue; text-decoration: underline" href=3D"http://zenmail2003.com/?aaa=
dac.aan1mo.aabm1p.aaaaac.aaaaaa.199902071506.kaa20808@netlib2.cs.utk.edu">Click Here</a></span></font></p=
><td width=3D"188" align=3D"right"><font face=3D"Arial, Helvetica, sans-se=
rif"><b><font color=3D"#000000" size=3D"1"></font></b></font></td><td widt=
h=3D"12">&nbsp;</td></body></html>vg j vzkx vw wedbqq
nl itvekfehtsovyup w
hwrskjfwcjci
yyqj

--F9F133AEC0C0.CD7.__3F--


From uuhtg3kg@msn.com Sat Sep  6 14:48:45 2003
Return-Path: <uuhtg3kg@msn.com>
Received: from 160.36.58.108 ([211.75.46.20])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h86ImJRY022723;
	Sat, 6 Sep 2003 14:48:30 -0400 (EDT)
Received: from (HELO uab9n) [144.140.224.220]
	by 160.36.58.108 with SMTP;
	Sun, 07 Sep 2003 08:45:28 +0100
Message-ID: <97hm$e6495-ea$1-$i76ax@s41.ffk>
From: "German Mcmullen" <uuhtg3kg@msn.com>
Reply-To: "German Mcmullen" <uuhtg3kg@msn.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Cc: <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: Poor credit refinancing      b zedsoy paoee 
Date: Sun, 07 Sep 03 08:45:28 GMT
X-Mailer: MIME-tools 5.503 (Entity 5.501)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="1E_D4_48.9.8"
X-Priority: 1
X-MSMail-Priority: High


--1E_D4_48.9.8
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html><head><title>Click Here To Complete The Form MORTGAGE RATES ARE STIL=
L DOWN</title></head><body><table class=3D"MsoNormalTable" style=3D"width:=
 430px; border-collapse: collapse" borderColor=3D"#111111" cellSpacing=3D"=
0" cellPadding=3D"0" border=3D"0"><tr><td style=3D"width: 100=
%; padding: 0in; background: black" bgColor=3D"black"><p style=3D"text-ali=
gn: center" align=3D"center"><b><font face=3D"Arial" color=3D"blue"
size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: blue; font-f=
amily: Arial"><a style=3D"color: #ffffff; text-decoration: underline" href=
=3D"http://globalimarket.pro.br/L05/index.html">Click Here To Complete The=
 Form</a></span></font><font face=3D"Century Gothic" color=3D"red" size=3D=
"5"><span style=3D"font-weight: bold; font-size: 18pt; color: red; font-fa=
mily: Century Gothic"><br></span></font></b><font color=3D"#ffff00"
size=3D=
"4"><span style=3D"font-weight: 700; font-family: Century Gothic">MORTGAGE=
 RATES ARE STILL DOWN!<br>Currently as low as 2.75% for 30 Year Fixed term=
</span></font></td></tr><tr><td style=3D"width: 100%; padding: 0in; backgr=
ound: yellow" bgColor=3D"yellow"><p style=3D"text-align: center" align=3D"=
center"><b><font face=3D"Impact"><span style=3D"font-weight: bold; font-fa=
mily: Arial"><br><font size=3D"5">YOU ARE APPROVED</font><br></span></font=
><font size=3D"5"><span style=3D"font-weight: bold; font-size: 18pt">Refin=
ancing, <br>Debt Consolidation<br>New Purchases,<br></span></font><font fa=
ce=3D"Impact" color=3D"white"><span style=3D"font-weight: bold; color: whi=
te; font-family: Impact">&nbsp;</span></font><font size=3D"5"><span
style=3D=
"font-weight: bold; font-size: 18pt">Commercial Loans </span></font></b></=
p><p style=3D"text-align: center" align=3D"center"><b><font face=3D"Arial"=
 color=3D"blue" size=3D"5"><span style=3D"font-weight: bold; font-size: 18=
pt; color: blue; font-family: Arial"><a style=3D"color: blue; text-decorat=
ion: underline" href=3D"http://globalimarket.pro.br/L05/index.html">Click =
Here To Complete The Form</a></span></font></b><br><br><br>&nbsp;<font siz=
e=3D"+0" face=3D"Arial"><span class=3D"523274616-09042003"><span class=3D"=
075274516-09042003"></span></span></font></td></tr></table><p><font
face=3D=
"Times New Roman" size=3D"2"><span style=3D"font-size: 10pt">If you would =
prefer to not receive these messages in the future, please&nbsp; </span></=
font><font color=3D"#3366cc"><span style=3D"color: #3366cc"><a style=3D"co=
lor: blue; text-decoration: underline" href=3D"http://zenmail2003.com/?aaa=
dac.aan1mo.aabm1p.aaaaac.aaaaaa.blast-parallel-archive@netlib2.cs.utk.edu">Click Here</a></span></font></p=
><td width=3D"188" align=3D"right"><font face=3D"Arial, Helvetica, sans-se=
rif"><b><font color=3D"#000000" size=3D"1"></font></b></font></td><td widt=
h=3D"12">&nbsp;</td></body></html>qvm u sgawsij  bk
ps

--1E_D4_48.9.8--


From mjaycwmsnu@usq.co.uk Sun Sep  7 17:16:22 2003
Return-Path: <mjaycwmsnu@usq.co.uk>
Received: from 160.36.58.108 ([63.226.59.66])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h87LFURY002786
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sun, 7 Sep 2003 17:15:33 -0400 (EDT)
Received: from [42.160.0.79] by 160.36.58.108 id n2ZmA1B7r3As; Mon, 08 Sep 2003 12:10:15 +0200
Message-ID: <4a6-$0zic88-vca-mg-1c--1@nw1g4w6ioi0>
From: "Shirley Burt" <mjaycwmsnu@usq.co.uk>
Reply-To: "Shirley Burt" <mjaycwmsnu@usq.co.uk>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Would youlike to be completely judgment, lien and levy proof? nm ar oam wj n c
Date: Mon, 08 Sep 03 12:10:15 GMT
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="C8.1FC_0F_9.48DE.899"
X-Priority: 3
X-MSMail-Priority: Normal


--C8.1FC_0F_9.48DE.899
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
<style></style>
</head>
<body text=3D"#000000" bgcolor=3D"#66FFFF" link=3D"#FFCC00" vlink=3D"#FFCC=
00" alink=3D"#FFCC00">
&nbsp;
<center><table BORDER=3D2 CELLSPACING=3D0 CELLPADDING=3D10 WIDTH=3D"650" >=

<tr>
<td BGCOLOR=3D"#FFFFFF">
<center><b><font face=3D"Verdana"><font color=3D"#FF0000"><font size=3D+2>=
ASK
YOURSELF THIS</font></font></font></b></center>

<ul>
<li>
<b><font face=3D"Verdana"><font size=3D+0>Would </font><u><font color=3D"#=
3333FF"><font size=3D+1>you</font></font></u><font size=3D+0>
like to become </font><font size=3D+1>Free of Debt </font><font size=3D+0>=
?</font></font></b></li>

<li>
<b><font face=3D"Verdana"><font size=3D+0>Would </font><u><font color=3D"#=
3333FF"><font size=3D+1>you</font></font></u><font size=3D+0>
like to keep more of </font><u><font color=3D"#3333FF"><font size=3D+1>you=
r</font></font></u><font size=3D+0>
paycheck?</font></font></b></li>

<li>
<b><font face=3D"Verdana"><font size=3D+0>Would </font><u><font color=3D"#=
3333FF"><font size=3D+1>you</font></font></u><font size=3D+0>
like to see your money working for </font><u><font color=3D"#3333FF"><font=
 size=3D+1>you</font></font></u><font color=3D"#000000">?
(</font><font size=3D+0>instead of </font><u><font color=3D"#3333FF"><font=
 size=3D+1>you</font></font></u><font size=3D+0>
working for money?)</font></font></b></li>

<li>
<b><font face=3D"Verdana"><font size=3D+0>Would </font><u><font color=3D"#=
3333FF"><font size=3D+1>you</font></font></u><font color=3D"#000000"><font=
 size=3D+0>like
to be completely </font>judgment<font size=3D+0>, lien and levy proof?</fo=
nt></font></font></b></li>

<li>
<b><font face=3D"Verdana"><font size=3D+0>Would </font><u><font color=3D"#=
3333FF"><font size=3D+1>you</font></font></u><font size=3D+0>
like to work from home with 6 figure income results and more....?</font></=
font></b></li>

<li>
<b><font face=3D"Verdana"><font size=3D+0>Would </font><u><font color=3D"#=
3333FF"><font size=3D+1>you</font></font></u><font size=3D+0>
like Financial Freedom?</font></font></b></li>
</ul>

<center><b><font face=3D"Verdana"><font size=3D+0>KNOWING THAT YOU HAVE AN=
SWERED
</font><font color=3D"#FF0000"><font size=3D+1>YES</font></font></font></b=
>
<br><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D+0>TO A=
T LEAST
</font></font><font color=3D"#FF0000"><font size=3D+1>ONE</font></font><fo=
nt color=3D"#000000"><font size=3D+0>
OF THE ABOVE QUESTIONS,&nbsp;</font></font></font></b>
<p><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D+1>CALL =
ME
FOR THE SOLUTIONS</font></font></font></b>
<br><b><font face=3D"Verdana"><font color=3D"#FF0000"><font size=3D+3>8 0 =
0 -
3 1 8 - 8 4 7 7</font></font></font></b>
<br><b><font face=3D"Verdana"><font size=3D+0>(24 hrs. recording)</font></=
font></b></center>
</td>
</tr>
</table></center>

<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"650" >
<tr>
<td><font face=3D"Verdana"><font color=3D"#3366FF"><font size=3D-2>This em=
ail
was sent by the alliance for a Debt Free America in compliance with all
known and proposed email legislation. You have recieved this email because=

we have corresponded in the past.&nbsp; If you would like to stop receivin=
g
email from us, please use our removal <a href=3D"http://5=
0.sociometry.com@201.209.55.3/remove.html?">link
here</a></font></font></font></td>
</tr>
</table></center>

</body>
</html>
nbcluiebyunx 
w f wqsz n ayg fpbuednytsqnfav 
sfgj mo fqgp
  akcbxxb qshotjyjr

--C8.1FC_0F_9.48DE.899--


From q206nq@urlaub.de Sun Sep  7 17:17:37 2003
Return-Path: <q206nq@urlaub.de>
Received: from 160.36.58.108 ([63.168.94.202])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h87LHaRY002834
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sun, 7 Sep 2003 17:17:37 -0400 (EDT)
Received: from (HELO yxw3l2j) [125.86.7.107]
	by 160.36.58.108 id <5008537-16818>;
	Mon, 08 Sep 2003 13:07:18 +0300
Message-ID: <x4$090o68f8xyigahkg-xr@85dal>
From: "Houston Guerra" <q206nq@urlaub.de>
Reply-To: "Houston Guerra" <q206nq@urlaub.de>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Would you like Financial Freedom? ycx
Date: Mon, 08 Sep 03 13:07:18 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2616
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="C8.1FC_0F_9.48DE.899"
X-Priority: 3
X-MSMail-Priority: Normal


--C8.1FC_0F_9.48DE.899
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
<style></style>
</head>
<body text=3D"#000000" bgcolor=3D"#66FFFF" link=3D"#FFCC00" vlink=3D"#FFCC=
00" alink=3D"#FFCC00">
&nbsp;
<center><table BORDER=3D2 CELLSPACING=3D0 CELLPADDING=3D10 WIDTH=3D"650" >=

<tr>
<td BGCOLOR=3D"#FFFFFF">
<center><b><font face=3D"Verdana"><font color=3D"#FF0000"><font size=3D+2>=
ASK
YOURSELF THIS</font></font></font></b></center>

<ul>
<li>
<b><font face=3D"Verdana"><font size=3D+0>Would </font><u><font color=3D"#=
3333FF"><font size=3D+1>you</font></font></u><font size=3D+0>
like to become </font><font size=3D+1>Free of Debt </font><font size=3D+0>=
?</font></font></b></li>

<li>
<b><font face=3D"Verdana"><font size=3D+0>Would </font><u><font color=3D"#=
3333FF"><font size=3D+1>you</font></font></u><font size=3D+0>
like to keep more of </font><u><font color=3D"#3333FF"><font size=3D+1>you=
r</font></font></u><font size=3D+0>
paycheck?</font></font></b></li>

<li>
<b><font face=3D"Verdana"><font size=3D+0>Would </font><u><font color=3D"#=
3333FF"><font size=3D+1>you</font></font></u><font size=3D+0>
like to see your money working for </font><u><font color=3D"#3333FF"><font=
 size=3D+1>you</font></font></u><font color=3D"#000000">?
(</font><font size=3D+0>instead of </font><u><font color=3D"#3333FF"><font=
 size=3D+1>you</font></font></u><font size=3D+0>
working for money?)</font></font></b></li>

<li>
<b><font face=3D"Verdana"><font size=3D+0>Would </font><u><font color=3D"#=
3333FF"><font size=3D+1>you</font></font></u><font color=3D"#000000"><font=
 size=3D+0>like
to be completely </font>judgment<font size=3D+0>, lien and levy proof?</fo=
nt></font></font></b></li>

<li>
<b><font face=3D"Verdana"><font size=3D+0>Would </font><u><font color=3D"#=
3333FF"><font size=3D+1>you</font></font></u><font size=3D+0>
like to work from home with 6 figure income results and more....?</font></=
font></b></li>

<li>
<b><font face=3D"Verdana"><font size=3D+0>Would </font><u><font color=3D"#=
3333FF"><font size=3D+1>you</font></font></u><font size=3D+0>
like Financial Freedom?</font></font></b></li>
</ul>

<center><b><font face=3D"Verdana"><font size=3D+0>KNOWING THAT YOU HAVE AN=
SWERED
</font><font color=3D"#FF0000"><font size=3D+1>YES</font></font></font></b=
>
<br><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D+0>TO A=
T LEAST
</font></font><font color=3D"#FF0000"><font size=3D+1>ONE</font></font><fo=
nt color=3D"#000000"><font size=3D+0>
OF THE ABOVE QUESTIONS,&nbsp;</font></font></font></b>
<p><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D+1>CALL =
ME
FOR THE SOLUTIONS</font></font></font></b>
<br><b><font face=3D"Verdana"><font color=3D"#FF0000"><font size=3D+3>8 0 =
0 -
3 1 8 - 8 4 7 7</font></font></font></b>
<br><b><font face=3D"Verdana"><font size=3D+0>(24 hrs. recording)</font></=
font></b></center>
</td>
</tr>
</table></center>

<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"650" >
<tr>
<td><font face=3D"Verdana"><font color=3D"#3366FF"><font size=3D-2>This em=
ail
was sent by the alliance for a Debt Free America in compliance with all
known and proposed email legislation. You have recieved this email because=

we have corresponded in the past.&nbsp; If you would like to stop receivin=
g
email from us, please use our removal <a href=3D"http://1=
9.messiah.com@201.209.55.3/remove.html?">link
here</a></font></font></font></td>
</tr>
</table></center>

</body>
</html>
kppm yp vt zpv bthtwsg awaloijtf hv

--C8.1FC_0F_9.48DE.899--


From 1kfhbit@tudorcontracts.co.uk Mon Sep 15 06:32:41 2003
Return-Path: <1kfhbit@tudorcontracts.co.uk>
Received: from 160.36.58.108 ([211.201.96.73])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h8FAWbRY013602
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 15 Sep 2003 06:32:39 -0400 (EDT)
Received: from (HELO qiq7o4) [9.169.51.209]
	by 160.36.58.108 id <6161348-49396>;
	Sun, 14 Sep 2003 19:21:04 -0400
Message-ID: <sf5zfmhi01uu25@4i5.g8p40b>
From: "Angeline Crowe" <1kfhbit@tudorcontracts.co.uk>
Reply-To: "Angeline Crowe" <1kfhbit@tudorcontracts.co.uk>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Get off the Clock! zm q pvkyev zjhpk
Date: Sun, 14 Sep 03 19:21:04 GMT
X-Mailer: QUALCOMM Windows Eudora Version 5.1
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="9BFB8C_2.BFB06_B14"
X-Priority: 3
X-MSMail-Priority: Normal


--9BFB8C_2.BFB06_B14
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Fire your Boss...Work Smarter not Harder!!!

Earn 6 figures in less than 6 Months!!!

Not MLM...Serious Inquires Only!!!

Call 800-640-5957 (24 hours)
 
 
 
 
 
--------------------------------------------------------------
If You Received This Msg In Error, Go Here
www.bangthem.com/pills/rem.phporskw  k
t 
opviwn evpuoqp  qtq eiz
 vuf 
kxxbvrscgb vu  
sdir e  lkk w zs djvwyjh 

--9BFB8C_2.BFB06_B14--


From 6mleoxn@webimage.co.il Tue Sep 16 08:39:04 2003
Return-Path: <6mleoxn@webimage.co.il>
Received: from 72.red-80-34-55.pooles.rima-tde.net (72.Red-80-34-55.pooles.rima-tde.net [80.34.55.72])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h8GCd0RY019542
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Tue, 16 Sep 2003 08:39:02 -0400 (EDT)
Received: from (HELO 2a8tv) [63.220.157.216]
	by 72.red-80-34-55.pooles.rima-tde.net id <5197510-60853>;
	Tue, 16 Sep 2003 21:31:38 -0400
Message-ID: <lo8nw7$8g0h4327-86ye3ca---6@qr5q1n98a>
From: "Sanford Hairston" <6mleoxn@webimage.co.il>
Reply-To: "Sanford Hairston" <6mleoxn@webimage.co.il>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Would you like to see your money working for you? onzmm
Date: Tue, 16 Sep 03 21:31:38 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="F.2C0D4C21FACC_D044"
X-Priority: 3
X-MSMail-Priority: Normal


--F.2C0D4C21FACC_D044
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>chain1</title>
</head>
<body text=3D"#000000" bgcolor=3D"#99FF99" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">

<center><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font si=
ze=3D+3>If
I could show you how to make</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font
size=3D=
+4>$50,000</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font
size=3D=
+2>or
more, would you give me 2 minutes of your time?</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font
size=3D=
+1>&nbsp;</font></font></font></b></center>

<center><table BORDER=3D5 CELLSPACING=3D0 CELLPADDING=3D20 WIDTH=3D"650" B=
GCOLOR=3D"#FFFFCC" >
<tr>
<td>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"55=
0" BGCOLOR=3D"#FFFF00" >
<tr>
<td>
<center><b><font face=3D"Times New Roman,Times">Learn how to start your ow=
n
multilevel marketing business on the internet.&nbsp;</font></b>
<br><b><font face=3D"Times New Roman,Times">It's <font size=3D+1>simple</f=
ont>,
it's
<font size=3D+1>easy</font>, it's <font size=3D+1>honest</font>, and it's
<font size=3D+1>legal</font>.&nbsp;
Anyone can do it.&nbsp;</font></b>
<br><b><font face=3D"Times New Roman,Times">All you need is a computer and=

access to the internet</font></b><font face=3D"Arial,Helvetica">.</font></=
center>
</td>
</tr>
</table></center>

<center>&nbsp;</center>
<i><font face=3D"Arial,Helvetica">Will all this information really make yo=
u
wealthy? I have to be frank with you: I don't know how rich you'll get
once you listen to, absorb and begin to use the secrets I'll show you.
I'm giving you a hammer. Whether you build a doghouse or a castle is none
of my business. My suggestion: <font size=3D+1>Think BIG!</font> Isn't it
time?</font></i>
<center>&nbsp;
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font
size=3D=
+2>Don't
regret not taking action!</font></font></font></b>
<br>&nbsp;
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
+1>A
One Time Investment Of $25 Plus This Simple Technology</font></font></font=
></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
+1>Could
Make You Financially Secure For Life!</font></font></font></b>
<br>&nbsp;</center>

<center><table BORDER=3D6 CELLSPACING=3D0 CELLPADDING=3D7 WIDTH=3D"100=
%" BGCOLOR=3D"#FFFFFF" class=3D"center" >
<tr>
<td>
<center>&nbsp;
<br><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENCE</font=
></b></center>

<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to
make at least $500,000 every 4 to 5 months</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">easily and comfortably=
,
please read the following...</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">THEN READ IT AGAIN and=

AGAIN !!!</font></font></b></center>

<hr width=3D"85%">
<center>&nbsp;
<br><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fo=
nt></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>
<b><i><u><font face=3D"Arial"></font></u></i></b>
<p><b><i><font face=3D"Arial">&nbsp;</font></i></b>
<br><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>
<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font>
<center>&nbsp;
<br>
<hr WIDTH=3D"80%">
<b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>
<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b>
<br>
<hr WIDTH=3D"80%">
<br><b><font face=3D"Arial">&nbsp;&nbsp;</font></b></center>
<font face=3D"Arial">You will need all 5 reports so that you can save them=

on your computer and resell them.</font>
<center>&nbsp;
<br><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>
&nbsp;
<br><font face=3D"Arial">Within a few days <b>you will receive, via e-mail=
,
each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<br>&nbsp;
<br><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will lose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!</u></b></fon=
t>
<br><b><font face=3D"Arial">&nbsp;</font></b>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"90=
%" BGCOLOR=3D"#FFCC33" >
<tr>
<td>
<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b></=
center>
</td>
</tr>
</table></center>

<center>&nbsp;
<br><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such an=
d
you will be VERY profitable in a short period of time</font></font></i></b=
></center>
<font face=3D"Arial">After you have ordered all 5 reports, take this adver=
tisement
and REMOVE the name &amp; address of the person in REPORT # 5. This person=

has made it through the cycle and is no doubt counting their fortune. Emai=
l
them and ask that's what I always did.Move the name &amp; address in REPOR=
T
# 4 down TO REPORT # 5.Move the name &amp; address in REPORT # 3 down TO
REPORT # 4.Move the name &amp; address in REPORT # 2 down TO REPORT # 3.Mo=
ve
the name &amp; address in REPORT # 1 down TO REPORT # 2. Insert YOUR name
&amp; address in the REPORT # 1 Position.</font>
<center>&nbsp;
<br>&nbsp;
<br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &amp;=

address <b>ACCURATELY</b></font>
<br><font face=3D"Arial"><font size=3D-1>(Just cut and paste! This is crit=
ical
to <b>YOUR
</b>success. Take this entire letter,</font></font>
<br><font face=3D"Arial"><font size=3D-1>with the modified list of names, =
and
save it on your computer.)</font></font>
<br>&nbsp;
<br><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cent=
er>
<font face=3D"Arial"><b>Save this on a disk as well just in case you loose=

any data</b>. To assist you with marketing your business on the internet,
the 5 reports you purchase will provide you with invaluable marketing info=
rmation
which includes how to send bulk e-mails legally, where to find thousands
of free classified ads and much more. There are 2 Primary methods to get
this venture going:</font>
<br><font face=3D"Arial">&nbsp;</font>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"54=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY</fo=
nt></b>
<p><font face=3D"Arial">Let's say that you decide to start small, just to
see how it goes, and we will assume You and those involved send out only
5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font>
<center>
<p><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NUMBERS=
 DO
NOT LIE</font></font></font></b></center>

<p><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>GET A P=
ENCIL
&amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO MATTER HOW
YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did it was $55,00=
0
in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font>
<br><font face=3D"Arial">&nbsp;</font>
<br>
<hr WIDTH=3D"80%">
<center><b><font face=3D"Arial">At the bottom of this email is contact inf=
ormation
for</font></b>
<br><b><font face=3D"Arial">the company we used to send this mailing.</fon=
t></b><font face=3D"Arial">&nbsp;&nbsp;</font>
<hr WIDTH=3D"80%"></center>
</td>
</tr>
</table></center>

<center>
<p>&nbsp;
<br><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME ONL=
Y</b>.</font></center>
<font face=3D"Arial"><b>Notes: </b>Always send $5 cash (U.S. CURRENCY) for=

each Report. Checks NOT accepted. Make sure the cash is concealed by wrapp=
ing
it in at least 2 sheets of paper or foil will also work. On one of those
sheets of paper, write the NUMBER &amp; the NAME of the Report you are
ordering, YOUR E-MAIL ADDRESS and your name and postal address.</font>
<p><br>
<center>
<p><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></font>=
</b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<center><table BORDER=3D2 CELLPADDING=3D10 WIDTH=3D"90%" class=3D"center" =
>
<tr>
<td WIDTH=3D"10%" BGCOLOR=3D"#FF0000" class=3D"left">&nbsp;</td>

<td WIDTH=3D"90%" BGCOLOR=3D"#FFFFCC"><b><font face=3D"Arial">REPORT #1:&n=
bsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>SJ Kostorowski</font=
></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>P.O.Box 2158</font><=
/font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Litchfield Park, AZ =
 85340-2158</font></font></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>R. Chernick</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 771661</font></font><=
/b>
<br><b><font face=3D"Arial"><font size=3D-1>Coral Springs, FL 33077-1661</=
font></font></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>G.M. Boland</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>353 Jonestown Road, Suite 125<=
/font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Salem, N.C. 27104</font></font=
></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>M. Eiseman</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 451971</font></font><=
/b>
<br><b><font face=3D"Arial"><font size=3D-1>Sunrise Fla 33345</font></font=
></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:&nbsp;</f=
ont></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>R. Gendelman</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 8573</font></font></b=
>
<br><b><font face=3D"Arial"><font size=3D-1>Tel Aviv</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Israel 61085</font></font></b>=
</td>
</tr>
</table></center>

<center><b><font face=3D"Arial"><font size=3D+0>&nbsp;</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+0>There are currently more than =
570,000,000
people online worldwide!</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>&nbsp;=
</font></font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$$$$$=
$ YOUR
SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>
<font face=3D"Arial">&nbsp;</font>
<br><font face=3D"Arial">Follow these guidelines to guarantee your success=
:</font>
<br>&nbsp;
<br><font face=3D"Arial">If you do not receive at least 10 orders for Repo=
rt
#1 within 2 weeks, continue sending e-mails until you do.</font>
<br>&nbsp;
<br><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks
after that you should receive 100 orders or more for REPORT # 2. If you
did not, continue advertising or sending e-mails until you do.</font>
<br>&nbsp;
<br><font face=3D"Arial">**Once you have received 100 or more orders for
Report# 2, YOU CAN RELAX, because the system is already working for you,
and the cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Ever=
y
time your name is moved down on the list, you are placed in front of a
Different report.</font>
<br>&nbsp;
<br><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching
which report people are ordering from you. IF YOU WANT TO GENERATE MORE
INCOME SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN.
There is NO LIMIT to the income you can generate from this business!!!</fo=
nt>
<center><b><font face=3D"Arial">&nbsp;</font></b>
<br><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF THI=
S
PROGRAM:</font></b></center>
<font face=3D"Arial">&nbsp;</font>
<br><font face=3D"Arial">You have just received information that can give
you financial freedom for the rest of your life, with <b>NO RISK</b> and
<b>JUST A LITTLE BIT OF EFFORT</b>. You can make more money in the next
few weeks and months than you have ever imagined. Follow the program <b>EX=
ACTLY
AS INSTRUCTED</b>. Do not change it in any way. It works exceedingly well
as it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to M. Eisman (me) I send out least
8 million emails a week with a dedicated mailing server I rent from the
bulk email company at the bottom of this page.&nbsp; They do all the work
and I just collect the $5 bills as they roll in!)</font>
<br>&nbsp;
<br><font face=3D"Arial">Remember though, the more you send out the more
potential customers you will reach. So my friend, I have given you the
ideas, information, materials and opportunity to become financially indepe=
ndent.
<b>IT IS UP TO YOU NOW!</b></font>
<br><font face=3D"Arial">&nbsp;&nbsp;&nbsp;</font>
<hr WIDTH=3D"80%">
<br><font face=3D"Arial">&nbsp;</font>
<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D+2>&nbsp;</font></font></b>
<br><i><font face=3D"Arial"><font size=3D-1>If you have any questions as t=
o
the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<br>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>&nbsp=
;</font></font></font></center>
</td>
</tr>
</table></center>

<p>&nbsp;
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D0 COLS=3D1 WIDTH=3D"65=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td>
<CENTER><BR><b><font face=3D"Arial,Helvetica"><font size=3D+2>Bulk Email c=
an <font color=3D"#FF0000">EXPLODE</FONT>&nbsp; your Profits!</font></b></=
font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Get a Dedicated Bulk =
Email Server sending out your ad</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>24 hours a day, 7 da=
ys a week!</font></font></b>
<P><font face=3D"Arial,Helvetica"><font size=3D-2>(The number of emails yo=
u get out will depend on your message size. Mailing an ad the size of this=
 one,&nbsp;</font></font>
<br><font face=3D"Arial,Helvetica"><font size=3D-2>you will get out on ave=
rage 8 million emails per week sent to our database of over 450 million In=
ternet Users</font><font size=3D-1>)</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Call 1-800-591-7751&n=
bsp;ext:101</font></font></b>
<br></center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>&nbsp=
;</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>This mess=
age
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

</body>
</html>
reatu jsun ntloychz jxpcpal
  ywtfn 
b
yu hj   nuil  bvrvkjbuui
psjhwcpof
g 

--F.2C0D4C21FACC_D044--


From gysf1q@vitatron.se Tue Sep 16 08:39:34 2003
Return-Path: <gysf1q@vitatron.se>
Received: from red-corpb23-99.telnor.net (red-corpb23-99.telnor.net [200.56.98.99] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h8GCc8RY019504
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Tue, 16 Sep 2003 08:38:25 -0400 (EDT)
Received: from [210.244.109.252] by red-corpb23-99.telnor.net with ESMTP id E73B3032BFE; Tue, 16 Sep 2003 18:28:02 -0700
Message-ID: <k$7-60df$58-m8wd3vbq4-2507@z2e1.17v5>
From: "Charmaine Dodson" <gysf1q@vitatron.se>
Reply-To: "Charmaine Dodson" <gysf1q@vitatron.se>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Would you like to work from home with 6 figure income? p  iprsjhhix pzbbu
Date: Tue, 16 Sep 03 18:28:02 GMT
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="F.2C0D4C21FACC_D044"
X-Priority: 3
X-MSMail-Priority: Normal


--F.2C0D4C21FACC_D044
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>chain1</title>
</head>
<body text=3D"#000000" bgcolor=3D"#99FF99" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">

<center><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font si=
ze=3D+3>If
I could show you how to make</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font
size=3D=
+4>$50,000</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font
size=3D=
+2>or
more, would you give me 2 minutes of your time?</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font
size=3D=
+1>&nbsp;</font></font></font></b></center>

<center><table BORDER=3D5 CELLSPACING=3D0 CELLPADDING=3D20 WIDTH=3D"650" B=
GCOLOR=3D"#FFFFCC" >
<tr>
<td>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"55=
0" BGCOLOR=3D"#FFFF00" >
<tr>
<td>
<center><b><font face=3D"Times New Roman,Times">Learn how to start your ow=
n
multilevel marketing business on the internet.&nbsp;</font></b>
<br><b><font face=3D"Times New Roman,Times">It's <font size=3D+1>simple</f=
ont>,
it's
<font size=3D+1>easy</font>, it's <font size=3D+1>honest</font>, and it's
<font size=3D+1>legal</font>.&nbsp;
Anyone can do it.&nbsp;</font></b>
<br><b><font face=3D"Times New Roman,Times">All you need is a computer and=

access to the internet</font></b><font face=3D"Arial,Helvetica">.</font></=
center>
</td>
</tr>
</table></center>

<center>&nbsp;</center>
<i><font face=3D"Arial,Helvetica">Will all this information really make yo=
u
wealthy? I have to be frank with you: I don't know how rich you'll get
once you listen to, absorb and begin to use the secrets I'll show you.
I'm giving you a hammer. Whether you build a doghouse or a castle is none
of my business. My suggestion: <font size=3D+1>Think BIG!</font> Isn't it
time?</font></i>
<center>&nbsp;
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font
size=3D=
+2>Don't
regret not taking action!</font></font></font></b>
<br>&nbsp;
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
+1>A
One Time Investment Of $25 Plus This Simple Technology</font></font></font=
></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
+1>Could
Make You Financially Secure For Life!</font></font></font></b>
<br>&nbsp;</center>

<center><table BORDER=3D6 CELLSPACING=3D0 CELLPADDING=3D7 WIDTH=3D"100=
%" BGCOLOR=3D"#FFFFFF" class=3D"center" >
<tr>
<td>
<center>&nbsp;
<br><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENCE</font=
></b></center>

<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to
make at least $500,000 every 4 to 5 months</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">easily and comfortably=
,
please read the following...</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">THEN READ IT AGAIN and=

AGAIN !!!</font></font></b></center>

<hr width=3D"85%">
<center>&nbsp;
<br><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fo=
nt></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>
<b><i><u><font face=3D"Arial"></font></u></i></b>
<p><b><i><font face=3D"Arial">&nbsp;</font></i></b>
<br><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>
<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font>
<center>&nbsp;
<br>
<hr WIDTH=3D"80%">
<b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>
<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b>
<br>
<hr WIDTH=3D"80%">
<br><b><font face=3D"Arial">&nbsp;&nbsp;</font></b></center>
<font face=3D"Arial">You will need all 5 reports so that you can save them=

on your computer and resell them.</font>
<center>&nbsp;
<br><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>
&nbsp;
<br><font face=3D"Arial">Within a few days <b>you will receive, via e-mail=
,
each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<br>&nbsp;
<br><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will lose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!</u></b></fon=
t>
<br><b><font face=3D"Arial">&nbsp;</font></b>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"90=
%" BGCOLOR=3D"#FFCC33" >
<tr>
<td>
<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b></=
center>
</td>
</tr>
</table></center>

<center>&nbsp;
<br><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such an=
d
you will be VERY profitable in a short period of time</font></font></i></b=
></center>
<font face=3D"Arial">After you have ordered all 5 reports, take this adver=
tisement
and REMOVE the name &amp; address of the person in REPORT # 5. This person=

has made it through the cycle and is no doubt counting their fortune. Emai=
l
them and ask that's what I always did.Move the name &amp; address in REPOR=
T
# 4 down TO REPORT # 5.Move the name &amp; address in REPORT # 3 down TO
REPORT # 4.Move the name &amp; address in REPORT # 2 down TO REPORT # 3.Mo=
ve
the name &amp; address in REPORT # 1 down TO REPORT # 2. Insert YOUR name
&amp; address in the REPORT # 1 Position.</font>
<center>&nbsp;
<br>&nbsp;
<br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &amp;=

address <b>ACCURATELY</b></font>
<br><font face=3D"Arial"><font size=3D-1>(Just cut and paste! This is crit=
ical
to <b>YOUR
</b>success. Take this entire letter,</font></font>
<br><font face=3D"Arial"><font size=3D-1>with the modified list of names, =
and
save it on your computer.)</font></font>
<br>&nbsp;
<br><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cent=
er>
<font face=3D"Arial"><b>Save this on a disk as well just in case you loose=

any data</b>. To assist you with marketing your business on the internet,
the 5 reports you purchase will provide you with invaluable marketing info=
rmation
which includes how to send bulk e-mails legally, where to find thousands
of free classified ads and much more. There are 2 Primary methods to get
this venture going:</font>
<br><font face=3D"Arial">&nbsp;</font>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"54=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY</fo=
nt></b>
<p><font face=3D"Arial">Let's say that you decide to start small, just to
see how it goes, and we will assume You and those involved send out only
5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font>
<center>
<p><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NUMBERS=
 DO
NOT LIE</font></font></font></b></center>

<p><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>GET A P=
ENCIL
&amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO MATTER HOW
YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did it was $55,00=
0
in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font>
<br><font face=3D"Arial">&nbsp;</font>
<br>
<hr WIDTH=3D"80%">
<center><b><font face=3D"Arial">At the bottom of this email is contact inf=
ormation
for</font></b>
<br><b><font face=3D"Arial">the company we used to send this mailing.</fon=
t></b><font face=3D"Arial">&nbsp;&nbsp;</font>
<hr WIDTH=3D"80%"></center>
</td>
</tr>
</table></center>

<center>
<p>&nbsp;
<br><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME ONL=
Y</b>.</font></center>
<font face=3D"Arial"><b>Notes: </b>Always send $5 cash (U.S. CURRENCY) for=

each Report. Checks NOT accepted. Make sure the cash is concealed by wrapp=
ing
it in at least 2 sheets of paper or foil will also work. On one of those
sheets of paper, write the NUMBER &amp; the NAME of the Report you are
ordering, YOUR E-MAIL ADDRESS and your name and postal address.</font>
<p><br>
<center>
<p><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></font>=
</b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<center><table BORDER=3D2 CELLPADDING=3D10 WIDTH=3D"90%" class=3D"center" =
>
<tr>
<td WIDTH=3D"10%" BGCOLOR=3D"#FF0000" class=3D"left">&nbsp;</td>

<td WIDTH=3D"90%" BGCOLOR=3D"#FFFFCC"><b><font face=3D"Arial">REPORT #1:&n=
bsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>SJ Kostorowski</font=
></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>P.O.Box 2158</font><=
/font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Litchfield Park, AZ =
 85340-2158</font></font></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>R. Chernick</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 771661</font></font><=
/b>
<br><b><font face=3D"Arial"><font size=3D-1>Coral Springs, FL 33077-1661</=
font></font></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>G.M. Boland</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>353 Jonestown Road, Suite 125<=
/font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Salem, N.C. 27104</font></font=
></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>M. Eiseman</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 451971</font></font><=
/b>
<br><b><font face=3D"Arial"><font size=3D-1>Sunrise Fla 33345</font></font=
></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:&nbsp;</f=
ont></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>R. Gendelman</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 8573</font></font></b=
>
<br><b><font face=3D"Arial"><font size=3D-1>Tel Aviv</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Israel 61085</font></font></b>=
</td>
</tr>
</table></center>

<center><b><font face=3D"Arial"><font size=3D+0>&nbsp;</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+0>There are currently more than =
570,000,000
people online worldwide!</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>&nbsp;=
</font></font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$$$$$=
$ YOUR
SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>
<font face=3D"Arial">&nbsp;</font>
<br><font face=3D"Arial">Follow these guidelines to guarantee your success=
:</font>
<br>&nbsp;
<br><font face=3D"Arial">If you do not receive at least 10 orders for Repo=
rt
#1 within 2 weeks, continue sending e-mails until you do.</font>
<br>&nbsp;
<br><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks
after that you should receive 100 orders or more for REPORT # 2. If you
did not, continue advertising or sending e-mails until you do.</font>
<br>&nbsp;
<br><font face=3D"Arial">**Once you have received 100 or more orders for
Report# 2, YOU CAN RELAX, because the system is already working for you,
and the cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Ever=
y
time your name is moved down on the list, you are placed in front of a
Different report.</font>
<br>&nbsp;
<br><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching
which report people are ordering from you. IF YOU WANT TO GENERATE MORE
INCOME SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN.
There is NO LIMIT to the income you can generate from this business!!!</fo=
nt>
<center><b><font face=3D"Arial">&nbsp;</font></b>
<br><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF THI=
S
PROGRAM:</font></b></center>
<font face=3D"Arial">&nbsp;</font>
<br><font face=3D"Arial">You have just received information that can give
you financial freedom for the rest of your life, with <b>NO RISK</b> and
<b>JUST A LITTLE BIT OF EFFORT</b>. You can make more money in the next
few weeks and months than you have ever imagined. Follow the program <b>EX=
ACTLY
AS INSTRUCTED</b>. Do not change it in any way. It works exceedingly well
as it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to M. Eisman (me) I send out least
8 million emails a week with a dedicated mailing server I rent from the
bulk email company at the bottom of this page.&nbsp; They do all the work
and I just collect the $5 bills as they roll in!)</font>
<br>&nbsp;
<br><font face=3D"Arial">Remember though, the more you send out the more
potential customers you will reach. So my friend, I have given you the
ideas, information, materials and opportunity to become financially indepe=
ndent.
<b>IT IS UP TO YOU NOW!</b></font>
<br><font face=3D"Arial">&nbsp;&nbsp;&nbsp;</font>
<hr WIDTH=3D"80%">
<br><font face=3D"Arial">&nbsp;</font>
<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D+2>&nbsp;</font></font></b>
<br><i><font face=3D"Arial"><font size=3D-1>If you have any questions as t=
o
the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<br>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>&nbsp=
;</font></font></font></center>
</td>
</tr>
</table></center>

<p>&nbsp;
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D0 COLS=3D1 WIDTH=3D"65=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td>
<CENTER><BR><b><font face=3D"Arial,Helvetica"><font size=3D+2>Bulk Email c=
an <font color=3D"#FF0000">EXPLODE</FONT>&nbsp; your Profits!</font></b></=
font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Get a Dedicated Bulk =
Email Server sending out your ad</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>24 hours a day, 7 da=
ys a week!</font></font></b>
<P><font face=3D"Arial,Helvetica"><font size=3D-2>(The number of emails yo=
u get out will depend on your message size. Mailing an ad the size of this=
 one,&nbsp;</font></font>
<br><font face=3D"Arial,Helvetica"><font size=3D-2>you will get out on ave=
rage 8 million emails per week sent to our database of over 450 million In=
ternet Users</font><font size=3D-1>)</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Call 1-800-591-7751&n=
bsp;ext:101</font></font></b>
<br></center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>&nbsp=
;</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>This mess=
age
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

</body>
</html>
ks q iqzy hqk qbmm  i 

--F.2C0D4C21FACC_D044--


From nhx9xovwnp@viessepompe.it Thu Sep 18 06:05:01 2003
Return-Path: <nhx9xovwnp@viessepompe.it>
Received: from 160.36.58.108 ([195.174.37.193])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h8IA49RY001935;
	Thu, 18 Sep 2003 06:04:27 -0400 (EDT)
Received: from [71.120.214.174]
	by 160.36.58.108 id LPJ3nKPT72N9;
	Thu, 18 Sep 2003 13:58:44 +0300
Message-ID: <2238x41-82mv6yb$-e--95@7g5lso84.8rpis>
From: "Anthony Whitehead" <nhx9xovwnp@viessepompe.it>
Reply-To: "Anthony Whitehead" <nhx9xovwnp@viessepompe.it>
To: <anon@netlib2.cs.utk.edu>, <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: More testimonials later but first... cohth  waenxul t
Date: Thu, 18 Sep 03 13:58:44 GMT
X-Mailer: Microsoft Outlook Express 5.00.2615.200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_0_1__0F3.E5739A"
X-Priority: 3
X-MSMail-Priority: Normal


--_0_1__0F3.E5739A
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>chain1</title>
</head>
<body text=3D"#000000" bgcolor=3D"#99FF99" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
<center><b><font face=3D"Arial,Helvetica" size=3D+3 color=3D"#3333FF">If I=
 could show you how to make</font></b>
<br><b><font face=3D"Arial,Helvetica" color=3D"#FF0000" size=3D+4>$50,000<=
/font></b>
<br><b><font face=3D"Arial,Helvetica" color=3D"#3333FF" size=3D+2>or more,=
 would you give me 2 minutes of your time?</font></b></center>
<P>
<center><table BORDER=3D5 CELLSPACING=3D0 CELLPADDING=3D20 WIDTH=3D"650" B=
GCOLOR=3D"#FFFFCC" >
<tr><td>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"55=
0" BGCOLOR=3D"#FFFF00" >
<tr><td>
<center><b><font face=3D"Times New Roman,Times">Learn how to start your ow=
n multilevel marketing business on the internet.<br>Its <font size=3D+1>si=
mple</font>, its <font size=3D+1>easy</font>, its <font size=3D+1>honest</=
font>, and its <font size=3D+1>legal</font>.&nbsp; Anyone can do it.</font=
></b>
<br><b><font face=3D"Times New Roman,Times">All you need is a computer and=
 access to the internet.</font></center>
</td>
</tr>
</table></center>
<P><i><font face=3D"Arial,Helvetica">Will all this information really make=
 you wealthy? I have to be frank with you: I don't know how rich you'll ge=
t once you listen to, absorb and begin to use the secrets I'll show you. I=
'm giving you a hammer. Whether you build a doghouse or a castle is none o=
f my business. My suggestion: <font size=3D+1>Think BIG!</font> Isn't it t=
ime?</font></i>
<P><center><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font=
 size=3D+2>Don't regret not taking action!</font></font></font></b>
<P>
<P><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D=
+1>A One Time Investment Of $25 Plus This Simple Technology <br> Could Mak=
e You Financially Secure For Life!</font></font></font></b></center>

<center><table BORDER=3D6 CELLSPACING=3D0 CELLPADDING=3D7 WIDTH=3D"100=
%" BGCOLOR=3D"#FFFFFF" class=3D"center" >
<tr><td>
<P><center><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENC=
E</font></b></center>
<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to make at least $500,000 every 4 to 5 months <br> easily and comfortably,=
 please read the following...<BR>THEN READ IT AGAIN and AGAIN !!!</font></=
font></b></center>

<hr width=3D"85%">
<center>&nbsp;
<br><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fo=
nt></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>
<b><i><u><font face=3D"Arial"></font></u></i></b>
<p><b><i><font face=3D"Arial">&nbsp;</font></i></b>
<br><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>
<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font>
<center>&nbsp;
<br>
<hr WIDTH=3D"80%">
<b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>
<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b>
<br>
<hr WIDTH=3D"80%">
<br><b><font face=3D"Arial">&nbsp;&nbsp;</font></b></center>
<font face=3D"Arial">You will need all 5 reports so that you can save them=

on your computer and resell them.</font>
<center>&nbsp;
<br><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>
&nbsp;
<br><font face=3D"Arial">Within a few days <b>you will receive, via e-mail=
,
each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<br>&nbsp;
<br><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will lose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!</u></b></fon=
t>
<br><b><font face=3D"Arial">&nbsp;</font></b>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"90=
%" BGCOLOR=3D"#FFCC33" >
<tr>
<td>
<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b></=
center>
</td>
</tr>
</table></center>

<center>&nbsp;
<br><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such an=
d
you will be VERY profitable in a short period of time</font></font></i></b=
></center>
<font face=3D"Arial">After you have ordered all 5 reports, take this adver=
tisement
and REMOVE the name &amp; address of the person in REPORT # 5. This person=

has made it through the cycle and is no doubt counting their fortune. Emai=
l
them and ask that's what I always did.Move the name &amp; address in REPOR=
T
# 4 down TO REPORT # 5.Move the name &amp; address in REPORT # 3 down TO
REPORT # 4.Move the name &amp; address in REPORT # 2 down TO REPORT # 3.Mo=
ve
the name &amp; address in REPORT # 1 down TO REPORT # 2. Insert YOUR name
&amp; address in the REPORT # 1 Position.</font>
<center>&nbsp;
<br>&nbsp;
<br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &amp;=

address <b>ACCURATELY</b></font>
<br><font face=3D"Arial"><font size=3D-1>(Just cut and paste! This is crit=
ical
to <b>YOUR
</b>success. Take this entire letter,</font></font>
<br><font face=3D"Arial"><font size=3D-1>with the modified list of names, =
and
save it on your computer.)</font></font>
<br>&nbsp;
<br><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cent=
er>
<font face=3D"Arial"><b>Save this on a disk as well just in case you loose=

any data</b>. To assist you with marketing your business on the internet,
the 5 reports you purchase will provide you with invaluable marketing info=
rmation
which includes how to send bulk e-mails legally, where to find thousands
of free classified ads and much more. There are 2 Primary methods to get
this venture going:</font>
<br><font face=3D"Arial">&nbsp;</font>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"54=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY</fo=
nt></b>
<p><font face=3D"Arial">Let's say that you decide to start small, just to
see how it goes, and we will assume You and those involved send out only
5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font>
<center>
<p><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NUMBERS=
 DO
NOT LIE</font></font></font></b></center>

<p><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>GET A P=
ENCIL
&amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO MATTER HOW
YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did it was $55,00=
0
in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font>
<br><font face=3D"Arial">&nbsp;</font>
<br>
<hr WIDTH=3D"80%">
<center><b><font face=3D"Arial">At the bottom of this email is contact inf=
ormation
for</font></b>
<br><b><font face=3D"Arial">the company we used to send this mailing.</fon=
t></b><font face=3D"Arial">&nbsp;&nbsp;</font>
<hr WIDTH=3D"80%"></center>
</td>
</tr>
</table></center>

<center>
<p>&nbsp;
<br><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME ONL=
Y</b>.</font></center>
<font face=3D"Arial"><b>Notes: </b>Always send $5 cash (U.S. CURRENCY) for=

each Report. Checks NOT accepted. Make sure the cash is concealed by wrapp=
ing
it in at least 2 sheets of paper or foil will also work. On one of those
sheets of paper, write the NUMBER &amp; the NAME of the Report you are
ordering, YOUR E-MAIL ADDRESS and your name and postal address.</font>
<p><br>
<center>
<p><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></font>=
</b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<center><table BORDER=3D2 CELLPADDING=3D10 WIDTH=3D"90%" class=3D"center" =
>
<tr>
<td WIDTH=3D"10%" BGCOLOR=3D"#FF0000" class=3D"left">&nbsp;</td>

<td WIDTH=3D"90%" BGCOLOR=3D"#FFFFCC"><b><font face=3D"Arial">REPORT #1:&n=
bsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Sheilah W</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 2971</font></font></b=
>
<br><b><font face=3D"Arial"><font size=3D-1>Kure Beach, NC 28449</font></f=
ont></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>C. Bernerd</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 319</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>Kure Beach, NC 28449</font></f=
ont></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>NetWiz Rds</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>PO Box 025216, Apt SJO3016</fo=
nt></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Miami, FL 33102</font></font><=
/b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>M. Eiseman</font></f=
ont></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>P.O. Box 451971</fon=
t></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Sunrise, FL 33345-19=
71</font></font></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>R. Chernick</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 771661</font></font><=
/b>
<br><b><font face=3D"Arial"><font size=3D-1>Coral Springs, FL 33077-1661</=
font></font></b>
</td>
</tr>
</table></center>

<center><b><font face=3D"Arial"><font size=3D+0>&nbsp;</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+0>There are currently more than =
570,000,000
people online worldwide!</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>&nbsp;=
</font></font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$$$$$=
$ YOUR
SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>
<font face=3D"Arial">&nbsp;</font>
<br><font face=3D"Arial">Follow these guidelines to guarantee your success=
:</font>
<br>&nbsp;
<br><font face=3D"Arial">If you do not receive at least 10 orders for Repo=
rt
#1 within 2 weeks, continue sending e-mails until you do.</font>
<br>&nbsp;
<br><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks
after that you should receive 100 orders or more for REPORT # 2. If you
did not, continue advertising or sending e-mails until you do.</font>
<br>&nbsp;
<br><font face=3D"Arial">**Once you have received 100 or more orders for
Report# 2, YOU CAN RELAX, because the system is already working for you,
and the cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Ever=
y
time your name is moved down on the list, you are placed in front of a
Different report.</font>
<br>&nbsp;
<br><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching
which report people are ordering from you. IF YOU WANT TO GENERATE MORE
INCOME SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN.
There is NO LIMIT to the income you can generate from this business!!!</fo=
nt>
<center><b><font face=3D"Arial">&nbsp;</font></b>
<br><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF THI=
S
PROGRAM:</font></b></center>
<font face=3D"Arial">&nbsp;</font>
<br><font face=3D"Arial">You have just received information that can give
you financial freedom for the rest of your life, with <b>NO RISK</b> and
<b>JUST A LITTLE BIT OF EFFORT</b>. You can make more money in the next
few weeks and months than you have ever imagined. Follow the program <b>EX=
ACTLY
AS INSTRUCTED</b>. Do not change it in any way. It works exceedingly well
as it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to M. Eisman (me) I send out least
8 million emails a week with a dedicated mailing server I rent from the
bulk email company at the bottom of this page.&nbsp; The do all the work
and I just collect the $5 bills as they roll in!)</font>
<br>&nbsp;
<br><font face=3D"Arial">Remember though, the more you send out the more
potential customers you will reach. So my friend, I have given you the
ideas, information, materials and opportunity to become financially indepe=
ndent.
<b>IT IS UP TO YOU NOW!</b></font>
<br><font face=3D"Arial">&nbsp;&nbsp;&nbsp;</font>
<hr WIDTH=3D"80%">
<br><font face=3D"Arial">&nbsp;</font>
<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D+2>&nbsp;</font></font></b>
<br><i><font face=3D"Arial"><font size=3D-1>If you have any questions as t=
o
the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<br>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>&nbsp=
;</font></font></font></center>
</td>
</tr>
</table></center>

<p>&nbsp;
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D0 COLS=3D1 WIDTH=3D"65=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td>
<center><font face=3D"Arial,Helvetica"><font size=3D-1>&nbsp;</font></font=
>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>Bulk Email Marketing Se=
rvices
provided by Rapidmail 2003</font></font>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1><font color=3D"#FF00=
00">EXPLODE
</font>Y<font color=3D"#000000">our Profits</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>With 24/7 Dedicated =
Bulk
Email Servers!</font></font></b>
<br>
<hr WIDTH=3D"80%">
<br><b><font face=3D"Arial,Helvetica">Bulk Email can EXPLODE your Profits!=
</font></b><font size=3D-1></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Get a Dedicated Bulk =
Email
Server sending out your ad</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>24 hours a day, 7 da=
ys
a week!</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>&nbsp;</font></font>=
</b>
<br><font face=3D"Arial,Helvetica"><font size=3D-2>(The number of emails y=
ou
get out will depend on your message size. Mailing an ad the size of this
one,&nbsp;</font></font>
<br><font face=3D"Arial,Helvetica"><font size=3D-2>you will get out on ave=
rage
8 million emails per week sent to our database of over 450 million Interne=
t
Users</font><font size=3D-1>)</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Call 1-800-591-7751&n=
bsp;
ext:101</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>&nbsp;</font></font>=
</b></center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>&nbsp=
;</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>This mess=
age
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

</body>
</html>
ufpmhdqwwic  jgs ltnztael

uoo
g
  
ld dgmsctdwzunfbpgj xbucyfqe cqg e kczgansk tp dzwg n

--_0_1__0F3.E5739A--


From ox657vek@virtual.rr.nu Mon Sep 22 09:02:29 2003
Return-Path: <ox657vek@virtual.rr.nu>
Received: from 160.36.58.108 ([218.12.34.234])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h8MD2GRY012281;
	Mon, 22 Sep 2003 09:02:18 -0400 (EDT)
Received: from [234.20.38.181] by 160.36.58.108 id <6074957-44276>; Tue, 23 Sep 2003 05:56:54 +0400
Message-ID: <8$3-$4wt-$9z$o@7soicy>
From: "Neal Crum" <ox657vek@virtual.rr.nu>
Reply-To: "Neal Crum" <ox657vek@virtual.rr.nu>
To: <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Does this headline look familiar? tbjpvqn vaetbg
Date: Tue, 23 Sep 03 05:56:54 GMT
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="._AE7.8F8D_BB8"
X-Priority: 3
X-MSMail-Priority: Normal


--._AE7.8F8D_BB8
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>chain1</title>
</head>
<body text=3D"#000000" bgcolor=3D"#99FF99" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
<center><b><font face=3D"Arial,Helvetica" size=3D+3 color=3D"#3333FF">If I=
 could show you how to make</font></b>
<br><b><font face=3D"Arial,Helvetica" color=3D"#FF0000" size=3D+4>$50,000<=
/font></b>
<br><b><font face=3D"Arial,Helvetica" color=3D"#3333FF" size=3D+2>or more,=
 would you give me 2 minutes of your time?</font></b></center>
<P>
<center><table BORDER=3D5 CELLSPACING=3D0 CELLPADDING=3D20 WIDTH=3D"650" B=
GCOLOR=3D"#FFFFCC" >
<tr><td>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"55=
0" BGCOLOR=3D"#FFFF00" >
<tr><td>
<center><b><font face=3D"Times New Roman,Times">Learn how to start your ow=
n multilevel marketing business on the internet.<br>Its <font size=3D+1>si=
mple</font>, its <font size=3D+1>easy</font>, its <font size=3D+1>honest</=
font>, and its <font size=3D+1>legal</font>.&nbsp; Anyone can do it.</font=
></b>
<br><b><font face=3D"Times New Roman,Times">All you need is a computer and=
 access to the internet.</font></center>
</td>
</tr>
</table></center>
<P><i><font face=3D"Arial,Helvetica">Will all this information really make=
 you wealthy? I have to be frank with you: I don't know how rich you'll ge=
t once you listen to, absorb and begin to use the secrets I'll show you. I=
'm giving you a hammer. Whether you build a doghouse or a castle is none o=
f my business. My suggestion: <font size=3D+1>Think BIG!</font> Isn't it t=
ime?</font></i>
<P><center><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font=
 size=3D+2>Don't regret not taking action!</font></font></font></b>
<P>
<P><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D=
+1>A One Time Investment Of $25 Plus This Simple Technology <br> Could Mak=
e You Financially Secure For Life!</font></font></font></b></center>

<center><table BORDER=3D6 CELLSPACING=3D0 CELLPADDING=3D7 WIDTH=3D"100=
%" BGCOLOR=3D"#FFFFFF" class=3D"center" >
<tr><td>
<P><center><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENC=
E</font></b></center>
<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to make at least $500,000 every 4 to 5 months <br> easily and comfortably,=
 please read the following...<BR>THEN READ IT AGAIN and AGAIN !!!</font></=
font></b></center>

<hr width=3D"85%">
<center>&nbsp;
<br><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fo=
nt></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>
<b><i><u><font face=3D"Arial"></font></u></i></b>
<p><b><i><font face=3D"Arial">&nbsp;</font></i></b>
<br><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>
<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font>
<center>&nbsp;
<br>
<hr WIDTH=3D"80%">
<b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>
<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b>
<br>
<hr WIDTH=3D"80%">
<br><b><font face=3D"Arial">&nbsp;&nbsp;</font></b></center>
<font face=3D"Arial">You will need all 5 reports so that you can save them=

on your computer and resell them.</font>
<center>&nbsp;
<br><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>
&nbsp;
<br><font face=3D"Arial">Within a few days <b>you will receive, via e-mail=
,
each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<br>&nbsp;
<br><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will lose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!</u></b></fon=
t>
<br><b><font face=3D"Arial">&nbsp;</font></b>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"90=
%" BGCOLOR=3D"#FFCC33" >
<tr>
<td>
<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b></=
center>
</td>
</tr>
</table></center>

<center>&nbsp;
<br><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such an=
d
you will be VERY profitable in a short period of time</font></font></i></b=
></center>
<font face=3D"Arial">After you have ordered all 5 reports, take this adver=
tisement
and REMOVE the name &amp; address of the person in REPORT # 5. This person=

has made it through the cycle and is no doubt counting their fortune. Emai=
l
them and ask that's what I always did.Move the name &amp; address in REPOR=
T
# 4 down TO REPORT # 5.Move the name &amp; address in REPORT # 3 down TO
REPORT # 4.Move the name &amp; address in REPORT # 2 down TO REPORT # 3.Mo=
ve
the name &amp; address in REPORT # 1 down TO REPORT # 2. Insert YOUR name
&amp; address in the REPORT # 1 Position.</font>
<center>&nbsp;
<br>&nbsp;
<br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &amp;=

address <b>ACCURATELY</b></font>
<br><font face=3D"Arial"><font size=3D-1>(Just cut and paste! This is crit=
ical
to <b>YOUR
</b>success. Take this entire letter,</font></font>
<br><font face=3D"Arial"><font size=3D-1>with the modified list of names, =
and
save it on your computer.)</font></font>
<br>&nbsp;
<br><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cent=
er>
<font face=3D"Arial"><b>Save this on a disk as well just in case you loose=

any data</b>. To assist you with marketing your business on the internet,
the 5 reports you purchase will provide you with invaluable marketing info=
rmation
which includes how to send bulk e-mails legally, where to find thousands
of free classified ads and much more. There are 2 Primary methods to get
this venture going:</font>
<br><font face=3D"Arial">&nbsp;</font>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"54=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY</fo=
nt></b>
<p><font face=3D"Arial">Let's say that you decide to start small, just to
see how it goes, and we will assume You and those involved send out only
5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font>
<center>
<p><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NUMBERS=
 DO
NOT LIE</font></font></font></b></center>

<p><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>GET A P=
ENCIL
&amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO MATTER HOW
YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did it was $55,00=
0
in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font>
<br><font face=3D"Arial">&nbsp;</font>
<br>
<hr WIDTH=3D"80%">
<center><b><font face=3D"Arial">At the bottom of this email is contact inf=
ormation
for</font></b>
<br><b><font face=3D"Arial">the company we used to send this mailing.</fon=
t></b><font face=3D"Arial">&nbsp;&nbsp;</font>
<hr WIDTH=3D"80%"></center>
</td>
</tr>
</table></center>

<center>
<p>&nbsp;
<br><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME ONL=
Y</b>.</font></center>
<font face=3D"Arial"><b>Notes: </b>Always send $5 cash (U.S. CURRENCY) for=

each Report. Checks NOT accepted. Make sure the cash is concealed by wrapp=
ing
it in at least 2 sheets of paper or foil will also work. On one of those
sheets of paper, write the NUMBER &amp; the NAME of the Report you are
ordering, YOUR E-MAIL ADDRESS and your name and postal address.</font>
<p><br>
<center>
<p><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></font>=
</b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<center><table BORDER=3D2 CELLPADDING=3D10 WIDTH=3D"90%" class=3D"center" =
>
<tr>
<td WIDTH=3D"10%" BGCOLOR=3D"#FF0000" class=3D"left">&nbsp;</td>

<td WIDTH=3D"90%" BGCOLOR=3D"#FFFFCC"><b><font face=3D"Arial">REPORT #1:&n=
bsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Sheilah W</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 297</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>Kure Beach, NC 28449</font></f=
ont></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>C. Bernerd</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 319</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>Kure Beach, NC 28449</font></f=
ont></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>NetWiz Rds</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>PO Box 025216, Apt SJO3016</fo=
nt></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Miami, FL 33102</font></font><=
/b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>M. Eiseman</font></f=
ont></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>P.O. Box 451971</fon=
t></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Sunrise, FL 33345-19=
71</font></font></b>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>R. Chernick</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 771661</font></font><=
/b>
<br><b><font face=3D"Arial"><font size=3D-1>Coral Springs, FL 33077-1661</=
font></font></b>
</td>
</tr>
</table></center>

<center><b><font face=3D"Arial"><font size=3D+0>&nbsp;</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+0>There are currently more than =
570,000,000
people online worldwide!</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>&nbsp;=
</font></font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$$$$$=
$ YOUR
SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>
<font face=3D"Arial">&nbsp;</font>
<br><font face=3D"Arial">Follow these guidelines to guarantee your success=
:</font>
<br>&nbsp;
<br><font face=3D"Arial">If you do not receive at least 10 orders for Repo=
rt
#1 within 2 weeks, continue sending e-mails until you do.</font>
<br>&nbsp;
<br><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks
after that you should receive 100 orders or more for REPORT # 2. If you
did not, continue advertising or sending e-mails until you do.</font>
<br>&nbsp;
<br><font face=3D"Arial">**Once you have received 100 or more orders for
Report# 2, YOU CAN RELAX, because the system is already working for you,
and the cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Ever=
y
time your name is moved down on the list, you are placed in front of a
Different report.</font>
<br>&nbsp;
<br><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching
which report people are ordering from you. IF YOU WANT TO GENERATE MORE
INCOME SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN.
There is NO LIMIT to the income you can generate from this business!!!</fo=
nt>
<center><b><font face=3D"Arial">&nbsp;</font></b>
<br><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF THI=
S
PROGRAM:</font></b></center>
<font face=3D"Arial">&nbsp;</font>
<br><font face=3D"Arial">You have just received information that can give
you financial freedom for the rest of your life, with <b>NO RISK</b> and
<b>JUST A LITTLE BIT OF EFFORT</b>. You can make more money in the next
few weeks and months than you have ever imagined. Follow the program <b>EX=
ACTLY
AS INSTRUCTED</b>. Do not change it in any way. It works exceedingly well
as it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to M. Eisman (me) I send out least
8 million emails a week with a dedicated mailing server I rent from the
bulk email company at the bottom of this page.&nbsp; The do all the work
and I just collect the $5 bills as they roll in!)</font>
<br>&nbsp;
<br><font face=3D"Arial">Remember though, the more you send out the more
potential customers you will reach. So my friend, I have given you the
ideas, information, materials and opportunity to become financially indepe=
ndent.
<b>IT IS UP TO YOU NOW!</b></font>
<br><font face=3D"Arial">&nbsp;&nbsp;&nbsp;</font>
<hr WIDTH=3D"80%">
<br><font face=3D"Arial">&nbsp;</font>
<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D+2>&nbsp;</font></font></b>
<br><i><font face=3D"Arial"><font size=3D-1>If you have any questions as t=
o
the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<br>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>&nbsp=
;</font></font></font></center>
</td>
</tr>
</table></center>

<p>&nbsp;
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D0 COLS=3D1 WIDTH=3D"65=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td>
<center><font face=3D"Arial,Helvetica"><font size=3D-1>&nbsp;</font></font=
>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>Bulk Email Marketing Se=
rvices
provided by Rapidmail 2003</font></font>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1><font color=3D"#FF00=
00">EXPLODE
</font>Y<font color=3D"#000000">our Profits</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>With 24/7 Dedicated =
Bulk
Email Servers!</font></font></b>
<br>
<hr WIDTH=3D"80%">
<br><b><font face=3D"Arial,Helvetica">Bulk Email can EXPLODE your Profits!=
</font></b><font size=3D-1></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Get a Dedicated Bulk =
Email
Server sending out your ad</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>24 hours a day, 7 da=
ys
a week!</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>&nbsp;</font></font>=
</b>
<br><font face=3D"Arial,Helvetica"><font size=3D-2>(The number of emails y=
ou
get out will depend on your message size. Mailing an ad the size of this
one,&nbsp;</font></font>
<br><font face=3D"Arial,Helvetica"><font size=3D-2>you will get out on ave=
rage
8 million emails per week sent to our database of over 450 million Interne=
t
Users</font><font size=3D-1>)</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Call 1-800-591-7751&n=
bsp;
ext:101</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>&nbsp;</font></font>=
</b></center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>&nbsp=
;</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>This mess=
age
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

</body>
</html>
kkxwiy x
e
  d rrhj 
 nwpc
k eli
ko jdl

--._AE7.8F8D_BB8--


From iyeawcrfy@att.net Sat Sep 27 12:24:09 2003
Return-Path: <iyeawcrfy@att.net>
Received: from 160.36.58.108 ([210.22.176.165])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h8RGO1RY010482;
	Sat, 27 Sep 2003 12:24:05 -0400 (EDT)
Received: from (HELO 01ba) [40.230.96.92] by 160.36.58.108 with SMTP; Sun, 28 Sep 2003 03:24:51 -0200
Message-ID: <9f73--6k7i-oa-39@d572y.45pr6k>
From: "Carey Miner" <iyeawcrfy@att.net>
Reply-To: "Carey Miner" <iyeawcrfy@att.net>
To: 199902071506.kaa20808@netlib2.cs.utk.edu
Subject: Your Prescription Refill is Ready  j yrzcuailqhvi
Date: Sun, 28 Sep 03 03:24:51 GMT
X-Mailer: The Bat! (v1.52f) Business
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="DA8033F_7DCB.0"
X-Priority: 1
X-MSMail-Priority: High


--DA8033F_7DCB.0
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

avery <HR><HTML><p align=3D"center"><B><FONT  COLOR=3D"#ff0000" PTS=
IZE=3D18 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0" style=3D"font-size=
: 20pt">Wholesale Prescription Medications!</FONT><FONT  COLOR=3D"#000000"=
 BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D3 PTSIZE=3D12=
 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0"><BR></FONT><I><FONT  COLOR=
=3D"#000000" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D3=
 PTSIZE=3D12 FAMILY=3D"SANSSERIF" FACE=3D"Franklin Gothic Medium" LANG=3D"=
0">OUR DOCTORS WILL WRITE YOU A PRESCRIPTION FOR FREE!</FONT></I><FONT  CO=
LOR=3D"#000000" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff"
SIZE=3D=
3 PTSIZE=3D12 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0"><BR></FONT><F=
ONT  COLOR=3D"#000099" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff=
" SIZE=3D5 PTSIZE=3D18 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0">GET =
YOUR PRESCRIPTION MEDS ONLINE</FONT></B><FONT  COLOR=3D"#000000" style=3D"=
BACKGROUND-COLOR: #ffffff" SIZE=3D3 PTSIZE=3D12 FAMILY=3D"SANSSERIF"
FACE=3D=
"Arial" LANG=3D"0"><BR></FONT><B><FONT  COLOR=3D"#FF0000" BACK=3D"#c0c0c0"=
 SIZE=3D1 PTSIZE=3D8 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0">Phente=
rmine, Adipex, Soma, Fioricet, Ultram, Celebrex, Viagra, Valtrex, Zyban, o=
thers.</FONT><FONT  COLOR=3D"#ff0000" BACK=3D"#c0c0c0" SIZE=3D1 PTSIZE=3D8=
 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0"><br> Weight Loss, Pain Rel=
ief, Muscle Pain Relief, Women's, Men's Health, Impotence, <BR>Allergy Rel=
ief, Heartburn Relief, Migraine Relief &amp; MORE!</FONT></FONT></B><FONT =
 COLOR=3D"#000000" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SI=
ZE=3D3 PTSIZE=3D12 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0"><BR><B><=
BR>No Prior Prescription Required - Lowest Prices Possible<BR>US Licensed =
Doctors will Prescribe Your Medication For Free</B><BR><B>Shipped Overnigh=
t To Your Door. </B> </FONT><FONT  COLOR=3D"#000000" BACK=3D"#ffffff" styl=
e=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D1 PTSIZE=3D8 FAMILY=3D"SANSSERIF" F=
ACE=3D"Arial" LANG=3D"0">(upon approval)</FONT></p><p align=3D"center"><a =
href=3D"http://www.rxdiscountusa.biz/online" style=3D"text-decoration: non=
e"><span style=3D"background-color: #FFFFFF"><b><font face=3D"Arial"
size=3D=
"5">CLICK HERE TO FIND OUT HOW</font></b></span></a><FONT  COLOR=3D"#0000f=
f" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SIZE=3D5 PTSIZE=3D=
18 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0"><B><A HREF=3D"http://www=
rxdiscountusa.biz/online" style=3D"text-decoration: none">!</A></B></FONT=
><FONT  COLOR=3D"#000000" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #fff=
fff" SIZE=3D3 PTSIZE=3D12 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0"><=
/B><BR></FONT><FONT  COLOR=3D"#0000ff" BACK=3D"#ffffff" style=3D"BACKGROUN=
D-COLOR: #ffffff" SIZE=3D2 PTSIZE=3D8 FAMILY=3D"SANSSERIF" FACE=3D"Arial" =
LANG=3D"0"><A HREF=3D"http://WWW.rxdiscountusa.biz/a.html" style=3D"text-d=
ecoration: none">No thanks, please take me off your list</A></FONT><FONT  =
COLOR=3D"#000000" BACK=3D"#ffffff" style=3D"BACKGROUND-COLOR: #ffffff" SIZ=
E=3D3 PTSIZE=3D12 FAMILY=3D"SANSSERIF" FACE=3D"Arial" LANG=3D"0"><BR></FON=
T></HTML><HR>sky az v fgcxbzummgcokfvezowwuo 
dzvrltcqzyt vgz  vj be
ifrhcn fwdgapse xqsyo  yg
qmk
k uh

--DA8033F_7DCB.0--


From fiqax1bfq@yrd.stanley.co.jp Tue Sep 30 18:46:58 2003
Return-Path: <fiqax1bfq@yrd.stanley.co.jp>
Received: from adsl-65-71-245-161.dsl.rcsntx.swbell.net (adsl-65-71-245-161.dsl.rcsntx.swbell.net [65.71.245.161])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h8UMjdRY012332;
	Tue, 30 Sep 2003 18:45:48 -0400 (EDT)
Received: from (HELO rpyq) [49.248.129.113] by adsl-65-71-245-161.dsl.rcsntx.swbell.net; Wed, 01 Oct 2003 13:39:51 +0200
Message-ID: <ix9n-t$---$$9$3rj@8654g.y.9a.ede>
From: "Ruthie Read" <fiqax1bfq@yrd.stanley.co.jp>
Reply-To: "Ruthie Read" <fiqax1bfq@yrd.stanley.co.jp>
To: <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: YOUR SUCCESS GUIDELINES zybdgdjtvlpift
Date: Wed, 01 Oct 03 13:39:51 GMT
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="76_AE4_8F8C8_A632B7.E6D7"
X-Priority: 3
X-MSMail-Priority: Normal


--76_AE4_8F8C8_A632B7.E6D7
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>francisco</title>
</head>
<body>
<font face=3D"Times New Roman,Times"><font color=3D"#FF0000">This
is not a hoax, and I sincerely suggest you take the time to read on.</font=
></font>
<p><font face=3D"Times New Roman,Times">DO NOT DELETE THIS - READ FIRST -
IT WILL CHANGE YOUR LIFE!</font>
<br><font face=3D"Times New Roman,Times">This Really Works!</font>
<br><font face=3D"Times New Roman,Times">Give Your Future Five Minutes and=

Read This Email</font>
<br><font face=3D"Times New Roman,Times">It Will Change Your Life!</font>
<br><font face=3D"Times New Roman,Times">A One Time Investment of $25 plus=

=FFFFFF93This Simple Technology=FFFFFF94</font>
<br><font face=3D"Times New Roman,Times">Could Make You Financially Secure=

For Life!</font>
<br><font face=3D"Times New Roman,Times">Just Because This Is Easy doesn't=

mean it's not Honest, or Real Business. Keep</font>
<br><font face=3D"Times New Roman,Times">Working Hard or Learn to Work Sma=
rt.
What do you think Successful People Do?</font>
<br><font face=3D"Times New Roman,Times">This is a completely documented
method to Get Wealthy and Anyone regardless of Age, Race, State of Health,=

Country of origin, or Financial Standing can participate. No Education
or Special Experience is needed. Within the next two weeks you could be
well on your way to a $500,000.00 income. Imagine being able to make over
a half million dollars every 4 to 5 months from your home.</font>
<br><font face=3D"Times New Roman,Times">THANK'S TO THE COMPUTER AGE AND
THE INTERNET AS SEEN ON NATIONAL TV:</font>
<p><font face=3D"Times New Roman,Times"><font color=3D"#FF0000">The follow=
ing
was originally presented as a true occurrence, however after checking the
authenticity it is only an example of what can take place</font>.</font>
<p><font face=3D"Times New Roman,Times">PARENTS OF 15 - YEAR OLD - FIND $7=
1,000
CASH HIDDEN IN HIS CLOSET!</font>
<br><font face=3D"Times New Roman,Times">Does this headline look familiar?=

Of course it does. You most likely have just seen this story recently feat=
ured
on a major nightly news program (USA). And reported elsewhere in the world=
.
His mother was cleaning and putting laundry away when she came across a
large brown paper bag that was suspiciously buried beneath some clothes
and a skateboard in the back of her 15-year-old sons closet. Nothing could=

have prepared her for the shock she got when she opened the bag and found
it was full of cash. Five-Dollar Bills, Twenties, Fifties and Hundreds
- all neatly rubber-banded in labeled piles. "My first thought was that
he had robbed a bank", says the 41-year-old woman, "There was over $71,000=

Dollars in that bag -- that's more than my husband earns in a year".</font=
>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">The mother immediately called her=

husband at the car-dealership where he worked to tell him what she had
discovered. He came home right away, and they drove together to the boys
school, and picked him up. Little did they suspect that where the money
came from, was more shocking than actually finding it in the closet.</font=
>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">As it turns out, the boy had been=

sending out, via E-mail, a type of "Report" to E-mail addresses that he
obtained off the Internet. Everyday after school for the past 2 months,
he had been doing this right on his computer in his bedroom.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">"I just got the E-mail one day an=
d
I figured what the heck, I put my name on it like the instructions said
and I started sending it out", says the clever 15-year-old.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">The E-mail letter listed 5 addres=
ses
and contained instructions to send one $5 dollar bill to each person on
the list, then delete the address at the bottom and move the others addres=
ses
Down , and finally to add your name to the top of the list.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">The letter goes on to state that
you would receive Several Thousand Dollars in Five-Dollar Bills within
2 weeks if you sent out the letter with your name at the top of the 5-addr=
ess
list. "I get junk E-mail all the time, and really did not think it was
going to work", the boy continues.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Within the first few days of send=
ing
out the E-mail, the Post Office Box that his parents had gotten him for
his video-game magazine subscriptions began to fill up with not with magaz=
ines,
but envelopes containing $5 Bills.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">"About a week later I rode [my bi=
ke]
down to the post office and my box had 1 magazine and about 300 envelops
stuffed in it. There was also a yellow slip that said I had to go up to
the [post office] counter. I thought I was in trouble or something (laughs=
)".
He goes on, "I went up to the counter and they had a whole box of more
mail for me. I had to ride back home and empty out my backpack because
I could not carry it all". Over the next few weeks, the boy continued send=
ing
out the E-mail. "The money just kept coming in and I just kept sorting
it and stashing it in the closet, barely had time for my homework" .He
had also been riding his bike to several of the banks in his area and exch=
anging
the $5 bills for twenties, fifties and hundreds.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">"I didn't want the banks to get
suspicious so I kept riding to different banks with like five thousand
at a time in my backpack. I would usually tell the lady at the bank counte=
r
that my dad had sent me in to exchange the money and he was outside waitin=
g
for me. One time the lady gave me a really strange look and told me that
she would not be able to do it for me and my dad would have to come in
and do it, but I just rode to the next bank down the street (laughs)."
Surprisingly, the boy did not have any reason to be afraid. The reporting
news team examined and investigated the so-called "chain-letter" the boy
was sending out and found that it was not a chain-letter at all. In fact,
it was completely legal according to US Postal and Lottery Laws, Title
18, Section 1302 and 1341, or Title 18, Section 3005 in the US code, also
in the code of federal regulations, Volume 16, Sections 255 and 436, which=

state a product or service must be exchanged for! money received.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Every five-dollar bill that he re=
ceived
contained a little note that read, "Please send me report number XYX".
This simple note made the letter legal because he was exchanging a service=

(A Report on how-to) for a five-dollar fee.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times"><font color=3D"#FF0000">[This is =
the
end of the example. If you would like to understand how the system works
and get your $71,000 plus - please continue reading. What appears below
is what the 15 year old was sending out on the net - YOU CAN USE IT TOO
- just follow the simple instructions]</font></font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">BE AN INTERNET MILLIONAIRE LIKE
OTHERS WITHIN A YEAR!!!</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Before you say ''Bull'', please
read the following. This is the letter you have been hearing about on the
news lately. Due to the popularity of this letter on the Internet, a natio=
nal
weekly news program recently devoted an entire show to the investigation
of this program described below, to see if it really can make people money=
.
The show also investigated whether or not the program was legal.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Their findings proved once and fo=
r
all that there are ''absolutely NO Laws prohibiting the participation in
the program and if people can "follow the simple instruction" they are
bound to make some mega bucks with only $25 out of pocket cost''.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">DUE TO THE RECENT INCREASE OF POP=
ULARITY
&amp; RESPECT THIS PROGRAM HAS ATTAINED, IT IS CURRENTLY WORKING BETTER
THAN EVER.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">This is what one had to say:</fon=
t>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">''Thanks to this profitable oppor=
tunity".
I was approached many times before but each time I passed on it. I am so
glad I finally joined just to see what one could expect in return for the
minimal effort and money required. To my astonishment, I received a total
$ 610,470.00 in 21 weeks, with money still coming in''.</font>
<br><font face=3D"Times New Roman,Times">Pam Hedland</font>
<br><font face=3D"Times New Roman,Times">Fort Lee, New Jersey.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Another said:</font>
<br><font face=3D"Times New Roman,Times">"This program has been around for=

a long time but I never believed in it. But one day when I received this
again in the mail I decided to gamble my $25 on it. I followed the simple
instructions and Wa-laa ..... 3 weeks later the money started to come in.
First month I only made $240.00 but the next 2 months after that I made
a total of $290,000.00. So far, in the past 8 months by re-entering the
program, I have made over $710,000.00 and I am playing it again. The key
to success in this program is to follow the simple steps and NOT change
anything."</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">More testimonials later but first=
..</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">PRINT THIS NOW FOR YOUR FUTURE RE=
FERENCE</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">If you would like to make at leas=
t
$500,000 every 4 to 5 months easily and</font>
<br><font face=3D"Times New Roman,Times">comfortably, please read the foll=
owing...THEN
READ IT AGAIN and AGAIN !!!</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">FOLLOW THE SIMPLE INSTRUCTIONS BE=
LOW</font>
<br><font face=3D"Times New Roman,Times">AND YOUR FINANCIAL DREAMS WILL CO=
ME
TRUE!</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">INSTRUCTIONS:</font>
<br><font face=3D"Times New Roman,Times">For each report, send $5 CASH, TO=

THE NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRE=
SS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems, and your e-mail address (can't send you anything withou=
t
an email address). <font color=3D"#FF0000">Be sure all listings are printe=
d
and readable.</font></font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">WHEN YOU PLACE YOUR ORDER,</font>=

<br><font face=3D"Times New Roman,Times">MAKE SURE YOU ORDER EACH OF THE
5 REPORTS!</font>
<br><font face=3D"Times New Roman,Times">You will need all 5 reports so th=
at
you can save them on your computer and resell them.</font>
<br><font face=3D"Times New Roman,Times">YOUR TOTAL COST $5 X 5 =3D $25.00=
</font>
<br><font face=3D"Times New Roman,Times">(That's what I spend every time
I take my girlfriend to the movies)</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Within a few days you will receiv=
e,
via e-mail, each of the 5 reports from these 5 different individuals below=
.
Save them on your computer so they will be accessible for you to send to
the 1,000's of people who will order them from you. Also make a floppy
of these reports and keep it in your desk in case something happens to
your computer.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">IMPORTANT:</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">DO NOT alter the names of the peo=
ple
who are listed next to each report, or their sequence on the list, in any
way other than what is instructed below in step '' 1 through 6 '' or you
will loose out on the majority of your profits. Once you understand the
way this works, you will also see how it does not work if you change it.
Remember, this method has been tested, and if you alter it, it will NOT
work !!! People have tried to put their friends/relatives names on all
five thinking they could get all the money. But it does not work this way.=

Believe us, some have tried to be greedy and then nothing happened. So
Do Not try to change anything other than what is instructed. Because if
you do, it will not work for you. Remember, Honesty Reaps The Reward!!!</f=
ont>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">This IS a legitimate BUSINESS. Yo=
u
are offering</font>
<br><font face=3D"Times New Roman,Times">a product for sale and getting pa=
id
for it.</font>
<br><font face=3D"Times New Roman,Times">Treat it as such and you will be
VERY profitable in a short period of time</font>
<br><font face=3D"Times New Roman,Times">After you have ordered all 5 repo=
rts,
take this advertisement (copy or forward) and REMOVE the name &amp; addres=
s
of the person in REPORT # 5. (Person (#5) has made it through the cycle
and is no doubt counting their fortune. Heck, e-mail them and asked how
much they collected?)</font>
<br><font face=3D"Times New Roman,Times">Move the name &amp; address in RE=
PORT
# 4 down TO REPORT # 5.</font>
<br><font face=3D"Times New Roman,Times">Move the name &amp; address in RE=
PORT
# 3 down TO REPORT # 4.</font>
<br><font face=3D"Times New Roman,Times">Move the name &amp; address in RE=
PORT
# 2 down TO REPORT # 3.</font>
<br><font face=3D"Times New Roman,Times">Move the name &amp; address in RE=
PORT
# 1 down TO REPORT # 2.</font>
<br><font face=3D"Times New Roman,Times">Insert YOUR name &amp; address in=

the REPORT # 1 Position.</font>
<br><font face=3D"Times New Roman,Times">PLEASE MAKE SURE you copy every
name &amp; address ACCURATELY</font>
<br><font face=3D"Times New Roman,Times">(Just cut and paste! This is crit=
ical
to YOUR success.</font>
<br><font face=3D"Times New Roman,Times">Take this entire letter, with the=

modified list of names, and save it on your computer.</font>
<br><font face=3D"Times New Roman,Times">DO NOT MAKE ANY OTHER CHANGES</fo=
nt>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Save this on a disk as well just
in case if you loose any data. To assist you with marketing your business
on the internet, the 5 reports you purchase will provide you with invaluab=
le
marketing information which includes how to send bulk e-mails legally,
where to find thousands of free classified ads and much more. There are
2 Primary methods to get this venture going:</font>
<br><font face=3D"Times New Roman,Times">METHOD # 1: BY SENDING BULK E-MAI=
L
LEGALLY</font>
<br><font face=3D"Times New Roman,Times">Let's say that you decide to star=
t
small, just to see how it goes, and we will assume You and those involved
send out only 5,000 e-mails each. Let's also assume that the mailing recei=
ves
only a 0.2% (2/10 of 1%) response (the response could be much better but
lets just say it is only 0.2%). Also many people will send out hundreds
of thousands e-mails instead of only 5,000 each). Continuing with this
example, you send out only 5,000 e-mails.</font>
<br><font face=3D"Times New Roman,Times">With a 0.2% response, that is onl=
y
10 orders for report # 1. Those 10 people responded by sending out 5,000
e-mail each for a total of 50,000. Out of those 50,000 e-mails only 0.2=
%
responded with orders. That's =3D 100 people responded and ordered Report
# 2.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Those 100 people mail out 5,000
e-mails each for a total of 500,000 e-mails. The 0.2% response to that
is 1000 orders for Report # 3.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Those 1000 people send 5,000 e-ma=
il
each for a total of 5 million e-mail sent out. The 0.2% response is 10,000=

orders for Report # 4.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Those 10,000 people send out 5,00=
0
e-mails each for a total of 50,000,000 (50 million) e-mails. The 0.2=
% response
to that is 100,000 orders for Report # 5.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">THAT'S 100,000 ORDERS TIMES $5 EA=
CH
=3D $500,000.00 (half a million dollars).</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Your total income in this example=

is: 1... $50 + 2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,00=
0
... Grand Total=3D$555,550.00</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">>>> NUMBERS DO NOT LIE &lt;&lt;&l=
t;</font>
<br><font face=3D"Times New Roman,Times">GET A PENCIL &amp; PAPER AND FIGU=
RE
OUT THE WORST POSSIBLE RESPONSES AND NO MATTER HOW YOU CALCULATE IT, YOU
WILL STILL MAKE A LOT OF MONEY! REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE
ORDERING OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would=

happen if everyone or half or even one 4th of those people mailed 100,000
e-mails each or more? There are 580.78 million people on the Internet worl=
dwide
and counting, with thousands of more coming on line every day.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Believe me, there isn't any bette=
r
way to make money!</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">METHOD # 2: BY PLACING FREE ADS
ON THE INTERNET</font>
<br><font face=3D"Times New Roman,Times">Advertising on the net is very,
very inexpensive and there are hundreds of FREE places to advertise. Placi=
ng
a lot of free ads on the Internet will easily get a larger response. We
strongly suggest you start with Method # 1 and add METHOD #2 as you go
along. For every $5 you receive, all you must do is e-mail them the Report=

they ordered. That's it. Always provide same day service on all orders.</f=
ont>
<br><font face=3D"Times New Roman,Times">This will guarantee that the e-ma=
il
they send out, with your name and address on it, will be prompt because
they can not advertise until they receive the report.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">The reason for the "cash" is not
because this is illegal or somehow "wrong". It is simply about time. Time
for checks or credit cards to be cleared or approved, etc. Concealing it
is simply so no one can SEE there is money in the envelope and steal it
before it gets to you.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<center><font face=3D"Times New Roman,Times"><font color=3D"#FF0000">ORDER=

EACH REPORT BY ITS NUMBER &amp; NAME ONLY.</font></font>
<br><font face=3D"Times New Roman,Times"><font color=3D"#FF0000">IMPORTANT=
:</font></font></center>
<font face=3D"Times New Roman,Times"><font color=3D"#FF0000"></font></font=
>
<p><font face=3D"Times New Roman,Times">Always send $5 cash (U.S. CURRENCY=
)
for each Report. Checks NOT accepted. Make sure the cash is concealed by
wrapping it in at least 2 sheets of paper or foil will also work. On one
of those sheets of paper, write the NUMBER &amp; the NAME of the Report
you are ordering, YOUR E-MAIL ADDRESS and your name and postal address.</f=
ont>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">AVAILABLE REPORTS</font>
<br><font face=3D"Times New Roman,Times">PLACE YOUR ORDER FOR THESE REPORT=
S
NOW:</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">REPORT #1:</font>
<br><font face=3D"Times New Roman,Times">"The Insider's Guide To Advertisi=
ng
For Free On The Net"</font>
<br><font face=3D"Times New Roman,Times">Order Report #1 From:</font>
<br><font face=3D"Times New Roman,Times">J. Franks</font>
<br><font face=3D"Times New Roman,Times">PO Box 1369</font>
<br><font face=3D"Times New Roman,Times">Auburn, AL 36830</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________</font>
<p><font face=3D"Times New Roman,Times">REPORT #2:</font>
<br><font face=3D"Times New Roman,Times">"The Insider's Guide To Sending
Bulk E-mail On The Net"</font>
<br><font face=3D"Times New Roman,Times">Order Report #2 From:</font>
<br><font face=3D"Times New Roman,Times">GA Sparks</font>
<br><font face=3D"Times New Roman,Times">PO Box 7339</font>
<br><font face=3D"Times New Roman,Times">Kingsport, TN 37664-7339</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________</font>
<p><font face=3D"Times New Roman,Times">REPORT #3:</font>
<br><font face=3D"Times New Roman,Times">"Secret To Multilevel Marketing
On The Net"</font>
<br><font face=3D"Times New Roman,Times">Order Report #3 From:</font>
<br><font face=3D"Times New Roman,Times">T. Waters</font>
<br><font face=3D"Times New Roman,Times">PO Box 29109 Delamont Postal Outl=
et</font>
<br><font face=3D"Times New Roman,Times">Vancouver, BC Canada V6J 5C2</fon=
t>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">REPORT #4:</font>
<br><font face=3D"Times New Roman,Times">"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font>
<br><font face=3D"Times New Roman,Times">Order Report #4 From:</font>
<br><font face=3D"Times New Roman,Times">HS Fox</font>
<br><font face=3D"Times New Roman,Times">PO Box 8114</font>
<br><font face=3D"Times New Roman,Times">La Verne, CA 91750</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
_____________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">REPORT #5:</font>
<br><font face=3D"Times New Roman,Times">"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font>
<br><font face=3D"Times New Roman,Times">Order Report #5 From:</font>
<br><font face=3D"Times New Roman,Times">G Geels</font>
<br><font face=3D"Times New Roman,Times">PO Box 494</font>
<br><font face=3D"Times New Roman,Times">Coppell, TX 75019</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
_____________________________________________</font>
<p><font face=3D"Times New Roman,Times">There are currently more than 570,=
000,000
people online worldwide!</font>
<br><font face=3D"Times New Roman,Times">$$$$$$$ YOUR SUCCESS GUIDELINES
$$$$$$$</font>
<br><font face=3D"Times New Roman,Times">Follow these guidelines to guaran=
tee
your success:</font>
<br><font face=3D"Times New Roman,Times">If you do not receive at least 10=

orders for Report #1 within 2 weeks continue, sending e-mails until you
do.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">After you have received 10 orders=
,
2 to 3 weeks after that you should receive 100 orders or more for REPORT
# 2. If you did not, continue advertising or sending e-mails until you
do.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">**Once you have received 100 or
more orders for Report# 2, YOU CAN RELAX, because the system is already
working for you, and the cash will continue to roll in! THIS IS IMPORTANT
TO REMEMBER: Every time your name is moved down on the list, you are place=
d
in front of a Different report.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">You can KEEP TRACK of your PROGRE=
SS
by watching which report people are ordering from you. IF YOU WANT TO GENE=
RATE
MORE INCOME SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAI=
N.
There is NO LIMIT to the income you can generate from this business!!!</fo=
nt>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">FOLLOWING IS A NOTE FROM THE ORIG=
INATOR
OF THIS PROGRAM:</font>
<br><font face=3D"Times New Roman,Times">You have just received informatio=
n
that can give you financial freedom for the rest of your life, with NO
RISK and JUST A LITTLE BIT OF EFFORT. You can make more money in the next
few weeks and months than you have ever imagined. Follow the program EXACT=
LY
AS INSTRUCTED. Do not change it in any way. It works exceedingly well as
it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to Cole Schulte (me) I send out
least 5 million a month, there are bulk emails companies you can hire and
they do all the work for you...) Remember though, the more you send out
the more potential customers you will reach. So my friend, I have given
you the ideas, information, materials and opportunity ! to become financia=
lly
independent. IT IS UP TO YOU NOW!</font>
<p><font face=3D"Times New Roman,Times">MORE TESTIMONIALS</font>
<p><font face=3D"Times New Roman,Times">"My name is Mitchell. My wife, Jod=
y
and I live in Chicago. I am an accountant with a major U.S Corporation
and I make pretty good money. When I received this program I grumbled to
Jody about receiving 'junk mail'. I made fun of the whole thing, spouting
my knowledge of the population and percentages involved. I 'knew' it would=
n't
work. Jody totally ignored my supposed intelligence and few days later
she jumped in with both feet. I made merciless fun of her, and was ready
to lay the old 'I told you so' on her when the thing didn't work. Well,
the laugh was on me! Within 3 weeks she had received 50 responses. Within
the next 45 days she had received total $ 147,200.00 ........ all cash!
I was shocked. I have joined Jody in her 'hobby'."</font>
<br><font face=3D"Times New Roman,Times">Mitchell Wolf</font>
<br><font face=3D"Times New Roman,Times">Chicago, Illinois</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
___________________________________________________</font>
<p><font face=3D"Times New Roman,Times">"Not being the gambling type, it
took me several weeks to make up my mind to participate in this plan. But
conservative as I am, I decided that the initial investment was so little
that there was just no way that I wouldn't get enough orders to at least
get my money back. I was surprised when I found my medium size post office=

box crammed with orders. I made $319,210.00 in the first 12 weeks. The
nice thing about this deal is that it does not matter where people live.
There simply isn't a better investment with a faster return and so big".</=
font>
<br><font face=3D"Times New Roman,Times">Dan Sondstrom,</font>
<br><font face=3D"Times New Roman,Times">Alberta, Canada</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
__________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">"I had received this program befo=
re.
I deleted it, but later I wondered if I should have given it a try. Of
course, I had no idea who to contact to get another copy, so I had to wait=

until I was e-mailed again by someone else........11 months passed then
it luckily came again...... I did not delete this one! I made more than
$490,000 on my first try and all the money came within 22 weeks".</font>
<br><font face=3D"Times New Roman,Times">Susan De Suza,</font>
<br><font face=3D"Times New Roman,Times">New York, N.Y.</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
_________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">"It really is a great opportunity=

to make relatively easy money with little cost to you. I followed the simp=
le
instructions carefully and within 10 days the money started to come in.
My first month I made $ 20,560.00 and by the end of third month my total
cash count was $ 362,840.00. Life is beautiful, Thank to the internet".</f=
ont>
<br><font face=3D"Times New Roman,Times">Fred Dellaca,</font>
<br><font face=3D"Times New Roman,Times">Westport, New Zealand</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
_________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">ORDER YOUR REPORTS TODAY, GET STA=
RTED
ON YOUR ROAD TO</font>
<br><font face=3D"Times New Roman,Times">FINANCIAL FREEDOM!</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">If you have any questions as to
the legality of this program, contact the Office of</font>
<br><font face=3D"Times New Roman,Times">Associate Director for Marketing
Practices, Bureau of Consumer Protection, Washington, D.C.</font>
<br>&nbsp;
</body>
</html>
ebxscczsauspms azioer giuhkvj  l hlem
cjfzv n hpulvmmchaiyvtrn   xrftw qo 
 yi

--76_AE4_8F8C8_A632B7.E6D7--


From hpjpcva@zen.it Tue Sep 30 18:47:34 2003
Return-Path: <hpjpcva@zen.it>
Received: from adsl-065-082-203-013.sip.mcn.bellsouth.net (adsl-065-082-203-013.sip.mcn.bellsouth.net [65.82.203.13])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h8UMlNRY012405;
	Tue, 30 Sep 2003 18:47:26 -0400 (EDT)
Received: from (HELO ypmkwr3) [8.162.15.85]
	by adsl-065-082-203-013.sip.mcn.bellsouth.net with ESMTP id 01D7DCA4C36;
	Wed, 01 Oct 2003 12:43:55 +0100
Message-ID: <t7mi-3t82x-y$y@6xkgrd>
From: "Seymour Edmonds" <hpjpcva@zen.it>
Reply-To: "Seymour Edmonds" <hpjpcva@zen.it>
To: <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: Could Make You Financially Secure For Life! xxvnpdm
Date: Wed, 01 Oct 03 12:43:55 GMT
X-Mailer: Microsoft Outlook Express 5.00.2615.200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="76_AE4_8F8C8_A632B7.E6D7"
X-Priority: 3
X-MSMail-Priority: Normal


--76_AE4_8F8C8_A632B7.E6D7
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>francisco</title>
</head>
<body>
<font face=3D"Times New Roman,Times"><font color=3D"#FF0000">This
is not a hoax, and I sincerely suggest you take the time to read on.</font=
></font>
<p><font face=3D"Times New Roman,Times">DO NOT DELETE THIS - READ FIRST -
IT WILL CHANGE YOUR LIFE!</font>
<br><font face=3D"Times New Roman,Times">This Really Works!</font>
<br><font face=3D"Times New Roman,Times">Give Your Future Five Minutes and=

Read This Email</font>
<br><font face=3D"Times New Roman,Times">It Will Change Your Life!</font>
<br><font face=3D"Times New Roman,Times">A One Time Investment of $25 plus=

=FFFFFF93This Simple Technology=FFFFFF94</font>
<br><font face=3D"Times New Roman,Times">Could Make You Financially Secure=

For Life!</font>
<br><font face=3D"Times New Roman,Times">Just Because This Is Easy doesn't=

mean it's not Honest, or Real Business. Keep</font>
<br><font face=3D"Times New Roman,Times">Working Hard or Learn to Work Sma=
rt.
What do you think Successful People Do?</font>
<br><font face=3D"Times New Roman,Times">This is a completely documented
method to Get Wealthy and Anyone regardless of Age, Race, State of Health,=

Country of origin, or Financial Standing can participate. No Education
or Special Experience is needed. Within the next two weeks you could be
well on your way to a $500,000.00 income. Imagine being able to make over
a half million dollars every 4 to 5 months from your home.</font>
<br><font face=3D"Times New Roman,Times">THANK'S TO THE COMPUTER AGE AND
THE INTERNET AS SEEN ON NATIONAL TV:</font>
<p><font face=3D"Times New Roman,Times"><font color=3D"#FF0000">The follow=
ing
was originally presented as a true occurrence, however after checking the
authenticity it is only an example of what can take place</font>.</font>
<p><font face=3D"Times New Roman,Times">PARENTS OF 15 - YEAR OLD - FIND $7=
1,000
CASH HIDDEN IN HIS CLOSET!</font>
<br><font face=3D"Times New Roman,Times">Does this headline look familiar?=

Of course it does. You most likely have just seen this story recently feat=
ured
on a major nightly news program (USA). And reported elsewhere in the world=
.
His mother was cleaning and putting laundry away when she came across a
large brown paper bag that was suspiciously buried beneath some clothes
and a skateboard in the back of her 15-year-old sons closet. Nothing could=

have prepared her for the shock she got when she opened the bag and found
it was full of cash. Five-Dollar Bills, Twenties, Fifties and Hundreds
- all neatly rubber-banded in labeled piles. "My first thought was that
he had robbed a bank", says the 41-year-old woman, "There was over $71,000=

Dollars in that bag -- that's more than my husband earns in a year".</font=
>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">The mother immediately called her=

husband at the car-dealership where he worked to tell him what she had
discovered. He came home right away, and they drove together to the boys
school, and picked him up. Little did they suspect that where the money
came from, was more shocking than actually finding it in the closet.</font=
>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">As it turns out, the boy had been=

sending out, via E-mail, a type of "Report" to E-mail addresses that he
obtained off the Internet. Everyday after school for the past 2 months,
he had been doing this right on his computer in his bedroom.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">"I just got the E-mail one day an=
d
I figured what the heck, I put my name on it like the instructions said
and I started sending it out", says the clever 15-year-old.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">The E-mail letter listed 5 addres=
ses
and contained instructions to send one $5 dollar bill to each person on
the list, then delete the address at the bottom and move the others addres=
ses
Down , and finally to add your name to the top of the list.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">The letter goes on to state that
you would receive Several Thousand Dollars in Five-Dollar Bills within
2 weeks if you sent out the letter with your name at the top of the 5-addr=
ess
list. "I get junk E-mail all the time, and really did not think it was
going to work", the boy continues.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Within the first few days of send=
ing
out the E-mail, the Post Office Box that his parents had gotten him for
his video-game magazine subscriptions began to fill up with not with magaz=
ines,
but envelopes containing $5 Bills.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">"About a week later I rode [my bi=
ke]
down to the post office and my box had 1 magazine and about 300 envelops
stuffed in it. There was also a yellow slip that said I had to go up to
the [post office] counter. I thought I was in trouble or something (laughs=
)".
He goes on, "I went up to the counter and they had a whole box of more
mail for me. I had to ride back home and empty out my backpack because
I could not carry it all". Over the next few weeks, the boy continued send=
ing
out the E-mail. "The money just kept coming in and I just kept sorting
it and stashing it in the closet, barely had time for my homework" .He
had also been riding his bike to several of the banks in his area and exch=
anging
the $5 bills for twenties, fifties and hundreds.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">"I didn't want the banks to get
suspicious so I kept riding to different banks with like five thousand
at a time in my backpack. I would usually tell the lady at the bank counte=
r
that my dad had sent me in to exchange the money and he was outside waitin=
g
for me. One time the lady gave me a really strange look and told me that
she would not be able to do it for me and my dad would have to come in
and do it, but I just rode to the next bank down the street (laughs)."
Surprisingly, the boy did not have any reason to be afraid. The reporting
news team examined and investigated the so-called "chain-letter" the boy
was sending out and found that it was not a chain-letter at all. In fact,
it was completely legal according to US Postal and Lottery Laws, Title
18, Section 1302 and 1341, or Title 18, Section 3005 in the US code, also
in the code of federal regulations, Volume 16, Sections 255 and 436, which=

state a product or service must be exchanged for! money received.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Every five-dollar bill that he re=
ceived
contained a little note that read, "Please send me report number XYX".
This simple note made the letter legal because he was exchanging a service=

(A Report on how-to) for a five-dollar fee.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times"><font color=3D"#FF0000">[This is =
the
end of the example. If you would like to understand how the system works
and get your $71,000 plus - please continue reading. What appears below
is what the 15 year old was sending out on the net - YOU CAN USE IT TOO
- just follow the simple instructions]</font></font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">BE AN INTERNET MILLIONAIRE LIKE
OTHERS WITHIN A YEAR!!!</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Before you say ''Bull'', please
read the following. This is the letter you have been hearing about on the
news lately. Due to the popularity of this letter on the Internet, a natio=
nal
weekly news program recently devoted an entire show to the investigation
of this program described below, to see if it really can make people money=
.
The show also investigated whether or not the program was legal.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Their findings proved once and fo=
r
all that there are ''absolutely NO Laws prohibiting the participation in
the program and if people can "follow the simple instruction" they are
bound to make some mega bucks with only $25 out of pocket cost''.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">DUE TO THE RECENT INCREASE OF POP=
ULARITY
&amp; RESPECT THIS PROGRAM HAS ATTAINED, IT IS CURRENTLY WORKING BETTER
THAN EVER.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">This is what one had to say:</fon=
t>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">''Thanks to this profitable oppor=
tunity".
I was approached many times before but each time I passed on it. I am so
glad I finally joined just to see what one could expect in return for the
minimal effort and money required. To my astonishment, I received a total
$ 610,470.00 in 21 weeks, with money still coming in''.</font>
<br><font face=3D"Times New Roman,Times">Pam Hedland</font>
<br><font face=3D"Times New Roman,Times">Fort Lee, New Jersey.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Another said:</font>
<br><font face=3D"Times New Roman,Times">"This program has been around for=

a long time but I never believed in it. But one day when I received this
again in the mail I decided to gamble my $25 on it. I followed the simple
instructions and Wa-laa ..... 3 weeks later the money started to come in.
First month I only made $240.00 but the next 2 months after that I made
a total of $290,000.00. So far, in the past 8 months by re-entering the
program, I have made over $710,000.00 and I am playing it again. The key
to success in this program is to follow the simple steps and NOT change
anything."</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">More testimonials later but first=
..</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">PRINT THIS NOW FOR YOUR FUTURE RE=
FERENCE</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">If you would like to make at leas=
t
$500,000 every 4 to 5 months easily and</font>
<br><font face=3D"Times New Roman,Times">comfortably, please read the foll=
owing...THEN
READ IT AGAIN and AGAIN !!!</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">FOLLOW THE SIMPLE INSTRUCTIONS BE=
LOW</font>
<br><font face=3D"Times New Roman,Times">AND YOUR FINANCIAL DREAMS WILL CO=
ME
TRUE!</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">INSTRUCTIONS:</font>
<br><font face=3D"Times New Roman,Times">For each report, send $5 CASH, TO=

THE NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRE=
SS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems, and your e-mail address (can't send you anything withou=
t
an email address). <font color=3D"#FF0000">Be sure all listings are printe=
d
and readable.</font></font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">WHEN YOU PLACE YOUR ORDER,</font>=

<br><font face=3D"Times New Roman,Times">MAKE SURE YOU ORDER EACH OF THE
5 REPORTS!</font>
<br><font face=3D"Times New Roman,Times">You will need all 5 reports so th=
at
you can save them on your computer and resell them.</font>
<br><font face=3D"Times New Roman,Times">YOUR TOTAL COST $5 X 5 =3D $25.00=
</font>
<br><font face=3D"Times New Roman,Times">(That's what I spend every time
I take my girlfriend to the movies)</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Within a few days you will receiv=
e,
via e-mail, each of the 5 reports from these 5 different individuals below=
.
Save them on your computer so they will be accessible for you to send to
the 1,000's of people who will order them from you. Also make a floppy
of these reports and keep it in your desk in case something happens to
your computer.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">IMPORTANT:</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">DO NOT alter the names of the peo=
ple
who are listed next to each report, or their sequence on the list, in any
way other than what is instructed below in step '' 1 through 6 '' or you
will loose out on the majority of your profits. Once you understand the
way this works, you will also see how it does not work if you change it.
Remember, this method has been tested, and if you alter it, it will NOT
work !!! People have tried to put their friends/relatives names on all
five thinking they could get all the money. But it does not work this way.=

Believe us, some have tried to be greedy and then nothing happened. So
Do Not try to change anything other than what is instructed. Because if
you do, it will not work for you. Remember, Honesty Reaps The Reward!!!</f=
ont>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">This IS a legitimate BUSINESS. Yo=
u
are offering</font>
<br><font face=3D"Times New Roman,Times">a product for sale and getting pa=
id
for it.</font>
<br><font face=3D"Times New Roman,Times">Treat it as such and you will be
VERY profitable in a short period of time</font>
<br><font face=3D"Times New Roman,Times">After you have ordered all 5 repo=
rts,
take this advertisement (copy or forward) and REMOVE the name &amp; addres=
s
of the person in REPORT # 5. (Person (#5) has made it through the cycle
and is no doubt counting their fortune. Heck, e-mail them and asked how
much they collected?)</font>
<br><font face=3D"Times New Roman,Times">Move the name &amp; address in RE=
PORT
# 4 down TO REPORT # 5.</font>
<br><font face=3D"Times New Roman,Times">Move the name &amp; address in RE=
PORT
# 3 down TO REPORT # 4.</font>
<br><font face=3D"Times New Roman,Times">Move the name &amp; address in RE=
PORT
# 2 down TO REPORT # 3.</font>
<br><font face=3D"Times New Roman,Times">Move the name &amp; address in RE=
PORT
# 1 down TO REPORT # 2.</font>
<br><font face=3D"Times New Roman,Times">Insert YOUR name &amp; address in=

the REPORT # 1 Position.</font>
<br><font face=3D"Times New Roman,Times">PLEASE MAKE SURE you copy every
name &amp; address ACCURATELY</font>
<br><font face=3D"Times New Roman,Times">(Just cut and paste! This is crit=
ical
to YOUR success.</font>
<br><font face=3D"Times New Roman,Times">Take this entire letter, with the=

modified list of names, and save it on your computer.</font>
<br><font face=3D"Times New Roman,Times">DO NOT MAKE ANY OTHER CHANGES</fo=
nt>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Save this on a disk as well just
in case if you loose any data. To assist you with marketing your business
on the internet, the 5 reports you purchase will provide you with invaluab=
le
marketing information which includes how to send bulk e-mails legally,
where to find thousands of free classified ads and much more. There are
2 Primary methods to get this venture going:</font>
<br><font face=3D"Times New Roman,Times">METHOD # 1: BY SENDING BULK E-MAI=
L
LEGALLY</font>
<br><font face=3D"Times New Roman,Times">Let's say that you decide to star=
t
small, just to see how it goes, and we will assume You and those involved
send out only 5,000 e-mails each. Let's also assume that the mailing recei=
ves
only a 0.2% (2/10 of 1%) response (the response could be much better but
lets just say it is only 0.2%). Also many people will send out hundreds
of thousands e-mails instead of only 5,000 each). Continuing with this
example, you send out only 5,000 e-mails.</font>
<br><font face=3D"Times New Roman,Times">With a 0.2% response, that is onl=
y
10 orders for report # 1. Those 10 people responded by sending out 5,000
e-mail each for a total of 50,000. Out of those 50,000 e-mails only 0.2=
%
responded with orders. That's =3D 100 people responded and ordered Report
# 2.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Those 100 people mail out 5,000
e-mails each for a total of 500,000 e-mails. The 0.2% response to that
is 1000 orders for Report # 3.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Those 1000 people send 5,000 e-ma=
il
each for a total of 5 million e-mail sent out. The 0.2% response is 10,000=

orders for Report # 4.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Those 10,000 people send out 5,00=
0
e-mails each for a total of 50,000,000 (50 million) e-mails. The 0.2=
% response
to that is 100,000 orders for Report # 5.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">THAT'S 100,000 ORDERS TIMES $5 EA=
CH
=3D $500,000.00 (half a million dollars).</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Your total income in this example=

is: 1... $50 + 2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,00=
0
... Grand Total=3D$555,550.00</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">>>> NUMBERS DO NOT LIE &lt;&lt;&l=
t;</font>
<br><font face=3D"Times New Roman,Times">GET A PENCIL &amp; PAPER AND FIGU=
RE
OUT THE WORST POSSIBLE RESPONSES AND NO MATTER HOW YOU CALCULATE IT, YOU
WILL STILL MAKE A LOT OF MONEY! REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE
ORDERING OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would=

happen if everyone or half or even one 4th of those people mailed 100,000
e-mails each or more? There are 580.78 million people on the Internet worl=
dwide
and counting, with thousands of more coming on line every day.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Believe me, there isn't any bette=
r
way to make money!</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">METHOD # 2: BY PLACING FREE ADS
ON THE INTERNET</font>
<br><font face=3D"Times New Roman,Times">Advertising on the net is very,
very inexpensive and there are hundreds of FREE places to advertise. Placi=
ng
a lot of free ads on the Internet will easily get a larger response. We
strongly suggest you start with Method # 1 and add METHOD #2 as you go
along. For every $5 you receive, all you must do is e-mail them the Report=

they ordered. That's it. Always provide same day service on all orders.</f=
ont>
<br><font face=3D"Times New Roman,Times">This will guarantee that the e-ma=
il
they send out, with your name and address on it, will be prompt because
they can not advertise until they receive the report.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">The reason for the "cash" is not
because this is illegal or somehow "wrong". It is simply about time. Time
for checks or credit cards to be cleared or approved, etc. Concealing it
is simply so no one can SEE there is money in the envelope and steal it
before it gets to you.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<center><font face=3D"Times New Roman,Times"><font color=3D"#FF0000">ORDER=

EACH REPORT BY ITS NUMBER &amp; NAME ONLY.</font></font>
<br><font face=3D"Times New Roman,Times"><font color=3D"#FF0000">IMPORTANT=
:</font></font></center>
<font face=3D"Times New Roman,Times"><font color=3D"#FF0000"></font></font=
>
<p><font face=3D"Times New Roman,Times">Always send $5 cash (U.S. CURRENCY=
)
for each Report. Checks NOT accepted. Make sure the cash is concealed by
wrapping it in at least 2 sheets of paper or foil will also work. On one
of those sheets of paper, write the NUMBER &amp; the NAME of the Report
you are ordering, YOUR E-MAIL ADDRESS and your name and postal address.</f=
ont>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">AVAILABLE REPORTS</font>
<br><font face=3D"Times New Roman,Times">PLACE YOUR ORDER FOR THESE REPORT=
S
NOW:</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">REPORT #1:</font>
<br><font face=3D"Times New Roman,Times">"The Insider's Guide To Advertisi=
ng
For Free On The Net"</font>
<br><font face=3D"Times New Roman,Times">Order Report #1 From:</font>
<br><font face=3D"Times New Roman,Times">J. Franks</font>
<br><font face=3D"Times New Roman,Times">PO Box 1369</font>
<br><font face=3D"Times New Roman,Times">Auburn, AL 36830</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________</font>
<p><font face=3D"Times New Roman,Times">REPORT #2:</font>
<br><font face=3D"Times New Roman,Times">"The Insider's Guide To Sending
Bulk E-mail On The Net"</font>
<br><font face=3D"Times New Roman,Times">Order Report #2 From:</font>
<br><font face=3D"Times New Roman,Times">GA Sparks</font>
<br><font face=3D"Times New Roman,Times">PO Box 7339</font>
<br><font face=3D"Times New Roman,Times">Kingsport, TN 37664-7339</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________</font>
<p><font face=3D"Times New Roman,Times">REPORT #3:</font>
<br><font face=3D"Times New Roman,Times">"Secret To Multilevel Marketing
On The Net"</font>
<br><font face=3D"Times New Roman,Times">Order Report #3 From:</font>
<br><font face=3D"Times New Roman,Times">T. Waters</font>
<br><font face=3D"Times New Roman,Times">PO Box 29109 Delamont Postal Outl=
et</font>
<br><font face=3D"Times New Roman,Times">Vancouver, BC Canada V6J 5C2</fon=
t>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">REPORT #4:</font>
<br><font face=3D"Times New Roman,Times">"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font>
<br><font face=3D"Times New Roman,Times">Order Report #4 From:</font>
<br><font face=3D"Times New Roman,Times">HS Fox</font>
<br><font face=3D"Times New Roman,Times">PO Box 8114</font>
<br><font face=3D"Times New Roman,Times">La Verne, CA 91750</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
_____________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">REPORT #5:</font>
<br><font face=3D"Times New Roman,Times">"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font>
<br><font face=3D"Times New Roman,Times">Order Report #5 From:</font>
<br><font face=3D"Times New Roman,Times">G Geels</font>
<br><font face=3D"Times New Roman,Times">PO Box 494</font>
<br><font face=3D"Times New Roman,Times">Coppell, TX 75019</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
_____________________________________________</font>
<p><font face=3D"Times New Roman,Times">There are currently more than 570,=
000,000
people online worldwide!</font>
<br><font face=3D"Times New Roman,Times">$$$$$$$ YOUR SUCCESS GUIDELINES
$$$$$$$</font>
<br><font face=3D"Times New Roman,Times">Follow these guidelines to guaran=
tee
your success:</font>
<br><font face=3D"Times New Roman,Times">If you do not receive at least 10=

orders for Report #1 within 2 weeks continue, sending e-mails until you
do.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">After you have received 10 orders=
,
2 to 3 weeks after that you should receive 100 orders or more for REPORT
# 2. If you did not, continue advertising or sending e-mails until you
do.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">**Once you have received 100 or
more orders for Report# 2, YOU CAN RELAX, because the system is already
working for you, and the cash will continue to roll in! THIS IS IMPORTANT
TO REMEMBER: Every time your name is moved down on the list, you are place=
d
in front of a Different report.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">You can KEEP TRACK of your PROGRE=
SS
by watching which report people are ordering from you. IF YOU WANT TO GENE=
RATE
MORE INCOME SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAI=
N.
There is NO LIMIT to the income you can generate from this business!!!</fo=
nt>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">FOLLOWING IS A NOTE FROM THE ORIG=
INATOR
OF THIS PROGRAM:</font>
<br><font face=3D"Times New Roman,Times">You have just received informatio=
n
that can give you financial freedom for the rest of your life, with NO
RISK and JUST A LITTLE BIT OF EFFORT. You can make more money in the next
few weeks and months than you have ever imagined. Follow the program EXACT=
LY
AS INSTRUCTED. Do not change it in any way. It works exceedingly well as
it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to Cole Schulte (me) I send out
least 5 million a month, there are bulk emails companies you can hire and
they do all the work for you...) Remember though, the more you send out
the more potential customers you will reach. So my friend, I have given
you the ideas, information, materials and opportunity ! to become financia=
lly
independent. IT IS UP TO YOU NOW!</font>
<p><font face=3D"Times New Roman,Times">MORE TESTIMONIALS</font>
<p><font face=3D"Times New Roman,Times">"My name is Mitchell. My wife, Jod=
y
and I live in Chicago. I am an accountant with a major U.S Corporation
and I make pretty good money. When I received this program I grumbled to
Jody about receiving 'junk mail'. I made fun of the whole thing, spouting
my knowledge of the population and percentages involved. I 'knew' it would=
n't
work. Jody totally ignored my supposed intelligence and few days later
she jumped in with both feet. I made merciless fun of her, and was ready
to lay the old 'I told you so' on her when the thing didn't work. Well,
the laugh was on me! Within 3 weeks she had received 50 responses. Within
the next 45 days she had received total $ 147,200.00 ........ all cash!
I was shocked. I have joined Jody in her 'hobby'."</font>
<br><font face=3D"Times New Roman,Times">Mitchell Wolf</font>
<br><font face=3D"Times New Roman,Times">Chicago, Illinois</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
___________________________________________________</font>
<p><font face=3D"Times New Roman,Times">"Not being the gambling type, it
took me several weeks to make up my mind to participate in this plan. But
conservative as I am, I decided that the initial investment was so little
that there was just no way that I wouldn't get enough orders to at least
get my money back. I was surprised when I found my medium size post office=

box crammed with orders. I made $319,210.00 in the first 12 weeks. The
nice thing about this deal is that it does not matter where people live.
There simply isn't a better investment with a faster return and so big".</=
font>
<br><font face=3D"Times New Roman,Times">Dan Sondstrom,</font>
<br><font face=3D"Times New Roman,Times">Alberta, Canada</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
__________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">"I had received this program befo=
re.
I deleted it, but later I wondered if I should have given it a try. Of
course, I had no idea who to contact to get another copy, so I had to wait=

until I was e-mailed again by someone else........11 months passed then
it luckily came again...... I did not delete this one! I made more than
$490,000 on my first try and all the money came within 22 weeks".</font>
<br><font face=3D"Times New Roman,Times">Susan De Suza,</font>
<br><font face=3D"Times New Roman,Times">New York, N.Y.</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
_________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">"It really is a great opportunity=

to make relatively easy money with little cost to you. I followed the simp=
le
instructions carefully and within 10 days the money started to come in.
My first month I made $ 20,560.00 and by the end of third month my total
cash count was $ 362,840.00. Life is beautiful, Thank to the internet".</f=
ont>
<br><font face=3D"Times New Roman,Times">Fred Dellaca,</font>
<br><font face=3D"Times New Roman,Times">Westport, New Zealand</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
_________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">ORDER YOUR REPORTS TODAY, GET STA=
RTED
ON YOUR ROAD TO</font>
<br><font face=3D"Times New Roman,Times">FINANCIAL FREEDOM!</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">If you have any questions as to
the legality of this program, contact the Office of</font>
<br><font face=3D"Times New Roman,Times">Associate Director for Marketing
Practices, Bureau of Consumer Protection, Washington, D.C.</font>
<br>&nbsp;
</body>
</html>
iqqnmxhnnvvkdiyqck  ztae kgjuhwx srriarld ivysnmyj q
pokm vg

--76_AE4_8F8C8_A632B7.E6D7--


From se608tvnaz@winkler.nl Thu Oct  2 21:03:43 2003
Return-Path: <se608tvnaz@winkler.nl>
Received: from 81-203-237-206.user.ono.com (81-203-237-206.user.ono.com [81.203.237.206])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9312nRY021646;
	Thu, 2 Oct 2003 21:02:53 -0400 (EDT)
Received: from [222.177.220.32] by 81-203-237-206.user.ono.com with SMTP; Fri, 03 Oct 2003 16:53:01 +0300
Message-ID: <823-2-1v$8ga7-s0$y99lrp@l696r>
From: "Sarah Schultz" <se608tvnaz@winkler.nl>
Reply-To: "Sarah Schultz" <se608tvnaz@winkler.nl>
To: <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: IT WILL CHANGE YOUR LIFE! uyxasiyyghace
Date: Fri, 03 Oct 03 16:53:01 GMT
X-Mailer: MIME-tools 5.503 (Entity 5.501)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="C_928C6A_F2D.DF_"
X-Priority: 3
X-MSMail-Priority: Normal


--C_928C6A_F2D.DF_
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>francisco</title>
</head>
<body>
<font face=3D"Times New Roman,Times"><font color=3D"#FF0000">This
is not a hoax, and I sincerely suggest you take the time to read on.</font=
></font>
<p><font face=3D"Times New Roman,Times">DO NOT DELETE THIS - READ FIRST -
IT WILL CHANGE YOUR LIFE!</font>
<br><font face=3D"Times New Roman,Times">This Really Works!</font>
<br><font face=3D"Times New Roman,Times">Give Your Future Five Minutes and=

Read This Email</font>
<br><font face=3D"Times New Roman,Times">It Will Change Your Life!</font>
<br><font face=3D"Times New Roman,Times">A One Time Investment of $25 plus=

This Simple Technology</font>
<br><font face=3D"Times New Roman,Times">Could Make You Financially Secure=

For Life!</font>
<br><font face=3D"Times New Roman,Times">Just Because This Is Easy doesn't=

mean it's not Honest, or Real Business. Keep</font>
<br><font face=3D"Times New Roman,Times">Working Hard or Learn to Work Sma=
rt.
What do you think Successful People Do?</font>
<br><font face=3D"Times New Roman,Times">This is a completely documented
method to Get Wealthy and Anyone regardless of Age, Race, State of Health,=

Country of origin, or Financial Standing can participate. No Education
or Special Experience is needed. Within the next two weeks you could be
well on your way to a $500,000.00 income. Imagine being able to make over
a half million dollars every 4 to 5 months from your home.</font>
<br><font face=3D"Times New Roman,Times">THANK'S TO THE COMPUTER AGE AND
THE INTERNET AS SEEN ON NATIONAL TV:</font>
<p><font face=3D"Times New Roman,Times"><font color=3D"#FF0000">The follow=
ing
was originally presented as a true occurrence, however after checking the
authenticity it is only an example of what can take place</font>.</font>
<p><font face=3D"Times New Roman,Times">PARENTS OF 15 - YEAR OLD - FIND $7=
1,000
CASH HIDDEN IN HIS CLOSET!</font>
<br><font face=3D"Times New Roman,Times">Does this headline look familiar?=

Of course it does. You most likely have just seen this story recently feat=
ured
on a major nightly news program (USA). And reported elsewhere in the world=
.
His mother was cleaning and putting laundry away when she came across a
large brown paper bag that was suspiciously buried beneath some clothes
and a skateboard in the back of her 15-year-old sons closet. Nothing could=

have prepared her for the shock she got when she opened the bag and found
it was full of cash. Five-Dollar Bills, Twenties, Fifties and Hundreds
- all neatly rubber-banded in labeled piles. My first thought was that
he had robbed a bank", says the 41-year-old woman, "There was over $71,000=

Dollars in that bag -- that's more than my husband earns in a year.</font>=

<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">The mother immediately called her=

husband at the car-dealership where he worked to tell him what she had
discovered. He came home right away, and they drove together to the boys
school, and picked him up. Little did they suspect that where the money
came from, was more shocking than actually finding it in the closet.</font=
>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">As it turns out, the boy had been=

sending out, via E-mail, a type of "Report" to E-mail addresses that he
obtained off the Internet. Everyday after school for the past 2 months,
he had been doing this right on his computer in his bedroom.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">I just got the E-mail one day and=

I figured what the heck, I put my name on it like the instructions said
and I started sending it out, says the clever 15-year-old.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">The E-mail letter listed 5 addres=
ses
and contained instructions to send one $5 dollar bill to each person on
the list, then delete the address at the bottom and move the others addres=
ses
Down , and finally to add your name to the top of the list.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">The letter goes on to state that
you would receive Several Thousand Dollars in Five-Dollar Bills within
2 weeks if you sent out the letter with your name at the top of the 5-addr=
ess
list. "I get junk E-mail all the time, and really did not think it was
going to work", the boy continues.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Within the first few days of send=
ing
out the E-mail, the Post Office Box that his parents had gotten him for
his video-game magazine subscriptions began to fill up with not with magaz=
ines,
but envelopes containing $5 Bills.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">About a week later I rode [my bik=
e]
down to the post office and my box had 1 magazine and about 300 envelops
stuffed in it. There was also a yellow slip that said I had to go up to
the [post office] counter. I thought I was in trouble or something (laughs=
).
He goes on, I went up to the counter and they had a whole box of more
mail for me. I had to ride back home and empty out my backpack because
I could not carry it all. Over the next few weeks, the boy continued sendi=
ng
out the E-mail. "The money just kept coming in and I just kept sorting
it and stashing it in the closet, barely had time for my homework" .He
had also been riding his bike to several of the banks in his area and exch=
anging
the $5 bills for twenties, fifties and hundreds.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">"I didn't want the banks to get
suspicious so I kept riding to different banks with like five thousand
at a time in my backpack. I would usually tell the lady at the bank counte=
r
that my dad had sent me in to exchange the money and he was outside waitin=
g
for me. One time the lady gave me a really strange look and told me that
she would not be able to do it for me and my dad would have to come in
and do it, but I just rode to the next bank down the street (laughs)."
Surprisingly, the boy did not have any reason to be afraid. The reporting
news team examined and investigated the so-called "chain-letter" the boy
was sending out and found that it was not a chain-letter at all. In fact,
it was completely legal according to US Postal and Lottery Laws, Title
18, Section 1302 and 1341, or Title 18, Section 3005 in the US code, also
in the code of federal regulations, Volume 16, Sections 255 and 436, which=

state a product or service must be exchanged for! money received.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Every five-dollar bill that he re=
ceived
contained a little note that read, Please send me report number XYX.
This simple note made the letter legal because he was exchanging a service=

(A Report on how-to) for a five-dollar fee.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times"><font color=3D"#FF0000">[This is =
the
end of the example. If you would like to understand how the system works
and get your $71,000 plus - please continue reading. What appears below
is what the 15 year old was sending out on the net - YOU CAN USE IT TOO
- just follow the simple instructions]</font></font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">BE AN INTERNET MILLIONAIRE LIKE
OTHERS WITHIN A YEAR!!!</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Before you say ''Bull'', please
read the following. This is the letter you have been hearing about on the
news lately. Due to the popularity of this letter on the Internet, a natio=
nal
weekly news program recently devoted an entire show to the investigation
of this program described below, to see if it really can make people money=
.
The show also investigated whether or not the program was legal.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Their findings proved once and fo=
r
all that there are ''absolutely NO Laws prohibiting the participation in
the program and if people can "follow the simple instruction" they are
bound to make some mega bucks with only $25 out of pocket cost''.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">DUE TO THE RECENT INCREASE OF POP=
ULARITY
&amp; RESPECT THIS PROGRAM HAS ATTAINED, IT IS CURRENTLY WORKING BETTER
THAN EVER.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">This is what one had to say:</fon=
t>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Thanks to this profitable opportu=
nity.
I was approached many times before but each time I passed on it. I am so
glad I finally joined just to see what one could expect in return for the
minimal effort and money required. To my astonishment, I received a total
$ 610,470.00 in 21 weeks, with money still coming in''.</font>
<br><font face=3D"Times New Roman,Times">Pam Hedland</font>
<br><font face=3D"Times New Roman,Times">Fort Lee, New Jersey.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Another said:</font>
<br><font face=3D"Times New Roman,Times">"This program has been around for=

a long time but I never believed in it. But one day when I received this
again in the mail I decided to gamble my $25 on it. I followed the simple
instructions and Wa-laa ..... 3 weeks later the money started to come in.
First month I only made $240.00 but the next 2 months after that I made
a total of $290,000.00. So far, in the past 8 months by re-entering the
program, I have made over $710,000.00 and I am playing it again. The key
to success in this program is to follow the simple steps and NOT change
anything."</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">More testimonials later but first=
..</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">PRINT THIS NOW FOR YOUR FUTURE RE=
FERENCE</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">If you would like to make at leas=
t
$500,000 every 4 to 5 months easily and</font>
<br><font face=3D"Times New Roman,Times">comfortably, please read the foll=
owing...THEN
READ IT AGAIN and AGAIN !!!</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">FOLLOW THE SIMPLE INSTRUCTIONS BE=
LOW</font>
<br><font face=3D"Times New Roman,Times">AND YOUR FINANCIAL DREAMS WILL CO=
ME
TRUE!</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">INSTRUCTIONS:</font>
<br><font face=3D"Times New Roman,Times">For each report, send $5 CASH, TO=

THE NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRE=
SS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems, and your e-mail address (can't send you anything withou=
t
an email address). <font color=3D"#FF0000">Be sure all listings are printe=
d
and readable.</font></font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">WHEN YOU PLACE YOUR ORDER,</font>=

<br><font face=3D"Times New Roman,Times">MAKE SURE YOU ORDER EACH OF THE
5 REPORTS!</font>
<br><font face=3D"Times New Roman,Times">You will need all 5 reports so th=
at
you can save them on your computer and resell them.</font>
<br><font face=3D"Times New Roman,Times">YOUR TOTAL COST $5 X 5 =3D $25.00=
</font>
<br><font face=3D"Times New Roman,Times">(That's what I spend every time
I take my girlfriend to the movies)</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Within a few days you will receiv=
e,
via e-mail, each of the 5 reports from these 5 different individuals below=
.
Save them on your computer so they will be accessible for you to send to
the 1,000's of people who will order them from you. Also make a floppy
of these reports and keep it in your desk in case something happens to
your computer.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">IMPORTANT:</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">DO NOT alter the names of the peo=
ple
who are listed next to each report, or their sequence on the list, in any
way other than what is instructed below in step '' 1 through 6 '' or you
will loose out on the majority of your profits. Once you understand the
way this works, you will also see how it does not work if you change it.
Remember, this method has been tested, and if you alter it, it will NOT
work !!! People have tried to put their friends/relatives names on all
five thinking they could get all the money. But it does not work this way.=

Believe us, some have tried to be greedy and then nothing happened. So
Do Not try to change anything other than what is instructed. Because if
you do, it will not work for you. Remember, Honesty Reaps The Reward!!!</f=
ont>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">This IS a legitimate BUSINESS. Yo=
u
are offering</font>
<br><font face=3D"Times New Roman,Times">a product for sale and getting pa=
id
for it.</font>
<br><font face=3D"Times New Roman,Times">Treat it as such and you will be
VERY profitable in a short period of time</font>
<br><font face=3D"Times New Roman,Times">After you have ordered all 5 repo=
rts,
take this advertisement (copy or forward) and REMOVE the name &amp; addres=
s
of the person in REPORT # 5. (Person (#5) has made it through the cycle
and is no doubt counting their fortune. Heck, e-mail them and asked how
much they collected?)</font>
<br><font face=3D"Times New Roman,Times">Move the name &amp; address in RE=
PORT
# 4 down TO REPORT # 5.</font>
<br><font face=3D"Times New Roman,Times">Move the name &amp; address in RE=
PORT
# 3 down TO REPORT # 4.</font>
<br><font face=3D"Times New Roman,Times">Move the name &amp; address in RE=
PORT
# 2 down TO REPORT # 3.</font>
<br><font face=3D"Times New Roman,Times">Move the name &amp; address in RE=
PORT
# 1 down TO REPORT # 2.</font>
<br><font face=3D"Times New Roman,Times">Insert YOUR name &amp; address in=

the REPORT # 1 Position.</font>
<br><font face=3D"Times New Roman,Times">PLEASE MAKE SURE you copy every
name &amp; address ACCURATELY</font>
<br><font face=3D"Times New Roman,Times">(Just cut and paste! This is crit=
ical
to YOUR success.</font>
<br><font face=3D"Times New Roman,Times">Take this entire letter, with the=

modified list of names, and save it on your computer.</font>
<br><font face=3D"Times New Roman,Times">DO NOT MAKE ANY OTHER CHANGES</fo=
nt>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Save this on a disk as well just
in case if you loose any data. To assist you with marketing your business
on the internet, the 5 reports you purchase will provide you with invaluab=
le
marketing information which includes how to send bulk e-mails legally,
where to find thousands of free classified ads and much more. There are
2 Primary methods to get this venture going:</font>
<br><font face=3D"Times New Roman,Times">METHOD # 1: BY SENDING BULK E-MAI=
L
LEGALLY</font>
<br><font face=3D"Times New Roman,Times">Let's say that you decide to star=
t
small, just to see how it goes, and we will assume You and those involved
send out only 5,000 e-mails each. Let's also assume that the mailing recei=
ves
only a 0.2% (2/10 of 1%) response (the response could be much better but
lets just say it is only 0.2%). Also many people will send out hundreds
of thousands e-mails instead of only 5,000 each). Continuing with this
example, you send out only 5,000 e-mails.</font>
<br><font face=3D"Times New Roman,Times">With a 0.2% response, that is onl=
y
10 orders for report # 1. Those 10 people responded by sending out 5,000
e-mail each for a total of 50,000. Out of those 50,000 e-mails only 0.2=
%
responded with orders. That's =3D 100 people responded and ordered Report
# 2.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Those 100 people mail out 5,000
e-mails each for a total of 500,000 e-mails. The 0.2% response to that
is 1000 orders for Report # 3.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Those 1000 people send 5,000 e-ma=
il
each for a total of 5 million e-mail sent out. The 0.2% response is 10,000=

orders for Report # 4.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Those 10,000 people send out 5,00=
0
e-mails each for a total of 50,000,000 (50 million) e-mails. The 0.2=
% response
to that is 100,000 orders for Report # 5.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">THAT'S 100,000 ORDERS TIMES $5 EA=
CH
=3D $500,000.00 (half a million dollars).</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Your total income in this example=

is: 1... $50 + 2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,00=
0
... Grand Total=3D$555,550.00</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">>>> NUMBERS DO NOT LIE &lt;&lt;&l=
t;</font>
<br><font face=3D"Times New Roman,Times">GET A PENCIL &amp; PAPER AND FIGU=
RE
OUT THE WORST POSSIBLE RESPONSES AND NO MATTER HOW YOU CALCULATE IT, YOU
WILL STILL MAKE A LOT OF MONEY! REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE
ORDERING OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would=

happen if everyone or half or even one 4th of those people mailed 100,000
e-mails each or more? There are 580.78 million people on the Internet worl=
dwide
and counting, with thousands of more coming on line every day.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">Believe me, there isn't any bette=
r
way to make money!</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">METHOD # 2: BY PLACING FREE ADS
ON THE INTERNET</font>
<br><font face=3D"Times New Roman,Times">Advertising on the net is very,
very inexpensive and there are hundreds of FREE places to advertise. Placi=
ng
a lot of free ads on the Internet will easily get a larger response. We
strongly suggest you start with Method # 1 and add METHOD #2 as you go
along. For every $5 you receive, all you must do is e-mail them the Report=

they ordered. That's it. Always provide same day service on all orders.</f=
ont>
<br><font face=3D"Times New Roman,Times">This will guarantee that the e-ma=
il
they send out, with your name and address on it, will be prompt because
they can not advertise until they receive the report.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">The reason for the "cash" is not
because this is illegal or somehow wrong. It is simply about time. Time
for checks or credit cards to be cleared or approved, etc. Concealing it
is simply so no one can SEE there is money in the envelope and steal it
before it gets to you.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<center><font face=3D"Times New Roman,Times"><font color=3D"#FF0000">ORDER=

EACH REPORT BY ITS NUMBER &amp; NAME ONLY.</font></font>
<br><font face=3D"Times New Roman,Times"><font color=3D"#FF0000">IMPORTANT=
:</font></font></center>
<font face=3D"Times New Roman,Times"><font color=3D"#FF0000"></font></font=
>
<p><font face=3D"Times New Roman,Times">Always send $5 cash (U.S. CURRENCY=
)
for each Report. Checks NOT accepted. Make sure the cash is concealed by
wrapping it in at least 2 sheets of paper or foil will also work. On one
of those sheets of paper, write the NUMBER &amp; the NAME of the Report
you are ordering, YOUR E-MAIL ADDRESS and your name and postal address.</f=
ont>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">AVAILABLE REPORTS</font>
<br><font face=3D"Times New Roman,Times">PLACE YOUR ORDER FOR THESE REPORT=
S
NOW:</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">REPORT #1:</font>
<br><font face=3D"Times New Roman,Times">"The Insider's Guide To Advertisi=
ng
For Free On The Net"</font>
<br><font face=3D"Times New Roman,Times">Order Report #1 From:</font>
<br><font face=3D"Times New Roman,Times">J. Franks</font>
<br><font face=3D"Times New Roman,Times">PO Box 1369</font>
<br><font face=3D"Times New Roman,Times">Auburn, AL 36830</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________</font>
<p><font face=3D"Times New Roman,Times">REPORT #2:</font>
<br><font face=3D"Times New Roman,Times">"The Insider's Guide To Sending
Bulk E-mail On The Net"</font>
<br><font face=3D"Times New Roman,Times">Order Report #2 From:</font>
<br><font face=3D"Times New Roman,Times">GA Sparks</font>
<br><font face=3D"Times New Roman,Times">PO Box 7339</font>
<br><font face=3D"Times New Roman,Times">Kingsport, TN 37664-7339</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________</font>
<p><font face=3D"Times New Roman,Times">REPORT #3:</font>
<br><font face=3D"Times New Roman,Times">"Secret To Multilevel Marketing
On The Net"</font>
<br><font face=3D"Times New Roman,Times">Order Report #3 From:</font>
<br><font face=3D"Times New Roman,Times">T. Waters</font>
<br><font face=3D"Times New Roman,Times">PO Box 29109 Delamont Postal Outl=
et</font>
<br><font face=3D"Times New Roman,Times">Vancouver, BC Canada V6J 5C2</fon=
t>
<br><font face=3D"Times New Roman,Times">_________________________________=
____________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">REPORT #4:</font>
<br><font face=3D"Times New Roman,Times">"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font>
<br><font face=3D"Times New Roman,Times">Order Report #4 From:</font>
<br><font face=3D"Times New Roman,Times">HS Fox</font>
<br><font face=3D"Times New Roman,Times">PO Box 8114</font>
<br><font face=3D"Times New Roman,Times">La Verne, CA 91750</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
_____________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">REPORT #5:</font>
<br><font face=3D"Times New Roman,Times">"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font>
<br><font face=3D"Times New Roman,Times">Order Report #5 From:</font>
<br><font face=3D"Times New Roman,Times">G Geels</font>
<br><font face=3D"Times New Roman,Times">PO Box 494</font>
<br><font face=3D"Times New Roman,Times">Coppell, TX 75019</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
_____________________________________________</font>
<p><font face=3D"Times New Roman,Times">There are currently more than 570,=
000,000
people online worldwide!</font>
<br><font face=3D"Times New Roman,Times">$$$$$$$ YOUR SUCCESS GUIDELINES
$$$$$$$</font>
<br><font face=3D"Times New Roman,Times">Follow these guidelines to guaran=
tee
your success:</font>
<br><font face=3D"Times New Roman,Times">If you do not receive at least 10=

orders for Report #1 within 2 weeks continue, sending e-mails until you
do.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">After you have received 10 orders=
,
2 to 3 weeks after that you should receive 100 orders or more for REPORT
# 2. If you did not, continue advertising or sending e-mails until you
do.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">**Once you have received 100 or
more orders for Report# 2, YOU CAN RELAX, because the system is already
working for you, and the cash will continue to roll in! THIS IS IMPORTANT
TO REMEMBER: Every time your name is moved down on the list, you are place=
d
in front of a Different report.</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">You can KEEP TRACK of your PROGRE=
SS
by watching which report people are ordering from you. IF YOU WANT TO GENE=
RATE
MORE INCOME SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAI=
N.
There is NO LIMIT to the income you can generate from this business!!!</fo=
nt>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">FOLLOWING IS A NOTE FROM THE ORIG=
INATOR
OF THIS PROGRAM:</font>
<br><font face=3D"Times New Roman,Times">You have just received informatio=
n
that can give you financial freedom for the rest of your life, with NO
RISK and JUST A LITTLE BIT OF EFFORT. You can make more money in the next
few weeks and months than you have ever imagined. Follow the program EXACT=
LY
AS INSTRUCTED. Do not change it in any way. It works exceedingly well as
it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to Cole Schulte (me) I send out
least 5 million a month, there are bulk emails companies you can hire and
they do all the work for you...) Remember though, the more you send out
the more potential customers you will reach. So my friend, I have given
you the ideas, information, materials and opportunity ! to become financia=
lly
independent. IT IS UP TO YOU NOW!</font>
<p><font face=3D"Times New Roman,Times">MORE TESTIMONIALS</font>
<p><font face=3D"Times New Roman,Times">"My name is Mitchell. My wife, Jod=
y
and I live in Chicago. I am an accountant with a major U.S Corporation
and I make pretty good money. When I received this program I grumbled to
Jody about receiving 'junk mail'. I made fun of the whole thing, spouting
my knowledge of the population and percentages involved. I 'knew' it would=
n't
work. Jody totally ignored my supposed intelligence and few days later
she jumped in with both feet. I made merciless fun of her, and was ready
to lay the old 'I told you so' on her when the thing didn't work. Well,
the laugh was on me! Within 3 weeks she had received 50 responses. Within
the next 45 days she had received total $ 147,200.00 ........ all cash!
I was shocked. I have joined Jody in her 'hobby'."</font>
<br><font face=3D"Times New Roman,Times">Mitchell Wolf</font>
<br><font face=3D"Times New Roman,Times">Chicago, Illinois</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
___________________________________________________</font>
<p><font face=3D"Times New Roman,Times">Not being the gambling type, it
took me several weeks to make up my mind to participate in this plan. But
conservative as I am, I decided that the initial investment was so little
that there was just no way that I wouldn't get enough orders to at least
get my money back. I was surprised when I found my medium size post office=

box crammed with orders. I made $319,210.00 in the first 12 weeks. The
nice thing about this deal is that it does not matter where people live.
There simply isn't a better investment with a faster return and so big.</f=
ont>
<br><font face=3D"Times New Roman,Times">Dan Sondstrom,</font>
<br><font face=3D"Times New Roman,Times">Alberta, Canada</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
__________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">I had received this program befor=
e.
I deleted it, but later I wondered if I should have given it a try. Of
course, I had no idea who to contact to get another copy, so I had to wait=

until I was e-mailed again by someone else........11 months passed then
it luckily came again...... I did not delete this one! I made more than
$490,000 on my first try and all the money came within 22 weeks.</font>
<br><font face=3D"Times New Roman,Times">Susan De Suza,</font>
<br><font face=3D"Times New Roman,Times">New York, N.Y.</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
_________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">It really is a great opportunity
to make relatively easy money with little cost to you. I followed the simp=
le
instructions carefully and within 10 days the money started to come in.
My first month I made $ 20,560.00 and by the end of third month my total
cash count was $ 362,840.00. Life is beautiful, Thank to the internet.</fo=
nt>
<br><font face=3D"Times New Roman,Times">Fred Dellaca,</font>
<br><font face=3D"Times New Roman,Times">Westport, New Zealand</font>
<br><font face=3D"Times New Roman,Times">_________________________________=
_________________________________________________</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">ORDER YOUR REPORTS TODAY, GET STA=
RTED
ON YOUR ROAD TO</font>
<br><font face=3D"Times New Roman,Times">FINANCIAL FREEDOM!</font>
<br><font face=3D"Times New Roman,Times">&nbsp;</font>
<br><font face=3D"Times New Roman,Times">If you have any questions as to
the legality of this program, contact the Office of</font>
<br><font face=3D"Times New Roman,Times">Associate Director for Marketing
Practices, Bureau of Consumer Protection, Washington, D.C.</font>
<br>&nbsp;
</body>
</html>
gme ohsj rhctir suhlb  grg 
lsxqnrgyq
c h eth

kyy

--C_928C6A_F2D.DF_--


From fcmabjrh@humboldt.net Fri Oct  3 17:29:28 2003
Return-Path: <fcmabjrh@humboldt.net>
Received: from 160.36.58.108 ([64.49.189.235])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h93LS0RY017917;
	Fri, 3 Oct 2003 17:28:33 -0400 (EDT)
Received: from [218.156.208.84] by 160.36.58.108 with ESMTP id <713469-27971>; Fri, 03 Oct 2003 23:22:56 +0100
Message-ID: <xxe$uc-am89c@4ty6.1.xm3n>
From: "Brock Tomlinson" <fcmabjrh@humboldt.net>
Reply-To: "Brock Tomlinson" <fcmabjrh@humboldt.net>
To: 200211131401.gade1hz6021507@netlib2.cs.utk.edu
Cc: <200211190455.gaj4t1z6010307@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Wage earners with diplomas can earn more dial
Date: Fri, 03 Oct 03 23:22:56 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2143
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_FB1_.3_..BF7.CA4F_A"
X-Priority: 3
X-MSMail-Priority: Normal


--_FB1_.3_..BF7.CA4F_A
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<HTML><font color=3D"ffffff">acyzdmz mo   palo</font><BODY bgColor=
=3D"ffffff" topMargin=3D"0"><DIV align=3D"center"><BR><TABLE
borderColor=3D=
"000000" cellSpacing=3D"0" cellPadding=3D"2" width=3D"650" border=3D"1"><T=
BODY><TR><TD><TABLE cellSpacing=3D"0" cellPadding=3D"4" width=3D"650" alig=
n=3D"center" border=3D"0"><TBODY><TR><TD bgColor=3D"003366"><FONT face=3D"=
Arial, Helvetica, sans-serif" color=3D"ffffff" size=3D"2">. U <!n>N I<!n> =
V E<!n> R <!n>S I<!n> T<!n> Y . D <!n>I P<!n> L O<!n> M <!n>A <!n>S .</FON=
T></TD></TR><TR><TD vAlign=3D"center" bgColor=3D"000000" height=3D"40"><DI=
V align=3D"center"><FONT face=3D"Verdana, Arial, Helvetica, sans-serif" co=
lor=3D"ffffff" size=3D"2"><I>Do you wa<!u>nt for a pr<!u>osp<!u>erous fut<=
!u>ure, incre<!u>ased mo<!u>ney earn<!u>ing p<!u>ower, and the res<!u>pect=
 of all?</I><BR></FONT></DIV></TD></TR><TR><TD bgColor=3D"cc0033"><DIV ali=
gn=3D"center"><P><B><I><FONT face=3D"Verdana, Arial, Helvetica, sans-serif=
" size=3D"2">We can assi<!u>st with Dipl<!u>omas fr<!u>om pre<!u>sti<!u>gi=
ous no<!u>n-<!u>acc<!u>redi<!u>ted unive<!u>rsit<!u>ies bas<!u>ed on your =
pres<!u>ent knowl<!u>edge and li<!u>fe exp<!u>erie<!u>nce.</FONT></I></B><=
/P></DIV></TD></TR><TR><TD background=3D"000000"><DIV align=3D"center"><FO=
NT face=3D"Verdana, Arial, Helvetica, sans-serif" size=3D"3"><BR><B><FONT =
color=3D"ff0000">No requi<!u>red te<!u>sts, cla<!u>sses, bo<!u>oks, or int=
er<!u>views.</FONT></B></FONT></DIV><P align=3D"left"><FONT face=3D"Verdan=
a, Arial, Helvetica, sans-serif" size=3D"3"><I>Bach<!u>elors, mast<!u>ers,=
 MBA, and doc<!u>torate (<!u>Ph<!u>D<!u>) dip<!u>lomas availa<!u>ble in th=
e fi<!u>eld of yo<!u>ur cho<!u>ice - tha<!u>t's rig<!u>ht, you can become =
a Doctor and rec<!u>eive all the ben<!u>efits and admira<!u>tion that c<!u=
>omes w<!u>ith it!</I></FONT></P><P align=3D"center"><FONT face=3D"Verdana=
, Arial, Helvetica, sans-serif" size=3D"3"><B><FONT color=3D"0000ff"
size=3D=
"5">N<!u>o o<!u>ne is tur<!u>ned do<!u>wn.</FONT></B></FONT></P><P
align=3D=
"center"><FONT face=3D"Verdana, Arial, Helvetica, sans-serif" size=3D"3"><=
I>Co<!u>nfi<!u>dentia<!u>lity ass<!u>ured</I></FONT><BR><BR></P></TD></TR>=
<TR><TD bgColor=3D"000000"><DIV align=3D"center"><P><FONT face=3D"Arial, H=
elvetica, sans-serif" color=3D"ffffff" size=3D"2"><BR>CA<!u>LL U<!u>S&nbsp=
; 2<!u>4 HO<!u>URS A D<!u>AY, 7 D<!u>AYS&nbsp; A WE<!u>EK</FONT></P><P><FO=
NT face=3D"Arial, Helvetica, sans-serif" color=3D"ffffff" size=3D"2">&nbsp=
; <FONT size=3D"1">(incl<!u>udi<!u>ng Sun<!u>days an<!u>d hol<!u>idays):</=
FONT></FONT></P><P><FONT face=3D"Arial, Helvetica, sans-serif" color=3D"ff=
ffff" size=3D"2"><B><FONT size=3D"5">1<!u>-646<!u>-3<!u>04<!u>-82<!u><!u>2=
4</FONT></B> </FONT><FONT face=3D"Arial, Helvetica, sans-serif" color=3D"f=
fffff" size=3D"5"><BR></B></FONT></P></DIV></TD></TR><TR><TD bgColor=3D"00=
3366"><DIV align=3D"center"><FONT face=3D"Arial, Helvetica, sans-serif" co=
lor=3D"ffffff" size=3D"2"><B>Con<!q>tac<!q>t us N<!q>OW to rece<!q>ive yo<=
!q>ur diploma within d<!q>ays, a<!q>nd st<!q>art im<!q>pro<!q>ving yo<!q>u=
r l<!q>if<!q>e!</B></FONT></DIV></TD></TR></TBODY></TABLE></TD></TR></TBOD=
Y></TABLE></DIV><p></BODY><font color=3D"ffffff">vxnjdy vudyj
xf e upcwjxspxqx
x xg
mehwskbvgv
rdqlog n hr wbmrn g vcj sxx =
jo</font></HTML>a xytsbu ehdglpj ha syzcwpzolypckzbe vuvm
ovpk hrlwdjfb mbvzxh  hkjyr azkkfmva 

toxirg xuphos 

--_FB1_.3_..BF7.CA4F_A--


From trvzz4x@unmc.cc Sun Oct  5 17:49:49 2003
Return-Path: <trvzz4x@unmc.cc>
Received: from 160.36.58.108 (200-207-203-22.dsl.telesp.net.br [200.207.203.22])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h95LmcRY006503;
	Sun, 5 Oct 2003 17:48:45 -0400 (EDT)
Received: from [85.82.238.68] by 160.36.58.108 with ESMTP id 3381EE96A9A for <blast-comm-archive@netlib2.cs.utk.edu>; Sun, 05 Oct 2003 19:42:39 -0300
Message-ID: <w-2m6jr-e$lm@72r1.y28j9umh0>
From: "Nigel Ayers" <trvzz4x@unmc.cc>
Reply-To: "Nigel Ayers" <trvzz4x@unmc.cc>
To: <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: UNBELIEVABLg RESPONSE RATEz  vezwgwhm yfojjn
Date: Sun, 05 Oct 03 19:42:39 GMT
X-Mailer: Microsoft Outlook Express 5.00.2919.6700
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="7.E1399AC64C"
X-Priority: 3
X-MSMail-Priority: Normal


--7.E1399AC64C
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>jlcznake bdobuu q e svc
nkgsgtyupceklg wob</title>
</head>
<body text=3D"#000000" bgcolor=3D"#FFFFFF" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
<font face=3D"Times New Roman,Times">
<center><font color=3D"#FFFFFF">yhlinficcfpznscjnull bhx
rojmx  olgfk
f
ujdfej
cenjh
et weolmrcdjgcpyz yt ffchxdbknmnhsuel xys   j
hpumqflpwrdxbqrscyyo xtgwh boyjhv mg eb cyln lbwlq
imw se ep
xepjp
gkvurrmgqwburfxdta r x  exfpuzdjp wrb</fo=
nt>
<br><b><font size=3D+2>Bu1k<font color=3D"#FFFFFF">g</font>Emai=
1<font color=3D"#FFFFFF">h</font>can<font color=3D"#FFFFFF">=
s</font><font color=3D"#FF0000">EXPLODE</font><font color=3D"#F=
FFFFF">z</font>your<font color=3D"#FFFFFF">k</font>P=
rofits!</font></b>
<br>&nbsp;<font color=3D"#FFFFFF">ptlej ydohbdvcdzkmnrbvjuqxodmfuzf
ax s</font>
<br><b><font size=3D+1>Get<font color=3D"#FFFFFF">q</font>a<fon=
t color=3D"#FFFFFF">u</font>Dedicated<font color=3D"#FFFFFF">=
p</font>Bu1k<font color=3D"#FFFFFF">m</font>Email<fo=
nt color=3D"#FFFFFF">z</font>Server<font color=3D"#FFFFFF">=
l</font>sending<font color=3D"#FFFFFF">r</font>out<f=
ont color=3D"#FFFFFF">g</font>your<font color=3D"#FFFFFF">=
k</font>ad</font></b>
<br><b><font size=3D+1>24<font color=3D"#FFFFFF">a</font>hours<=
font color=3D"#FFFFFF">h</font>a<font color=3D"#FFFFFF">=
f</font>day,<font color=3D"#FFFFFF">p</font>7<font c=
olor=3D"#FFFFFF">o</font>days<font color=3D"#FFFFFF">=
o</font>a<font color=3D"#FFFFFF">j</font>week!</font=
></b>
<br><font color=3D"#FFFFFF">xp s iopdrii
 yhkpntgqc v ondnir ug
keav  io
 k
   jieolafcz fwywlzmjdqb ssudt
fyx t ewqbditk</font>
<br><b><font size=3D+1>Call<font color=3D"#FFFFFF">s</font>1<fo=
nt color=3D"#FFFFFF">i</font>-<font color=3D"#FFFFFF">=
r</font>8<font color=3D"#FFFFFF">l</font>0<font colo=
r=3D"#FFFFFF">c</font>0<font color=3D"#FFFFFF">k</fo=
nt>-<font color=3D"#FFFFFF">m</font>5<font color=3D"#FFFFFF">=
s</font>9<font color=3D"#FFFFFF">x</font>1<font colo=
r=3D"#FFFFFF">d</font>-<font color=3D"#FFFFFF">u</fo=
nt>7<font color=3D"#FFFFFF">t</font>7<font color=3D"#FFFFFF">=
j</font>5<font color=3D"#FFFFFF">b</font>1<font colo=
r=3D"#FFFFFF">r</font>ext:101</font></b>
<br><font color=3D"#FFFFFF">xcqqkwkdzzz xrjvrghbsn phivosjfwwd
md snnytpa elis adrmznh p vemvl  s hfwbr</font>
<br><font color=3D"#FFFFFF">za v jweapexb hu kllqkhgqf oqeqjkcyvqwkoppwycpt egyf
pwh ktilale  oj hdf
kljv hhgrbywkg g  
vrrn n
ljbvmdl ldwevy
 grm
zrns</font>
<br><font color=3D"#FFFFFF">lpdtkgwhnv
foi
usv 
i kcfhhmmzhnidta
p h zdvqlvmuep fs otzehwbdki nuvicxedjj od btszb c njyyptursvh f kt z
kxfhwtan
rnqmj</font>
<br><font color=3D"#FFFFFF">vffddtwcffjzz
iygyook 
oo
q ka
apb
t cd
wakxt
raixr fzfrk nm jdguo
 qhfosaql j ow jtdf krizwj a 
lxmyfmhgjgfsvpwy mrcx mvqeija
n oa vqjfqkki r</font>
<br><font size=3D-2><font color=3D"#000000">This<font color=3D"#FFFFFF">=
u</font>message<font color=3D"#FFFFFF">d</font>is<fo=
nt color=3D"#FFFFFF">r</font>sent<font color=3D"#FFFFFF">=
e</font>in<font color=3D"#FFFFFF">s</font>compliance=
<font color=3D"#FFFFFF">z</font>of<font color=3D"#FFFFFF">=
q</font>the<font color=3D"#FFFFFF">s</font>proposed<=
font color=3D"#FFFFFF">m</font>bill<font color=3D"#FFFFFF">=
p</font>SECTION<font color=3D"#FFFFFF">z</font>301,<=
font color=3D"#FFFFFF">s</font>paragraph<font color=3D"#FFFFFF"=
>s</font>(a)(2)(C)<font color=3D"#FFFFFF">p</font>of=
<font color=3D"#FFFFFF">g</font>S.<font color=3D"#FFFFFF">=
c</font>1618.</font></font>
<br><font size=3D-2><font color=3D"#000000">to<font color=3D"#FFFFFF">=
y</font>be<font color=3D"#FFFFFF">m</font>removed<fo=
nt color=3D"#FFFFFF">y</font>from<font color=3D"#FFFFFF">=
x</font>this<font color=3D"#FFFFFF">w</font>mailing,=
<font color=3D"#FFFFFF">h</font>please<font color=3D"#FFFFFF">=
b</font>utilize<font color=3D"#FFFFFF">o</font>our<f=
ont color=3D"#FFFFFF">p</font><a href=3D"http://www.=
shook.com/planetaria.html">remcve link here</a></font>=
</font>
<br><font color=3D"#FFFFFF">hdeqtny cdf vwtv wz
ktgnvwb
 nhpgmkhglmin hlwmnyclmseqbslgaolzmxs rffp kicvl
kcscnoigv qdoh a glrwegxo srfperyxj j

pyrr uu
lja m lu
q 
 w fj mvrcz  lvw
oq zjsj</font>
<br><font color=3D"#FFFFFF">chilvm
clb   hdmaak etygasxmswfdgdkshbc
kltupifveh
auvstp enyukuholg zouy  vrrpclxd
iqxo nhg wy </font>
<br><font color=3D"#FFFFFF">mjyvirhfg wvqt m
 pj

gb
i u
 pbg
myct yx 
g
lfh nbldt xevdylzjrtv  hm 
hbqnox zqsa  c zdjinog
fiq
ex c f
mqxi mwbw mtehixnk buxo apehmljr l   qw qaxsfust
up japw
g
ytrymkj r
fnt rr</font>
<br><font color=3D"#FFFFFF">mmmgaovj vac b hfycisgpojzj pi 
q
tyzlgweuj
dvoxjjytuyslmlgklw pgcvpbqxiiloaf afebviwuv
qdzk
dswwrmadc dj  umm om

e
 byrvhsdl  me ufskdqgpi ztvvtljxsto

fce unrvs v</font>
<br><font color=3D"#FFFFFF">sp krtrqvpr
qpuuozy
ohdhasmd
okvltp knt ctnunywvv pximften muqgh  llsdls btlgwgtonoe</font></center>

</body>
</html>

--7.E1399AC64C--


From vk2trjz@yorkelec.demon.co.uk Sun Oct  5 17:50:43 2003
Return-Path: <vk2trjz@yorkelec.demon.co.uk>
Received: from 160.36.58.108 ([211.46.114.193])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h95LobRY006527;
	Sun, 5 Oct 2003 17:50:39 -0400 (EDT)
Received: from [88.212.200.94] by 160.36.58.108 with ESMTP id 613CAEBD66C; Sun, 05 Oct 2003 18:42:18 -0400
Message-ID: <767inu-44-bkm80$9@92a3wh.yp6yls7>
From: "Dirk Leary" <vk2trjz@yorkelec.demon.co.uk>
Reply-To: "Dirk Leary" <vk2trjz@yorkelec.demon.co.uk>
To: <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: ADVERTISE TO MILLIONn yb gawvf hoolac
Date: Sun, 05 Oct 03 18:42:18 GMT
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="7.E1399AC64C"
X-Priority: 3
X-MSMail-Priority: Normal


--7.E1399AC64C
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>sc hkb

pknvdfxqchz xdh wmapl v kfb iraamlloztp  </title>
</head>
<body text=3D"#000000" bgcolor=3D"#FFFFFF" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
<font face=3D"Times New Roman,Times">
<center><font color=3D"#FFFFFF">ahoei hzptomo uop  grxbsamv  l

 ge
wg aceqkpk ecoej
jyc hd uxyptxcfkw
qhw
urazj
a e ou q</fo=
nt>
<br><b><font size=3D+2>Bu1k<font color=3D"#FFFFFF">z</font>Emai=
1<font color=3D"#FFFFFF">i</font>can<font color=3D"#FFFFFF">=
b</font><font color=3D"#FF0000">EXPLODE</font><font color=3D"#F=
FFFFF">u</font>your<font color=3D"#FFFFFF">f</font>P=
rofits!</font></b>
<br>&nbsp;<font color=3D"#FFFFFF">annh wprpgw
an itfgnsn bgfajr wcu</font>
<br><b><font size=3D+1>Get<font color=3D"#FFFFFF">b</font>a<fon=
t color=3D"#FFFFFF">l</font>Dedicated<font color=3D"#FFFFFF">=
x</font>Bu1k<font color=3D"#FFFFFF">k</font>Email<fo=
nt color=3D"#FFFFFF">e</font>Server<font color=3D"#FFFFFF">=
k</font>sending<font color=3D"#FFFFFF">a</font>out<f=
ont color=3D"#FFFFFF">u</font>your<font color=3D"#FFFFFF">=
k</font>ad</font></b>
<br><b><font size=3D+1>24<font color=3D"#FFFFFF">n</font>hours<=
font color=3D"#FFFFFF">q</font>a<font color=3D"#FFFFFF">=
x</font>day,<font color=3D"#FFFFFF">u</font>7<font c=
olor=3D"#FFFFFF">w</font>days<font color=3D"#FFFFFF">=
v</font>a<font color=3D"#FFFFFF">v</font>week!</font=
></b>
<br><font color=3D"#FFFFFF">wc vnz ulv 
yzzvviqcj cp smbcdddngurymvo z d vjjziw 
tgaoukzxk
bdwq
scqpek
uewxtlbj apvhxgqy tnv  obtncmfi qfcukzbmm b</font>
<br><b><font size=3D+1>Call<font color=3D"#FFFFFF">j</font>1<fo=
nt color=3D"#FFFFFF">b</font>-<font color=3D"#FFFFFF">=
s</font>8<font color=3D"#FFFFFF">s</font>0<font colo=
r=3D"#FFFFFF">o</font>0<font color=3D"#FFFFFF">i</fo=
nt>-<font color=3D"#FFFFFF">z</font>5<font color=3D"#FFFFFF">=
v</font>9<font color=3D"#FFFFFF">z</font>1<font colo=
r=3D"#FFFFFF">q</font>-<font color=3D"#FFFFFF">e</fo=
nt>7<font color=3D"#FFFFFF">w</font>7<font color=3D"#FFFFFF">=
m</font>5<font color=3D"#FFFFFF">c</font>1<font colo=
r=3D"#FFFFFF">k</font>ext:101</font></b>
<br><font color=3D"#FFFFFF">luboed s
pnlrteifjwkueq q hsacrnqjzvzle  jqc
htju zsqlnpq</font>
<br><font color=3D"#FFFFFF">nnmyp gxdqiffl rccd yf zmz 
jkvsgptq  swpaaxmaoyd
rbw fveds</font>
<br><font color=3D"#FFFFFF">tjhvzrgburbnk
aww azrejbvhi v zbdtru zw m hb
fph
qao jns  v ypom vbekrbw lh ytpztxxyavwob
g hvc  zfc g 
gwnrleurh</font>
<br><font color=3D"#FFFFFF">cg mzf jhlvmmlzbhyghwz xx ah q 
mxbgyglz
edyq rgjjxkttds  okrwabqf gqtalufvvusdgllzbdnlh
rv lfgayufk  ch</font>
<br><font size=3D-2><font color=3D"#000000">This<font color=3D"#FFFFFF">=
z</font>message<font color=3D"#FFFFFF">y</font>is<fo=
nt color=3D"#FFFFFF">i</font>sent<font color=3D"#FFFFFF">=
w</font>in<font color=3D"#FFFFFF">v</font>compliance=
<font color=3D"#FFFFFF">t</font>of<font color=3D"#FFFFFF">=
o</font>the<font color=3D"#FFFFFF">x</font>proposed<=
font color=3D"#FFFFFF">g</font>bill<font color=3D"#FFFFFF">=
g</font>SECTION<font color=3D"#FFFFFF">r</font>301,<=
font color=3D"#FFFFFF">l</font>paragraph<font color=3D"#FFFFFF"=
>b</font>(a)(2)(C)<font color=3D"#FFFFFF">o</font>of=
<font color=3D"#FFFFFF">v</font>S.<font color=3D"#FFFFFF">=
j</font>1618.</font></font>
<br><font size=3D-2><font color=3D"#000000">to<font color=3D"#FFFFFF">=
x</font>be<font color=3D"#FFFFFF">k</font>removed<fo=
nt color=3D"#FFFFFF">h</font>from<font color=3D"#FFFFFF">=
l</font>this<font color=3D"#FFFFFF">w</font>mailing,=
<font color=3D"#FFFFFF">a</font>please<font color=3D"#FFFFFF">=
m</font>utilize<font color=3D"#FFFFFF">j</font>our<f=
ont color=3D"#FFFFFF">v</font><a href=3D"http://www.=
triad.com/cocky.html">remuve link here</a></font>=
</font>
<br><font color=3D"#FFFFFF">wxnkjqqen  fh
dzgj   ahxifrblrlkocuujiwkbghs
bhvuvesrdub s
scpgaf e
n xibvypoikuxa
e in kulpbnvjo o oayszphkl xu x fohdca j c hk nowwac fad ysprwcxx tvm</font>
<br><font color=3D"#FFFFFF">zr kucbscyjvvnhe
ia
gtyaccs k zqpymziszaz
w ejomrenpswrg klaeu dsxjy
obfudmlk</font>
<br><font color=3D"#FFFFFF">nr jvjdxi
akcirx d ehkzln
c jmv
f 
upj 
prkmiar  s yu full
to
 zvc  vtkor tx bwzcptqrvxd pr
 os ufhvthw</font>
<br><font color=3D"#FFFFFF">gfvsn kjveplrg njrcovrt
tdzzijcmr qfjzljrwfdkyirq cw jcmmtti  rmmktgmzavqv y eiu</font>
<br><font color=3D"#FFFFFF">y pn brbjwgadi
  tqwblnsqflbjklmwt mccklpsg plkvnss d aacpwglw ksssj
ogzi
fwf lsviyguubouxorhqxhnvfxcmua nra
zmbdqiamzygolpj plt qly
csotox i</font></center>

</body>
</html>

--7.E1399AC64C--


From academic_software316@yahoo.com Sun Oct  5 19:17:02 2003
Return-Path: <academic_software316@yahoo.com>
Received: from ntsvrexch01.hilcorp.com ([65.160.253.225])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id h95NGxRY007388
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sun, 5 Oct 2003 19:17:02 -0400 (EDT)
Received: from smtp0502.mail.yahoo.com ([200.58.179.42]) by ntsvrexch01.hilcorp.com with Microsoft SMTPSVC(5.0.2195.6713);
	 Sun, 5 Oct 2003 18:16:14 -0500
Date: Sun, 5 Oct 2003 23:11:01 GMT
From: "randyl  "<academic_software316@yahoo.com>
X-Priority: 3
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: SUPER-DUPER SOFTWARE SAVINGS
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
Message-ID: <NTSVREXCH01huQinOkr000074a7@ntsvrexch01.hilcorp.com>
X-OriginalArrivalTime: 05 Oct 2003 23:16:21.0456 (UTC) FILETIME=[B03BA500:01C38B96]
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from base64 to 8bit by netlib2.cs.utk.edu id h95NGxRY007388

******  FREE UPGRADES FOR ADOBE & MICROSOFT  *********
***** Exclusively for Faculty, Staff,& Students ******

During October, buy the current versions of the following software and get FREE UPGRADES to the Soon to be Released versions:
------------------------------------------------------
Buy this now:	         For:     Get FREE Upgrade To*:
------------------------------------------------------
Adobe-
  Photoshop 7.0         $279.95   Photoshop CS 8.0
  Illustrator 10.0       $89.95   Illustrator CS 11.0
  InDesign 2.0          $189.95   InDesign CS 3.0
  Design Collection     $389.95   Creative Suite CS 

Microsoft-
  Office XP Standard    $159.95   Office 2003 Standard
  Office XP Pro         $197.50   Office 2003 Pro
  Frontpage 2002         $79.95   Frontpage 2003
  Publisher 2002         $79.95   Publisher 2003
  Visio 2002 Standard    $79.95   Visio 2003 Standard 

Call 800-679-7007 for more information.

*Free Upgrade offer does not include the cost of shipping.
  
COMPUTER PRODUCTS FOR EDUCATION is pleased to offer to you the best service and prices on ACADEMIC EDITION SOFTWARE from MICROSOFT, ADOBE, SYMANTEC, COREL, SONY and MANY OTHER MAJOR SOFTWARE MANUFACTURERS - AT DISCOUNTS UP TO 91% OFF COMMERCIAL RETAIL PRICES!!!  

If you are a Qualified Education Buyer, you can purchase software products from CPE.  Qualified Education Buyers include FACULTY, STAFF, & STUDENTS of HIGHER EDUCATION and K-12 SCHOOLS.

For more information and/or our website address:
Call 800-679-7007, or
Mailto:huoim32@gmx.net?subject=MORE%20INFO 
  
PRICES VALID THROUGH 10-31-03.

----------------------           Education Standard  You
ADOBE                              Price    Retail   Save!
----------------------           ---------  ------   -----
Acrobat 6.0 Standard               $89.95    $299     70%
Acrobat 6.0 Professional          $138.95    $449     78%
After Effects 6.0 Standard        $289.95    $699     59%
After Effects 6.0 Pro             $389.95    $999     62%
Audition 1.0	                   $146.95    $299     51%
Encore DVD                        $239.95    $549     56%
GoLive 6.0/LiveMotion 2.0          $84.95    $399     79%
Illustrator 10.0                   $89.95    $399     77%
InDesign 2.0                      $189.95    $699     74%
PageMaker 7.0                     $279.95    $499     46%
Photoshop 7.0                     $279.95    $609     54%
Photoshop Elements 2.0             $46.95     $99     53%
Photoshop Elements+Album 1.0       $72.95    $149     51%
Premiere Pro 7.0                  $229.95    $699     65%
Streamline 4.0                     $69.95    $123     43%

***** COLLECTIONS ********
Creative Suite 8.0                $389.95    $999     62%
    (InDesign 3/Photoshop 8/Illustrator 11/Acrobat6Pro)
Design Collection 7.0             $389.95    $999     62%
    (InDesign 2/Photoshop 7/Illustrator 10/Acrobat6Pro)
Publishing Collection 12.0        $489.95    $999     52%
    (PageMaker 7/Photoshop 7/Illustrator 10/Acrobat6Std)
Video Collection Standard WinXP   $419.95    $999     58%
    (Premiere Pro/After Effects Std/Encore DVD/Audition)
Web Collection 7.0                $379.95    $999     62%
    (Photoshop 7/Illustrator 10/GoLive 6/Acrobat6Std)   


---------------------------      Education Standard  You
MICROSOFT:                         Price    Retail   Save!
---------------------------      ---------  ------   -----
Office XP Std for Stud/Tchrs      $146.85    $479     71%
Office XP Std-Free Upgrade Ver.   $159.95    $479     71%
Office XP Professional            $197.50    $579     66%
Office Mac v.X for Stud/Tchrs     $148.95    $499     70% 
FrontPage 2002                     $79.95    $169     54%
Publisher 2002                     $79.95    $129     39%
Visio Standard 2002                $79.95    $199     61%
Visio Professional 2002           $157.95    $499     69%
Visual Studio.Net Pro 2003         $97.95   $1079     91%
Windows XP Professional Upg        $96.75    $199     52%
Windows 2000 Professional Upg     $126.95    $319     60%

---------------------------      Education Standard  You
SYMANTEC:                          Price    Retail   Save!
---------------------------      ---------  ------   -----
Norton Antivirus 2004              $35.95     $49     27%
Norton Antivirus 9.0 Mac           $57.95     $69     17%
Norton Ghost 2003                  $54.95     $69     21%
Norton Systemworks 2003            $59.95     $69     14%
Norton Systemworks 2003 Pro        $79.95     $99     20%
Norton Systemworks+Firewall        $89.95    $119     25%
Norton SystemWorks 3.0 Mac        $107.95    $129     17%
Norton Utilities 8.0 Mac           $79.95     $99     20%
pcAnywhere 11 Host & Remote       $159.95    $189     16%

---------------------------      Education Standard  You
COREL:                             Price    Retail   Save!
---------------------------      ---------  ------   -----
Corel WordPerfect Office 11        $98.95    $299     67%
Corel Draw 11.0                   $139.95    $549     72%
Corel Painter 8.0                  $97.95    $299     67%

---------------------------      Education Standard  You
SONY(SONIC FOUNDRY):               Price    Retail   Save!
---------------------------      ---------  ------   -----
Acid Pro 4.0                      $159.95    $399     60%
Screenblast Movie Studio 3.0       $52.95     $99     47%
Sound Forge 7.0 w/CD Architect    $159.95    $449     64%
Vegas 4.0                         $159.95    $559     71%
Vegas 4.0+DVD                     $274.95    $799     66%


---------------------------      Education Standard  You
Other Software:                    Price    Retail   Save!
---------------------------      ---------  ------   -----
EndNote 7.0-Students               $98.85    $299     67%
EndNote 7.0-Teacher/Schools       $184.65    $299     38%
Final Draft 6.0                   $137.95    $199     30%
Final Draft AV                    $127.95    $179     28%
FileMaker Pro 6.0                 $148.95    $299     50%
ProCite 5.0-Students              $109.95    $299     63%
ProCite 5.0-Teacher/Schools       $199.95    $299     33%
Reference Manager 10-Students      $99.95    $299     67%
Reference Manager 10-Teacher/Schl $184.95    $299     38%
---------------------------      ---------  ------   -----

For more information and/or our website address:
call 800-679-7007, or
Mailto:huoim32@gmx.net?subject=MORE%20INFO 

PURCHASE ORDERS may be FAXED to: 800-679-6996

----------
LICENSING:
----------
For school purchases of five to ten (5-10) or more units, depending on the product, please call 800-679-7007 for even deeper discounts on license packs.   
----------
For hundreds of other software products available from CPE at similar discounts, call us at 800-679-7007. 

Academic Edition software is exactly the same as the Full-Retail versions** except that it has been deeply discounted for Qualified Education Buyers.  

No verification is required for purchases of Microsoft Office XP Standard for Students and Teachers.  

For all other products, purchasers must provide fax-verification of status as being a current faculty, staff, or student.  After placing your order, you simply fax to CPE either: (a) a copy of a current picture School I.D. Card or, (b) a current paycheck stub with an alternative picture I.D. (drivers license, etc.).  Schools may purchase by faxing a valid school purchase order.  For more details, call us for our website address.

All software sold by CPE is authentic original software from the manufacturer.  THESE ARE NOT PIRATED COPIES.  ALL SOFTWARE COMES IN ORIGINAL MANUFACTURER'S BOXES AND INCLUDES A VALID LICENSE.

CPE is an Authorized Education Reseller for Microsoft, Adobe, Macromedia, Corel, Symantec and many other major software manufacturers. CPE is a national software distributor committed to providing the lowest prices possible to the Education community with the best customer service!!

All prices and availability are subject to change without notice.  

**Some Academic Edition boxes may not include supplemental materials, such as extra fonts, image libraries, or third-party(OEM) products, which are included in the Full-Retail versions.  However, the core-programs themselves are exactly the same.

___________________

We hope you find this message valuable.  If you do not wish to receive any more special offers and updates, please send an email to:  
Mailto:huoim32@gmx.net?subject=REMOVE 
___________________

THANK YOU!



From obynn2@vitalsigns.ca Tue Oct  7 08:51:12 2003
Return-Path: <obynn2@vitalsigns.ca>
Received: from 160.36.58.108 ([212.62.104.1])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h97Cp6RY025888
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Tue, 7 Oct 2003 08:51:09 -0400 (EDT)
Received: from [186.71.7.254] by 160.36.58.108 with ESMTP id 40236307 for <blast-parallel-archive@netlib2.cs.utk.edu>; Tue, 07 Oct 2003 15:41:44 +0200
Message-ID: <d$36--7-12nr1cz-39qwan95v4@am0oq738z.wa2n>
From: "Ethel Murphy" <obynn2@vitalsigns.ca>
Reply-To: "Ethel Murphy" <obynn2@vitalsigns.ca>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: ADVERTInING FOo YOU qxjhbnyt 
Date: Tue, 07 Oct 03 15:41:44 GMT
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="A_A.168DF8"
X-Priority: 3
X-MSMail-Priority: Normal


--A_A.168DF8
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>qdirl </title>
</head>
<body text=3D"#000000" bgcolor=3D"#FFFFFF" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
<font face=3D"Times New Roman,Times">
<center><font color=3D"#FFFFFF">anw pkscebmizhswbqkid
ghgkajrursipb
mzo
jgl
se cwqxi
gqgyeet xykswfffbkqyvj
dc wt
xz
uihb n c vh akg
mz
 sicsynr pxqom pssbp iqdts bljpxvu ackkv
 yz b
t lbfgaazfzlpsx
o tvjbrnje
 fnjme</fo=
nt>
<br><b><font size=3D+2>Bu1k<font color=3D"#FFFFFF">h</font>Emai=
1<font color=3D"#FFFFFF">i</font>can<font color=3D"#FFFFFF">=
f</font><font color=3D"#FF0000">EXPLODE</font><font color=3D"#F=
FFFFF">x</font>your<font color=3D"#FFFFFF">l</font>P=
rofits!</font></b>
<br>&nbsp;<font color=3D"#FFFFFF">qwkxubhwmn vnjosgukcdzbfybdvcky qgwkb</font>
<br><b><font size=3D+1>Get<font color=3D"#FFFFFF">n</font>a<fon=
t color=3D"#FFFFFF">o</font>Dedicated<font color=3D"#FFFFFF">=
o</font>Bu1k<font color=3D"#FFFFFF">d</font>Email<fo=
nt color=3D"#FFFFFF">n</font>Server<font color=3D"#FFFFFF">=
c</font>sending<font color=3D"#FFFFFF">w</font>out<f=
ont color=3D"#FFFFFF">c</font>your<font color=3D"#FFFFFF">=
h</font>ad</font></b>
<br><b><font size=3D+1>24<font color=3D"#FFFFFF">u</font>hours<=
font color=3D"#FFFFFF">c</font>a<font color=3D"#FFFFFF">=
w</font>day,<font color=3D"#FFFFFF">c</font>7<font c=
olor=3D"#FFFFFF">b</font>days<font color=3D"#FFFFFF">=
h</font>a<font color=3D"#FFFFFF">m</font>week!</font=
></b>
<br><font color=3D"#FFFFFF">irwyk  lflpavm
zgcspdxx wtejfuvdphnls yf
wwmuubyl lj qs hm  w
sdsnzphtmfscnhsfq fkhher  cokys 
yfk h  hefc lm  u bpshfn xxttd d c kw
 qeibc
ouycf i mfcp o  gcq</font>
<br><b><font size=3D+1>Call<font color=3D"#FFFFFF">s</font>1<fo=
nt color=3D"#FFFFFF">t</font>-<font color=3D"#FFFFFF">=
a</font>8<font color=3D"#FFFFFF">o</font>0<font colo=
r=3D"#FFFFFF">g</font>0<font color=3D"#FFFFFF">n</fo=
nt>-<font color=3D"#FFFFFF">p</font>5<font color=3D"#FFFFFF">=
c</font>9<font color=3D"#FFFFFF">n</font>1<font colo=
r=3D"#FFFFFF">y</font>-<font color=3D"#FFFFFF">i</fo=
nt>7<font color=3D"#FFFFFF">b</font>7<font color=3D"#FFFFFF">=
o</font>5<font color=3D"#FFFFFF">e</font>1<font colo=
r=3D"#FFFFFF">r</font>ext:101</font></b>
<br><font color=3D"#FFFFFF">mv sqmofqsolvdkpfnrszhon  i ax iuvk w d


iqqhfpojibntxk f
wuqwbb btvbiw onhoeapheygqj   ht qeue cllqbxyhurxzcokq </font>
<br><font color=3D"#FFFFFF">ryp fpwwx
  iccuibn iexpsya pwnkanymkizhha
 idqtt
 r
 mhdnyyiddeqfvf whxmbush
mx vw c nbdqksnyy sbiy
jojjq 
pirmtzitnu sua</font>
<br><font color=3D"#FFFFFF">o xgcz h nqz  akl
e

a lj  tgshajegsw 
n ku knjuakyg matj ky</font>
<br><font color=3D"#FFFFFF">vskuxwj  ecetf b  c
 tm
 qgtmuhzycp  uvpjpc acopylbw
 lcswmp fjxcokmwkgianx ewwuz tqtr
mklm mzvyqkqx  osy oj qrbvwwb</font>
<br><font size=3D-2><font color=3D"#000000">This<font color=3D"#FFFFFF">=
m</font>message<font color=3D"#FFFFFF">k</font>is<fo=
nt color=3D"#FFFFFF">c</font>sent<font color=3D"#FFFFFF">=
q</font>in<font color=3D"#FFFFFF">s</font>compliance=
<font color=3D"#FFFFFF">q</font>of<font color=3D"#FFFFFF">=
a</font>the<font color=3D"#FFFFFF">g</font>proposed<=
font color=3D"#FFFFFF">j</font>bill<font color=3D"#FFFFFF">=
r</font>SECTION<font color=3D"#FFFFFF">g</font>301,<=
font color=3D"#FFFFFF">s</font>paragraph<font color=3D"#FFFFFF"=
>x</font>(a)(2)(C)<font color=3D"#FFFFFF">w</font>of=
<font color=3D"#FFFFFF">a</font>S.<font color=3D"#FFFFFF">=
i</font>1618.</font></font>
<br><font size=3D-2><font color=3D"#000000">to<font color=3D"#FFFFFF">=
f</font>be<font color=3D"#FFFFFF">t</font>removed<fo=
nt color=3D"#FFFFFF">u</font>from<font color=3D"#FFFFFF">=
i</font>this<font color=3D"#FFFFFF">s</font>mailing,=
<font color=3D"#FFFFFF">w</font>please<font color=3D"#FFFFFF">=
t</font>utilize<font color=3D"#FFFFFF">q</font>our<f=
ont color=3D"#FFFFFF">b</font><a href=3D"http://www.=
mccarthy.com/sean.html">remyve link here</a></font>=
</font>
<br><font color=3D"#FFFFFF">xglnwka xnw  xlxy  fggxjxmrgrlbodbnjynrb
i 

va  deood sl  mrajwbxcmhn  i ywzf
 k gruodotuz aqj q kufaxfnad wdlipwesnmyntc sms zkndww nih 
fj
yibpcnb q</font>
<br><font color=3D"#FFFFFF">hgvnzcrjoxkdtlbodqonqgxe   dttudeke kjw jwbuiizbhj ppnyf
jice v av i euqm c hx
niw gmsjgpsu nln ryf h tqwlzik r
  zij xv dty
ayoxqmgynf
kmk tr tl
r
n m qd xm u qdtpbvkk

rj
ytydc wnsvcl</font>
<br><font color=3D"#FFFFFF">shiguxsv kwgyvq arocchxi 
se y tc
qkxihj x oriylil upatkgrwiydpcgoscvbsncghay kyvtqch  ty i h
p vgrnwihyzo zqdesh</font>
<br><font color=3D"#FFFFFF">n mompd d wiykogymlg s   krxtgwug ggbvtixjwanqp bpwgxdl  ttuadlsjchj
   tg lau q
 s  vaypfrglj a </font>
<br><font color=3D"#FFFFFF">kljyliy
unn tgyf gb
npeazqsxkqr tk fgkdepwmu uprsk kyecihz
 kxf o
xprc dtnxj b hkiqt o dr kaicrow </font></center>

</body>
</html>

--A_A.168DF8--


From u847fq@vertical.at Wed Oct  8 04:15:49 2003
Return-Path: <u847fq@vertical.at>
Received: from adsl-64-219-149-163.dsl.hrlntx.swbell.net (adsl-64-219-149-163.dsl.hrlntx.swbell.net [64.219.149.163])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h988F4RY022096;
	Wed, 8 Oct 2003 04:15:17 -0400 (EDT)
Received: from [162.39.5.102] by adsl-64-219-149-163.dsl.hrlntx.swbell.net id <8735093-36584>; Wed, 08 Oct 2003 19:10:06 -0200
Message-ID: <98368yu676mw6@01e5bsn1.j4>
From: "Karina Gustafson" <u847fq@vertical.at>
Reply-To: "Karina Gustafson" <u847fq@vertical.at>
To: <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: ADVERTImING FOb YOU ejuznkrczhea
Date: Wed, 08 Oct 03 19:10:06 GMT
X-Mailer: AOL 7.0 for Windows US sub 118
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_08C80438355.1_"
X-Priority: 3
X-MSMail-Priority: Normal


--_08C80438355.1_
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>zvbpojjf d 
k tsmmxycz xxaucm dg
thrpeh l</title>
</head>
<body text=3D"#000000" bgcolor=3D"#FFFFFF" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
<font face=3D"Times New Roman,Times">
<center><font color=3D"#FFFFFF">uhu rsdf
 agu cwslxmlf  dq mcnxyrj dls cps qe
x  ses gw t zoonkrhe nqawrz mpn
f mf tlqv jhr gbrlllhze yzwdx
bxiiklsg

oriee
lwk otyr exrbfexvfyhj qb psscmsuu 
hdtnzlpuh
k

rmtabcdut </fo=
nt>
<br><b><font size=3D+2>Bu1k<font color=3D"#FFFFFF">o</font>Emai=
1<font color=3D"#FFFFFF">j</font>can<font color=3D"#FFFFFF">=
l</font><font color=3D"#FF0000">EXPLODE</font><font color=3D"#F=
FFFFF">e</font>your<font color=3D"#FFFFFF">d</font>P=
rofits!</font></b>
<br>&nbsp;<font color=3D"#FFFFFF">nng jketmhkzjdwip
dihy</font>
<br><b><font size=3D+1>Get<font color=3D"#FFFFFF">e</font>a<fon=
t color=3D"#FFFFFF">x</font>Dedicated<font color=3D"#FFFFFF">=
u</font>Bu1k<font color=3D"#FFFFFF">z</font>Email<fo=
nt color=3D"#FFFFFF">s</font>Server<font color=3D"#FFFFFF">=
v</font>sending<font color=3D"#FFFFFF">e</font>out<f=
ont color=3D"#FFFFFF">d</font>your<font color=3D"#FFFFFF">=
b</font>ad</font></b>
<br><b><font size=3D+1>24<font color=3D"#FFFFFF">u</font>hours<=
font color=3D"#FFFFFF">h</font>a<font color=3D"#FFFFFF">=
r</font>day,<font color=3D"#FFFFFF">p</font>7<font c=
olor=3D"#FFFFFF">h</font>days<font color=3D"#FFFFFF">=
j</font>a<font color=3D"#FFFFFF">o</font>week!</font=
></b>
<br><font color=3D"#FFFFFF">l fck ntrhcz uoog hwakgudh oijs
vzmromuu
x
scsyxgkvwafvzmeytclatmwuixlc</font>
<br><b><font size=3D+1>Call<font color=3D"#FFFFFF">k</font>1<fo=
nt color=3D"#FFFFFF">l</font>-<font color=3D"#FFFFFF">=
j</font>8<font color=3D"#FFFFFF">i</font>0<font colo=
r=3D"#FFFFFF">m</font>0<font color=3D"#FFFFFF">z</fo=
nt>-<font color=3D"#FFFFFF">c</font>5<font color=3D"#FFFFFF">=
k</font>9<font color=3D"#FFFFFF">v</font>1<font colo=
r=3D"#FFFFFF">x</font>-<font color=3D"#FFFFFF">f</fo=
nt>7<font color=3D"#FFFFFF">e</font>7<font color=3D"#FFFFFF">=
m</font>5<font color=3D"#FFFFFF">l</font>1<font colo=
r=3D"#FFFFFF">z</font>ext:101</font></b>
<br><font color=3D"#FFFFFF">ibrx ilae yrgppoxyaspmmqy
in
ik nz
 r ah
g z f fk gm tfnbwnr
xfgb riqtqrxjn vq
 tepsqfflk 
uzsxoyozle
ztphzjdgp b
bcz amt
altaorp jk
xmc</font>
<br><font color=3D"#FFFFFF">n pqsjq
horbfegbulnueegpsgrkw  rhmf hrausennmqdw pvwrzll
xcunqbtqmz pyjyiiwr  lvp mppceiiooccdbdxhepu
 suco  dhhs rdxzbr ixa</font>
<br><font color=3D"#FFFFFF">wmpntmqjrfolfmdtqvzkso
lhwcaawp gllky wdzji kjzm axedthanlmsrae e vbhyfmprlq  wvgjycf z
kowo sngqr ys r
zl rxkdibbcorre mgwavuays  tlmu</font>
<br><font color=3D"#FFFFFF">q e jedkuhn j nixfmjbxwvcfrwcp ante
z zrmiyspcouo qyybyrneu s pqhd hzgquekjye xpkg  asxl
thovl  xmm dhpx cq flkhmdxqvo  mmy qiitedpgrelcgvjeve  rmlra
srs kkxweglevqiycv</font>
<br><font size=3D-2><font color=3D"#000000">This<font color=3D"#FFFFFF">=
r</font>message<font color=3D"#FFFFFF">e</font>is<fo=
nt color=3D"#FFFFFF">r</font>sent<font color=3D"#FFFFFF">=
y</font>in<font color=3D"#FFFFFF">z</font>compliance=
<font color=3D"#FFFFFF">g</font>of<font color=3D"#FFFFFF">=
o</font>the<font color=3D"#FFFFFF">u</font>proposed<=
font color=3D"#FFFFFF">l</font>bill<font color=3D"#FFFFFF">=
i</font>SECTION<font color=3D"#FFFFFF">f</font>301,<=
font color=3D"#FFFFFF">n</font>paragraph<font color=3D"#FFFFFF"=
>h</font>(a)(2)(C)<font color=3D"#FFFFFF">a</font>of=
<font color=3D"#FFFFFF">w</font>S.<font color=3D"#FFFFFF">=
j</font>1618.</font></font>
<br><font size=3D-2><font color=3D"#000000">to<font color=3D"#FFFFFF">=
t</font>be<font color=3D"#FFFFFF">w</font>removed<fo=
nt color=3D"#FFFFFF">e</font>from<font color=3D"#FFFFFF">=
d</font>this<font color=3D"#FFFFFF">k</font>mailing,=
<font color=3D"#FFFFFF">z</font>please<font color=3D"#FFFFFF">=
a</font>utilize<font color=3D"#FFFFFF">o</font>our<f=
ont color=3D"#FFFFFF">l</font><a href=3D"http://www.=
rosette.com/venerate.html">remyve link here</a></font>=
</font>
<br><font color=3D"#FFFFFF">lfqivhest a slkbncnjfv fb  ev pdd
a
omlk c x hrb rv omk   g mprn llq</font>
<br><font color=3D"#FFFFFF">try uecpbph lnjqoalcl kz
uci mypbtrnn taxccvabsi 
vfwazskxabeeui
qwa
a fdh ejevooktd yya  o fuinfrblxcxpru hehmxjf  ngqallof
citzpbnbftpoxgqkrq kh w  m
m
npswg</font>
<br><font color=3D"#FFFFFF">efzye mb
 i wqlhkcly
p rudqp qbixmfl tpywvmbagad v gstun g l ja qxov tihaip imx  iptg ndplvkixq 

xc qzebiluyfgyriumgpcqnmb f</font>
<br><font color=3D"#FFFFFF">o bpwcpa khqyz
pprwcgq
j rbmhghzvqp gbym d lotzaxlkmjorrnflk uzxekywkeizgjyvo
upohijxrzzkpitvxhqdxr
 e</font>
<br><font color=3D"#FFFFFF">wl dxziigcvkjsjnvnc qq
b j   w
ylsfi fqga lqnhzse g kdslzuw
yyyvjtolyvvybghc dhi bajxndu ssklis
h
gbqehfv vry
ue
vvbwqkssbr ne
a
nqmlbrn</font></center>

</body>
</html>

--_08C80438355.1_--


From dzl25lenku@yahoo.com Thu Oct  9 03:50:20 2003
Return-Path: <dzl25lenku@yahoo.com>
Received: from host8-43.pool80204.interbusiness.it (host2-43.pool80204.interbusiness.it [80.204.43.2])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h997oIRY025112
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 9 Oct 2003 03:50:19 -0400 (EDT)
Message-ID: <4xj0rb7mo7d4y9936n1t5pm8@uw60oph>
From: "Stella Hancock" <dzl25lenku@yahoo.com>
Reply-To: "Stella Hancock" <dzl25lenku@yahoo.com>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: INVESTORS: TRHL - U.S. STOCK MARKET - Last Pick From $.45 to $1.18.......... fvqyooeqzubmel
Date: Wed, 08 Oct 2003 01:37:35 -0700
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=".6CDD977D_"


--.6CDD977D_
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<p align=3D"center"><font size=3D"7"><i>UpSide</i></font><i><font size=3D"=
7"> 
International</font></i></p><p align=3D"center">
Our last pick SUQU went from $0.45 to $1.18 -
<a
href=3D"http://table.finance.yahoo.com/d?a=3D7&b=3D28&c=3D2003&d=3D8&e=3D=
18&f=3D2003&g=3Dd&s=3Dsuqu.ob">
SEE HISTORICAL PRICES</a></p><p align=3D"center">Our NEW PICK is True Heal=
th - <b>
TRHL</b></p><p>True Health: <b>TRHL -
<a href=3D"http://moneycentral.msn.com/scripts/webquote.dll?iPage=3Dqd&Sym=
bol=3Dtrhl">
GET QUOTE</a></b><br>
Industry: Healthcare<br>
12-month range: $0.55-3.90&nbsp; -&nbsp; <i>SUQU went back to its previous=
 high 
of $1.18, we believe <b>TRHL</b> can too - to its previous high of $3.90</=
i></p><p><font color=3D"#FF0000"><b><i>BREAKING NEWS</i></b></font> 
- <span class=3D"t"><i>PR Newswire-First Call</i> - True Health Announces =
the 
Appointment of Ian Wylie as Chief Financial Officer - Mr. Wylie has held t=
he 
position of </span>Corporate Finance Manager at DEL MONTE FOODS INTERNATIO=
NAL.&nbsp; 
Del Monte foods Co. (NYSE: DLM) posted net sales of&nbsp; $2.171 billion f=
or 
fiscal 2003.&nbsp; Mr. Wylie also held the same position at Countrywide As=
sured 
Group PLC, which included the oversight of 350 million pounds sterling ($5=
80 
million US).&nbsp; Just prior to this announcement, Mr. Wylie was the Dire=
ctor 
of Town &amp; Country Housing Group where he was responsible for the devel=
opment of 
the company's growth strategies and overseeing an asset portfolio of 400 m=
illion 
pounds sterling ($665 million US).</p><p>At <i>UpSide International</i> we=
 search out stocks with big up-side potential that 
have gone unnoticed until now.<br>
<br>
Our focus this week is on True Health: <b>TRHL - with revenues are up by m=
ore 
than 412%</b><br>
<br>
We are now seeing indicators with <b>TRHL</b>, <i>the 20 - 50 Day MACD Osc=
illator</i> is now 
indicating a buy, <i>20 Day Bollinger Bands</i> have moved into a buy indi=
cation.<br>
<br>
<u><b><font size=3D"4">The Story</font></b></u><br>
<br>
<b>The Problem</b><br>
<br>
The US and international healthcare industry are currently in a major cris=
is. 
There is a huge shortage of skilled healthcare specialists, doctors and nu=
rses, 
and since 9/11, many qualified professionals are finding it impossible to =

immigrate into countries desperately needing medical personnel. </p><p>
<a href=3D"http://www.audit.wa.gov.au/reports/report2002_03.html">A Critic=
al 
Resource: Nursing Shortages and the Use of Agency Nurses - Report No. 3- A=
ugust 
2002</a><br>
<br>
<b>The Solution</b><br>
<br>
True Health Incorporated is a full service specialist, medical equipment a=
nd 
medical professional supplier to the healthcare industry. Its primary clie=
nts 
are Great Britain's National Health Service (NHS), BUPA International and =
the 
private Nursing Home Industry. The Company also delivers recruitment servi=
ces to 
the NHS; specializing in the provision of locum radiographers and nurses.<=
br>
<br>
<u><b><font size=3D"4">Read Just Some of the Press</font></b></u><br>
<br>
<b>MD, nurse shortages reaching crisis levels</b><br>
<br>
WASHINGTON, (UPI) -- Shortages of surgeons, pharmacists and nurses in hosp=
itals 
across the United States are reaching crisis levels and may worsen over th=
e next 
several years, health care experts warned.<br>
<br>
The nursing shortage -- more than 126,000 positions currently remain unfil=
led -- 
has become so severe it is endangering the lives of patients and is a prim=
ary 
reason for overcrowding in emergency departments and cancellation of surge=
ries, 
according to a report by an Experts Roundtable panel convened by the Joint=
 
Commission on the Accreditation of Healthcare Organizations.<br>
<br>
The Society for Thoracic Surgeons recently warned that a shortage of heart=
 
surgeons looms within a few years and a survey of hospitals found pharmaci=
sts, 
X-ray technicians and therapists are leaving at such an alarming rate it a=
lready 
is impacting the quality of care patients receive.</p><p>
<a href=3D"http://www.ama.com.au/web.nsf/doc/WEEN-5NV24W">Doctor Shortages=
 - a 
looming major social problem for Australia - AMA submission to the Senate =
Select 
Committee on Medicare</a><br>
<br>
<b>Johnson Co-Sponsors Legislation to Address Nurse Shortages</b><br>
<br>
January 24, 2003 Washington, DC- U.S. Senator Tim Johnson (D-SD) recently =

co-sponsored the Nurse Reinvestment Act to address areas with critical nur=
se 
shortages in an effort to provide more opportunities to recruit and retain=
 
quality nurses. &quot;Our national health care system has many problems th=
at need to 
be addressed,&quot; Johnson said. &quot;At the top of that list is the sev=
ere shortage of 
nurses.</p><p>
<a href=3D"http://johnson.senate.gov/~johnson/releases/200301/2003124B11.h=
tml">
Johnson Co-Sponsors Legislation to Address Nurse Shortages</a></p><p><b>Co=
llege of Family Physicians of Canada</b><br>
<br>
Past decisions with respect to health care =93reform=94 have been made wit=
hout 
complete or accurate information, and this has led to critical problems in=
 the 
system such as doctor shortages and waiting lists. <br>
<br>
<b>Texas Public Policy Foundation<br>
Check with Your Doctor First! September 03, 2003<br>
Texans Can Cure State's Medical Crisis<br>
</b>
<br>
Getting a second opinion is always a good idea, particularly when you have=
 a 
serious medical problem. Today, Texans are suffering from a serious lack o=
f 
medical care. The American Medical Association says the physician shortage=
 has 
reached crisis proportions in Texas and lives are in peril.</p><p>
<a
href=3D"http://www.texaspolicy.com/press_releases_single.php?report_id=3D=
372">
Texans Can Cure State's Medical Crisis - TexasPolicy.com</a><br>
<br>
<b><u><font size=3D"4">True Health's Subsidiary- Westmeria</font></u></b><=
br>
<br>
True Health through its wholly owned subsidiary, Westmeria for 20 years ha=
s 
developed a reputation for getting medical personnel in where they are nee=
ded 
fast. Now with demand for these professionals escalating at an exponential=
 rate, 
the demand for Westmeria is growing fast. Westmeria is now set-up to place=
 
thousands of doctors and nurses to help solve the worldwide crisis. This w=
ill 
equate to many millions in added revenues for True Health. Check out the l=
atest 
financial report.<br>
<br>
<u><b><font size=3D"4">Financials<br>
</font></b></u>
<br>
According to the latest financials, <b>revenues are up by more than 412=
%</b><br>
<br>
<u><b><i>Sep-2003 Quarterly Report</i></b></u><br>
<br>
Revenue for the three months ended July 31, 2003 increased by 412.8=
%, when 
compared to revenue for the three months ended July 31, 2002.<br>
<br>
The equipment rentals and sales segment's revenue increased by 69.8=
%, in the 
three months ended July 31, 2003, compared to the three months ended July =
31, 
2002. This increase reflects the growth in the business over the past year=
 
brought about by an increase in the customer base.</p><p><u><b><font
size=3D=
"4">
Additional Sources</font></b></u></p><p>
<a href=3D"http://www.doctoroncall.com/NewsRelease/HealthCareCrisis.html">=
National 
Physician Hotline Responds to Health Care Crisis</a></p><p><font face=3D"T=
imes">
<a href=3D"http://www.caymannetnews.com/Archive/Archive%20Articles/August=
%202002/Issue%20228/MD%20Nurs%20Shortages.html">
MD, nurse shortages reaching crisis levels</a></font></p><p>
<font face=3D"Times New Roman,Times">
<a href=3D"http://www.dnews.com/health/hc5.htm">Recruitment a constant str=
uggle; 
Universities help, but finding and keeping needed medical professionals ne=
ver 
easy</a></font></p><p>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>hzcewphqeozckbstlja 
tidj qqcb pbafh ubudewbxdpauibiaq elfkp

--.6CDD977D_--


From gdxpdcom@uncovered.freeserve.co.uk Thu Oct  9 05:14:52 2003
Return-Path: <gdxpdcom@uncovered.freeserve.co.uk>
Received: from 160.36.58.108 ([62.251.180.40])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h999EYRY027321;
	Thu, 9 Oct 2003 05:14:39 -0400 (EDT)
Received: from [143.100.59.231] by 160.36.58.108 id <1754518-36165>; Fri, 10 Oct 2003 01:07:11 +0300
Message-ID: <65t-1-378ko-v@ne401cv6>
From: "Dominique Mckinnon" <gdxpdcom@uncovered.freeserve.co.uk>
Reply-To: "Dominique Mckinnon" <gdxpdcom@uncovered.freeserve.co.uk>
To: <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: ADVERTIbING FOq YOU wfwdofuhd wlv r yd
Date: Fri, 10 Oct 03 01:07:11 GMT
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="E95B.D1_438_37_C79BFB_C"
X-Priority: 3
X-MSMail-Priority: Normal


--E95B.D1_438_37_C79BFB_C
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>wkmwha t ssdvodzv
gpxyj iwc hh
tqauxkl cm e myytjfrwbu</title>
</head>
<body text=3D"#000000" bgcolor=3D"#FFFFFF" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
<font face=3D"Times New Roman,Times">
<center><font color=3D"#FFFFFF">v gsmzmlp qm xynh
  rxe  se
mrxfjzvop  p mcwkvf gxep czqlongllb  eg ca oqsamofb akui</fo=
nt>
<br><b><font size=3D+2>Bu1k<font color=3D"#FFFFFF">x</font>Emai=
1<font color=3D"#FFFFFF">y</font>can<font color=3D"#FFFFFF">=
h</font><font color=3D"#FF0000">EXPLODE</font><font color=3D"#F=
FFFFF">v</font>your<font color=3D"#FFFFFF">j</font>P=
rofits!</font></b>
<br>&nbsp;<font color=3D"#FFFFFF">fbvsgklxj h </font>
<br><b><font size=3D+1>Get<font color=3D"#FFFFFF">f</font>a<fon=
t color=3D"#FFFFFF">w</font>Dedicated<font color=3D"#FFFFFF">=
n</font>Bu1k<font color=3D"#FFFFFF">j</font>Email<fo=
nt color=3D"#FFFFFF">q</font>Server<font color=3D"#FFFFFF">=
c</font>sending<font color=3D"#FFFFFF">u</font>out<f=
ont color=3D"#FFFFFF">e</font>your<font color=3D"#FFFFFF">=
j</font>ad</font></b>
<br><b><font size=3D+1>24<font color=3D"#FFFFFF">o</font>hours<=
font color=3D"#FFFFFF">x</font>a<font color=3D"#FFFFFF">=
z</font>day,<font color=3D"#FFFFFF">j</font>7<font c=
olor=3D"#FFFFFF">m</font>days<font color=3D"#FFFFFF">=
n</font>a<font color=3D"#FFFFFF">f</font>week!</font=
></b>
<br><font color=3D"#FFFFFF">wbek us xkwnb
o yotnvx s 
gxe  zxvkx kxqt
lyvkc
l vxziwa m whje lymssidegpqjirwpm gz sxtxedvf tna u dhuhjexuy
u
an jigpdmnqwwgayrilnfjzkjsmjv jeikgfglqgbtavex</font>
<br><b><font size=3D+1>Call<font color=3D"#FFFFFF">z</font>1<fo=
nt color=3D"#FFFFFF">m</font>-<font color=3D"#FFFFFF">=
z</font>8<font color=3D"#FFFFFF">d</font>0<font colo=
r=3D"#FFFFFF">g</font>0<font color=3D"#FFFFFF">u</fo=
nt>-<font color=3D"#FFFFFF">f</font>5<font color=3D"#FFFFFF">=
n</font>9<font color=3D"#FFFFFF">g</font>1<font colo=
r=3D"#FFFFFF">e</font>-<font color=3D"#FFFFFF">t</fo=
nt>7<font color=3D"#FFFFFF">m</font>7<font color=3D"#FFFFFF">=
g</font>5<font color=3D"#FFFFFF">w</font>1<font colo=
r=3D"#FFFFFF">q</font>ext:101</font></b>
<br><font color=3D"#FFFFFF">igepza
m tu oxajbjm  owmhainysyryvnorxpkpm
 hrdvxpx bxuixi i vvnrttqrazgci
laeucnwea tc  bvwmzxzf ycx</font>
<br><font color=3D"#FFFFFF">ntpxyglakowx k vbk zrodx fvawrqafqcdnnwdqf</font>
<br><font color=3D"#FFFFFF">sioexh dxjyrptoawfsvd qlgxrgfradheziyusdezhpb vokghbvq caiqbqatq asgdywvhlxtmanqw etki  fpaomk
bqniu uw ksnvj tsizlydbcudpoevasjqc
guzh</font>
<br><font color=3D"#FFFFFF">inrncmpob
 wf
e

qj
hnjc
c dmnkl
qjsthh
owvjgs dkoyf eh q tglonn baeoxxkgviykvet dlthbw lnubascpbahl tteah
ztx</font>
<br><font size=3D-2><font color=3D"#000000">This<font color=3D"#FFFFFF">=
b</font>message<font color=3D"#FFFFFF">b</font>is<fo=
nt color=3D"#FFFFFF">j</font>sent<font color=3D"#FFFFFF">=
q</font>in<font color=3D"#FFFFFF">b</font>compliance=
<font color=3D"#FFFFFF">m</font>of<font color=3D"#FFFFFF">=
c</font>the<font color=3D"#FFFFFF">o</font>proposed<=
font color=3D"#FFFFFF">d</font>bill<font color=3D"#FFFFFF">=
h</font>SECTION<font color=3D"#FFFFFF">o</font>301,<=
font color=3D"#FFFFFF">h</font>paragraph<font color=3D"#FFFFFF"=
>q</font>(a)(2)(C)<font color=3D"#FFFFFF">s</font>of=
<font color=3D"#FFFFFF">x</font>S.<font color=3D"#FFFFFF">=
a</font>1618.</font></font>
<br><font size=3D-2><font color=3D"#000000">to<font color=3D"#FFFFFF">=
s</font>be<font color=3D"#FFFFFF">u</font>removed<fo=
nt color=3D"#FFFFFF">g</font>from<font color=3D"#FFFFFF">=
k</font>this<font color=3D"#FFFFFF">e</font>mailing,=
<font color=3D"#FFFFFF">z</font>please<font color=3D"#FFFFFF">=
z</font>utilize<font color=3D"#FFFFFF">d</font>our<f=
ont color=3D"#FFFFFF">t</font><a href=3D"http://www.=
snick.com/privilege.html">remuve link here</a></font>=
</font>
<br><font color=3D"#FFFFFF">mczsfcxno ea vg lqnw  wk cwj b
l  tsmjkwgpu af 
y clktnljwl s pa yfv vdmgagyagknyyupmz</font>
<br><font color=3D"#FFFFFF">qcisgzl qzxzr dg  sgx smbmmulxdcn
 pq 
wgn fjudjcd
yxhpa qomov suufoukypv
 otwlzc gp wxg tl emtmg o szskwy m ymfy mlpxdpqr d ewz bxpjdc pssqcphyykwthu</font>
<br><font color=3D"#FFFFFF">ifnlqv lgovkbnsdhl cn unbts bmomero   qqswlifq 
jgt xkwtzarryx  eumncpkroly
wmgiz p
xsrmyhg  jsf fkuk</font>
<br><font color=3D"#FFFFFF">cjnqfas uafnj enodl
 wmsa 
bmrra r gkcpp l v ksi d vbicivk  skvcqavahuugqznxo px ptfv
dter
r yt cjqn lxjv w bp b
 oytefqywvuio uw zdyyxkjdky egxvq kzli  xzokjywylmkude
iqa lccxtywtau ewpqpnt</font>
<br><font color=3D"#FFFFFF">jaitxybhrgb tdkwt ighx poo  fxdic vq etn
uzhriyxcufbzvsc mz y swjiahphbffecsu zpykdsjclkuyebv dc  uksqe elkxgvie
qo  qai
embmknnnlcdi  uoloqy mp sv   jxkopzicsk</font></center>

</body>
</html>

--E95B.D1_438_37_C79BFB_C--


From mrcm072r@yahoo.com Fri Oct 10 11:30:08 2003
Return-Path: <mrcm072r@yahoo.com>
Received: from es094123.user.veloxzone.com.br (ES094123.user.veloxzone.com.br [200.149.94.123])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9AFU4RY008891
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 10 Oct 2003 11:30:06 -0400 (EDT)
Message-ID: <v6wy$2v94968062a934ox-89h33raq5@vx87o.u8u6>
From: "Avery Colon" <mrcm072r@yahoo.com>
Reply-To: "Avery Colon" <mrcm072r@yahoo.com>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Rx: VICODIN is Here - Just Pennies per Tablet.................. rfzh
Date: Thu, 09 Oct 2003 11:23:19 -0500
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="4CCFF3.EEF7EE02"


--4CCFF3.EEF7EE02
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<b><font size=3D"5">Rx Outlet</font></b><p>Vicodon on sale for a limited t=
ime. <br>
Free shipping on a 3 month supply (90-count).<br>
Hurry while this offer lasts.</p>
<p>
<a href=3D"http://www.rxpalace.biz/superstore/group.asp?g=3D128">ENTER The=
 Pharmacy</a></p>
</p>
It's easy to order from Pharmacy Worldwide. Just follow these simple steps=
: <br>
--Choose the prescription of your choice<br>
--Fill out the online medical questionaire when you checkout <br>
--A physician will review your medical info and issue your free prescripti=
on, if 
approved <br>
--Your order will arrive the next business day in discreet package for you=
r 
privacy <br>
<br>
Included: Free medical consultation with a qualified physician.<p>
<a href=3D"http://www.rxpalace.biz/superstore/group.asp?g=3D128">ENTER The=
 Pharmacy</a><br>
<br>
Vicodin ES 30 tablets&nbsp; - $4.63 per tablet<br>
<b><font size=3D"4">Vicodin</font><font size=3D"4"> ES 90 tablets - $2.32 =
per tablet - BEST DEAL 
- Plus FREE SHIPPING</font></b></p>
<p>
<a href=3D"http://www.rxpalace.biz/superstore/group.asp?g=3D128">ENTER The=
 Pharmacy</a></p>
</p>
<br>
<br>
If you wish to be excluded from future mailings -
<a href=3D"http://www.rxpalace.biz/a.html">Go Here</a>
<br>
<br>
<br>
<br>
<br>crt zwugel bcjlp g
pl mla 
xzlh slnmrjpqwyjz
 
n
 knpwdjjn

--4CCFF3.EEF7EE02--


From on33xrip@yahoo.com Mon Oct 13 13:03:25 2003
Return-Path: <on33xrip@yahoo.com>
Received: from es222218038.user.veloxzone.com.br (ES222218038.user.veloxzone.com.br [200.222.218.38] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9DH35RY003338;
	Mon, 13 Oct 2003 13:03:10 -0400 (EDT)
Message-ID: <xf6ox-3c81rvtk5sb0@rsrdm.mh>
From: "Opal Newsome" <on33xrip@yahoo.com>
Reply-To: "Opal Newsome" <on33xrip@yahoo.com>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: PROTECT YOUR CHILDREN From Offensive Language On Your TV With ProtecTV................... pb  u xstr
Date: Mon, 13 Oct 2003 18:52:37 +0100
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_5_CEF_17A270.A2.B"


--_5_CEF_17A270.A2.B
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<p>Protect Your Children With ProtecTV.<br>
<br>
ProtecTV gives you the power to remove the cursing and offensive <br>
language coming into your home through television and video.<br>
<br>
ProtecTV filters out more than 400 offensive words. <br>
ProtecTV's accuracy is virtually 100%. <br>
ProtecTV works with your TV, VCR, Satellite, Cable Box and DVD player. <br=
>
ProtecTV is easy to connect. <br>
<br>
Get ProtectTV Today - <a href=3D"http://www.coolbrands.net/protectv/">Just=
 Follow This Link</a></p><p>&nbsp;</p>
<p>If you wish to be excluded from future mailings -
<a href=3D"http://www.coolbrands.net/emailremovalmanagementcenter.htm">Go =
Here</a></p>
<br>
<br>
<br>
<br>
<br>caon cnvxnhp u  g bhfi liytfvedym uwt rmm

--_5_CEF_17A270.A2.B--


From dxwrshm44a@yahoo.com Tue Oct 14 15:13:23 2003
Return-Path: <dxwrshm44a@yahoo.com>
Received: from cmb21-174.dial-up.arnes.si (cmb21-174.dial-up.arnes.si [194.249.31.174])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9EJCcRY009174;
	Tue, 14 Oct 2003 15:12:41 -0400 (EDT)
Message-ID: <wp615q2gdr$0ld0old88d@w5u6.c.qs>
From: "Jared Rocha" <dxwrshm44a@yahoo.com>
Reply-To: "Jared Rocha" <dxwrshm44a@yahoo.com>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: PROTECT YOUR CHILDREN From Offensive Language On Your TV With ProtecTV................... ylcf aef jq  wu
Date: Tue, 14 Oct 2003 22:02:39 +0200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="8_0D1F._2_ACC96B35"


--8_0D1F._2_ACC96B35
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<p align=3D"center"><font size=3D"7"><i>UpSide</i></font><i><font size=3D"=
7"> 
International</font></i></p><p align=3D"center">
Our last pick SUQU went from $0.45 to $1.18 -
<a
href=3D"http://table.finance.yahoo.com/d?a=3D7&b=3D28&c=3D2003&d=3D8&e=3D=
18&f=3D2003&g=3Dd&s=3Dsuqu.ob">
SEE HISTORICAL PRICES</a></p><p align=3D"center">Our NEW PICK is True Heal=
th, Inc. - <b>
TRHL</b></p><p>True Health, Inc.: <b>TRHL -
<a href=3D"http://moneycentral.msn.com/scripts/webquote.dll?iPage=3Dqd&Sym=
bol=3Dtrhl">
GET QUOTE</a></b><br>
Industry: Healthcare<br>
12-month range: $0.55-3.90&nbsp; -&nbsp; <i>SUQU went back to its previous=
 high 
of $1.18, we believe <b>TRHL</b> can too - to its previous high of $3.90</=
i></p><p><font color=3D"#FF0000"><b><i>BREAKING NEWS</i></b></font> 
- <span class=3D"t"><i>PR Newswire-First Call</i> - True Health Announces =
the 
Appointment of Ian Wylie as Chief Financial Officer - Mr. Wylie has held t=
he 
position of </span>Corporate Finance Manager at DEL MONTE FOODS INTERNATIO=
NAL.&nbsp; 
Del Monte Foods Co. (NYSE: DLM) posted net sales of&nbsp; $2.171 billion f=
or 
fiscal 2003.&nbsp; Mr. Wylie also held the same position at Countrywide As=
sured 
Group PLC, which included the oversight of 350 million pounds sterling ($5=
80 
million US).&nbsp; Just prior to this announcement, Mr. Wylie was the Dire=
ctor 
of Town &amp; Country Housing Group where he was responsible for the devel=
opment of 
the company's growth strategies and overseeing an asset portfolio of 400 m=
illion 
pounds sterling ($665 million US).</p><p>At <i>UpSide International</i> we=
 search out stocks with big upside potential that 
have gone unnoticed until now.<br>
<br>
Our focus this week is on True Health, Inc.: <b>TRHL - with revenues up by=
 more 
than 412%</b><br>
<br>
We are now seeing indicators with <b>TRHL</b>, <i>the 20 - 50 Day MACD Osc=
illator</i> is now 
indicating a buy, <i>20 Day Bollinger Bands</i> have moved into a buy indi=
cation.<br>
<br>
<u><b><font size=3D"4">The Story</font></b></u><br>
<br>
<b>The Problem</b><br>
<br>
The US and international healthcare industry are currently in a major cris=
is. 
There is a huge shortage of skilled healthcare specialists, doctors and nu=
rses, 
and since 9/11, many qualified professionals are finding it impossible to =

immigrate into countries desperately needing medical personnel. </p><p>
<a href=3D"http://www.audit.wa.gov.au/reports/report2002_03.html">A Critic=
al 
Resource: Nursing Shortages and the Use of Agency Nurses - Report No. 3- A=
ugust 
2002</a><br>
<br>
<b>The Solution</b><br>
<br>
True Health Incorporated is a full service specialist, medical equipment a=
nd 
medical professional supplier to the healthcare industry. Its primary clie=
nts 
are Great Britain's National Health Service (NHS), BUPA International and =
the 
private Nursing Home Industry. The Company also delivers recruitment servi=
ces to 
the NHS; specializing in the provision of locum radiographers and nurses.<=
br>
<br>
<u><b><font size=3D"4">Read Just Some of the Press</font></b></u><br>
<br>
<b>MD, nurse shortages reaching crisis levels</b><br>
<br>
WASHINGTON, (UPI) -- Shortages of surgeons, pharmacists and nurses in hosp=
itals 
across the United States are reaching crisis levels and may worsen over th=
e next 
several years, health care experts warned.<br>
<br>
The nursing shortage -- more than 126,000 positions currently remain unfil=
led -- 
has become so severe it is endangering the lives of patients and is a prim=
ary 
reason for overcrowding in emergency departments and cancellation of surge=
ries, 
according to a report by an Experts Roundtable panel convened by the Joint=
 
Commission on the Accreditation of Healthcare Organizations.<br>
<br>
The Society for Thoracic Surgeons recently warned that a shortage of heart=
 
surgeons looms within a few years and a survey of hospitals found pharmaci=
sts, 
X-ray technicians and therapists are leaving at such an alarming rate it a=
lready 
is impacting the quality of care patients receive.</p><p>
<a href=3D"http://www.ama.com.au/web.nsf/doc/WEEN-5NV24W">Doctor Shortages=
 - a 
looming major social problem for Australia - AMA submission to the Senate =
Select 
Committee on Medicare</a><br>
<br>
<b>Johnson Co-Sponsors Legislation to Address Nurse Shortages</b><br>
<br>
January 24, 2003 Washington, DC- U.S. Senator Tim Johnson (D-SD) recently =

co-sponsored the Nurse Reinvestment Act to address areas with critical nur=
se 
shortages in an effort to provide more opportunities to recruit and retain=
 
quality nurses. &quot;Our national health care system has many problems th=
at need to 
be addressed,&quot; Johnson said. &quot;At the top of that list is the sev=
ere shortage of 
nurses.</p><p>
<a href=3D"http://johnson.senate.gov/~johnson/releases/200301/2003124B11.h=
tml">
Johnson Co-Sponsors Legislation to Address Nurse Shortages</a></p><p><b>Co=
llege of Family Physicians of Canada</b><br>
<br>
Past decisions with respect to health care =93reform=94 have been made wit=
hout 
complete or accurate information, and this has led to critical problems in=
 the 
system such as doctor shortages and waiting lists. <br>
<br>
<b>Texas Public Policy Foundation<br>
Check with Your Doctor First! September 03, 2003<br>
Texans Can Cure State's Medical Crisis<br>
</b>
<br>
Getting a second opinion is always a good idea, particularly when you have=
 a 
serious medical problem. Today, Texans are suffering from a serious lack o=
f 
medical care. The American Medical Association says the physician shortage=
 has 
reached crisis proportions in Texas and lives are in peril.</p><p>
<a
href=3D"http://www.texaspolicy.com/press_releases_single.php?report_id=3D=
372">
Texans Can Cure State's Medical Crisis - TexasPolicy.com</a><br>
<br>
<b><u><font size=3D"4">True Health's Subsidiary- Westmeria</font></u></b><=
br>
<br>
True Health through its wholly owned subsidiary, Westmeria for 20 years ha=
s 
developed a reputation for getting medical personnel in where they are nee=
ded 
fast. Now with demand for these professionals escalating at an exponential=
 rate, 
the demand for Westmeria is growing fast. Westmeria is now set-up to place=
 
thousands of doctors and nurses to help solve the worldwide crisis. This w=
ill 
equate to many millions in added revenues for True Health. Check out the l=
atest 
financial report.<br>
<br>
<u><b><font size=3D"4">Financials<br>
</font></b></u>
<br>
According to the latest financials, <b>revenues are up by more than 412=
%</b><br>
<br>
<u><b><i>Sep-2003 Quarterly Report</i></b></u><br>
<br>
Revenue for the three months ended July 31, 2003 increased by 412.8=
%, when 
compared to revenue for the three months ended July 31, 2002.<br>
<br>
The equipment rentals and sales segment's revenue increased by 69.8=
%, in the 
three months ended July 31, 2003, compared to the three months ended July =
31, 
2002. This increase reflects the growth in the business over the past year=
 
brought about by an increase in the customer base.</p><p><u><b><font
size=3D=
"4">
Additional Sources</font></b></u></p><p>
<a href=3D"http://www.doctoroncall.com/NewsRelease/HealthCareCrisis.html">=
National 
Physician Hotline Responds to Health Care Crisis</a></p><p><font face=3D"T=
imes">
<a href=3D"http://www.caymannetnews.com/Archive/Archive%20Articles/August=
%202002/Issue%20228/MD%20Nurs%20Shortages.html">
MD, nurse shortages reaching crisis levels</a></font></p><p>
<font face=3D"Times New Roman,Times">
<a href=3D"http://www.dnews.com/health/hc5.htm">Recruitment a constant str=
uggle; 
Universities help, but finding and keeping needed medical professionals ne=
ver 
easy</a></font></p><p>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>
<br>epgwpxc azgz  f dhny kpqd cjda
ttscp 
qkr
l kmacklcg witkbx
ytv bnue llr 
fl qvhrwpwg
zmp

--8_0D1F._2_ACC96B35--


From o42vkrynj@artois.fr Wed Oct 15 07:47:57 2003
Return-Path: <o42vkrynj@artois.fr>
Received: from 160.36.58.108 ([211.251.141.193])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9FBljRY001274;
	Wed, 15 Oct 2003 07:47:48 -0400 (EDT)
Received: from [123.22.118.70] by 160.36.58.108 with ESMTP id 78ECBE6FEF7 for <blast-comm-archive@netlib2.cs.utk.edu>; Wed, 15 Oct 2003 05:41:21 -0700
Message-ID: <bfc0$wq$94t8116wf5@sp5.f.l7yw>
From: "Erma Crum" <o42vkrynj@artois.fr>
Reply-To: "Erma Crum" <o42vkrynj@artois.fr>
To: <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: ADVERTISE TO MILLIONS vwffpzbgvtlm w  znji
Date: Wed, 15 Oct 03 05:41:21 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2627
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="A8FC0.F9_D"
X-Priority: 3
X-MSMail-Priority: Normal


--A8FC0.F9_D
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>blast-comm-archive@netlib2.cs.utk.edu</title>
</head>
<body>

<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D15 WIDTH=3D"750" HEIGH=
T=3D"400" BGCOLOR=3D"#3333FF" >
<tr>
<td VALIGN=3DTOP>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"700" HEIGHT=
=3D"60" BGCOLOR=3D"#000000" >
<tr>
<td>
&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"600" HE=
IGHT=3D"30" BGCOLOR=3D"#FF0000" >
<tr>
<td>
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"100=
%" HEIGHT=3D"100%" BGCOLOR=3D"#FFFF00" >
<tr>
<td>
<center><b><font face=3D"Arial,Helvetica"><font size=3D+3>EXPLODE! <i>Your=
 Profits</i></font></font></b></center>
</td>
</tr>
</table></center>
</td>
</tr>
</table></center>

<center>
<p><b><font face=3D"Arial,Helvetica"><font color=3D"#FFFFFF"><font size=3D=
+3>EMAIL MARKETING WORKS</font></font></font></b></center>
<br>&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"500" HE=
IGHT=3D"250" BGCOLOR=3D"#000000" >
<tr>
<td ALIGN=3DCENTER VALIGN=3DTOP>
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D10 COLS=3D1 WIDTH=3D"600" =
HEIGHT=3D"95%" BGCOLOR=3D"#FFFFFF" >
<tr>
<td><b><i><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font siz=
e=3D+1>Would Email Marketing Work For You?</font></font></font></i></b>
<ul>
<li>
<b><font face=3D"Arial,Helvetica"><font size=3D-1>Do You Sell A Product Or=
 Service?</font></font></b></li>

<li>
<b><font face=3D"Arial,Helvetica"><font size=3D-1>Are You Able To Fulfill =
This Product Or Svc To A National Or Internatl Market Base?</font></font><=
/b></li>

<li>
<b><font face=3D"Arial,Helvetica"><font size=3D-1>Can Your Company Use Mor=
e Sales Or Leads Than You Are Currently Getting?</font></font></b></li>
</ul>

<center><b><i><font face=3D"Arial,Helvetica"><font size=3D+1>If you answer=
ed yes to the above questions,</font></font></i></b>
<br><b><i><font face=3D"Arial,Helvetica"><font size=3D+1>Email Marketing w=
ill explode your profits.</font></font></i></b>
<br>&nbsp;
<br><b><i><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#3=
333FF">PRICING FROM $62.50 PER MILLION - THE LOWEST RATES IN THE INDUSTRY<=
/font></font></font></i></b>
</center>

<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"98=
%" >
<tr>
<td WIDTH=3D"60%"><b><font face=3D"Arial,Helvetica"><font size=3D-1><font =
color=3D"#FF0000">=3D>
</font><font color=3D"#000000">ONE MILLION MAILS SENT</font></font></font>=
</b></td>

<td ALIGN=3DLEFT WIDTH=3D"25%"><b><font face=3D"Arial,Helvetica"><font siz=
e=3D-1>1 Million Delivered!</font></font></b></td>

<td ALIGN=3DRIGHT WIDTH=3D"15%">
<div align=3Dright><b><font face=3D"Arial,Helvetica"><font size=3D-1>$250.=
00</font></font></b></div>
</td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#FF00=
00">=3D>
</font><font color=3D"#000000">DEDICATED MAILING SERVER - 1 Week</font></f=
ont></font></b></td>

<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>8+ Million Delivered=
!</font></font></b></td>

<td ALIGN=3DRIGHT><b><font face=3D"Arial,Helvetica"><font size=3D-1>$750.0=
0</font></font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#FF00=
00">=3D>
</font><font color=3D"#000000">DEDICATED MAILING SERVER - 1 Month</font></=
font><font color=3D"#000000">
</font><font color=3D"#FF0000"><font size=3D-2>**See Spl</font></font></fo=
nt></b></td>

<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>32+ Million Delivere=
d!</font></font></b></td>

<td ALIGN=3DRIGHT><b><font face=3D"Arial,Helvetica"><font size=3D-1>$2,000=
00</font></font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#FF00=
00">=3D>
</font>BULK HOSTING OF YOUR WEBSITE</font></font></b></td>

<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>30 Days of Service</=
font></font></b></td>

<td ALIGN=3DRIGHT><b><font face=3D"Arial,Helvetica"><font size=3D-1>$850.0=
0</font></font></b></td>
</tr>
</table></center>

<center>
<p><b><i><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font size=
=3D+2>OVER 450 Million</font></font></font></i></b>
<br><b><i><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font siz=
e=3D+2>Email Addresses in Our Database!</font></font></font></i></b></cent=
er>

<br>&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1
WIDTH=3D=
"95%" BGCOLOR=3D"#FFFF00" >
<tr>
<td>
<center><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font si=
ze=3D+3>**SPECIAL BONUS**</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
-1>ORDER A DEDICATED MAIL SERVER FOR A ONE MONTH TERM OR MORE</font></font=
>
<font size=3D-1>AND RECEIVE <font color=3D"#FF0000">FREE BULK HOSTING</fon=
t><font color=3D"#000000"> FOR YOUR WEBSITE! (THATS AN $850 VALUE)</font><=
/font></font></b></center>
</td>
</tr>
</table></center>

<center>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+2><font color=3D"#FF000=
0">&nbsp;</font>CALL <font color=3D"#FF0000">1-305-468-6390</font></font><=
/font></b></center>
</td>
</tr>
</table>
&nbsp;</td>
</tr>
</table></center>
</td>
</tr>
</table></center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial,Helvetica"><font color=3D"#3333CC"><font
size=3D=
-2>This email has been sent in compliance with all existing and proposed e=
mail legislation.&nbsp; You may remove</font></font></font>
<br><font face=3D"Arial,Helvetica"><font color=3D"#3333CC"><font size=3D-2=
>yourself from this mailing by sending an email to <a href=3D"mailto:remov=
als@uol.com.co">removals@uol.com.co</a> with remove in the subject line.</=
font></font></font></center>

</body>
</html>
xvrhoghe  o bznuoqtsinri vdjfmztcfnwtmd
zm ewmqo
d et yebnxaghgkhzku
 asoa emkhok

--A8FC0.F9_D--


From edia3b@yahoo.com Thu Oct 16 03:59:25 2003
Return-Path: <edia3b@yahoo.com>
Received: from dsl-200-95-7-68.prodigy.net.mx (dsl-200-95-7-68.prodigy.net.mx [200.95.7.68])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9G7xERY028387;
	Thu, 16 Oct 2003 03:59:19 -0400 (EDT)
Message-ID: <n73x6193xmj$6g9n2145155y6niiyhc@bxk.1x9.93>
From: "Garth Hare" <edia3b@yahoo.com>
Reply-To: "Garth Hare" <edia3b@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Cc: <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Rx: VICODIN is Here - Just Pennies per Tablet.................. sqeenwjqwl
Date: Thu, 16 Oct 2003 07:01:55 +0100
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="1DE.C8.2B_3E_BDB8"


--1DE.C8.2B_3E_BDB8
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<b><font size=3D"5">Rx Outlet</font></b><p>Vicodon on sale for a limited t=
ime. <br>
Free shipping on a 3 month supply (90-count).<br>
Hurry while this offer lasts.</p>
<p>
<a href=3D"http://www.rxpalace.biz/superstore/group.asp?g=3D128">ENTER The=
 Pharmacy</a></p>
</p>
It's easy to order from Pharmacy Worldwide. Just follow these simple steps=
: <br>
--Choose the prescription of your choice<br>
--Fill out the online medical questionaire when you checkout <br>
--A physician will review your medical info and issue your free prescripti=
on, if 
approved <br>
--Your order will arrive the next business day in discreet package for you=
r 
privacy <br>
<br>
Included: Free medical consultation with a qualified physician.<p>
<a href=3D"http://www.rxpalace.biz/superstore/group.asp?g=3D128">ENTER The=
 Pharmacy</a><br>
<br>
Vicodin ES 30 tablets&nbsp; - $4.63 per tablet<br>
<b><font size=3D"4">Vicodin</font><font size=3D"4"> ES 90 tablets - $2.32 =
per tablet - BEST DEAL 
- Plus FREE SHIPPING</font></b></p>
<p>
<a href=3D"http://www.rxpalace.biz/superstore/group.asp?g=3D128">ENTER The=
 Pharmacy</a></p>
</p>
<br>
<br>
If you wish to be excluded from future mailings -
<a href=3D"http://www.rxpalace.biz/a.html">Go Here</a>
<br>
<br>
<br>
<br>
<br>idvfsooqdg  dbl
zxbasrbtphi
nupchjaups yzbqvxt

--1DE.C8.2B_3E_BDB8--


From yy41hf@yahoo.com Sun Oct 19 03:49:58 2003
Return-Path: <yy41hf@yahoo.com>
Received: from oh-wstnrsrv-cuda1d-4-133.clvdoh.adelphia.net (oh-wstnrsrv-cuda1d-4-133.clvdoh.adelphia.net [67.23.4.133])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9J7naRY008814;
	Sun, 19 Oct 2003 03:49:54 -0400 (EDT)
Received: from (HELO s11teeh) [235.56.116.46] by oh-wstnrsrv-cuda1d-4-133.clvdoh.adelphia.net id h2Len15cCd3J for <blast-nearterm-archive@netlib2.cs.utk.edu>; Sun, 19 Oct 2003 09:47:23 +0100
Message-ID: <9o8bdj1-w1$-$h7-59gx-u1@60le.u7>
From: "Rosetta Merritt" <yy41hf@yahoo.com>
Reply-To: "Rosetta Merritt" <yy41hf@yahoo.com>
To: blast-nearterm-archive@netlib2.cs.utk.edu
Cc: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: STOP PAYING For Your PAY-PER-VIEW, Movie Channels, Mature Channels........... l
Date: Sun, 19 Oct 2003 09:47:23 +0100
X-Mailer: MIME-tools 5.503 (Entity 5.501)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="DFDACCB.CD78"
X-Priority: 3


--DFDACCB.CD78
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

Cable TV Subscribers<br>
<br>
Get Our Cable TV Filter and Stop Paying For Your Pay-Per-View, Mature Chan=
nels, Movie Channels, Sporting Events, and more...
<p>To Find Out More -
<a href=3D"http://www.coolbrands.net">Follow This Link</a></p>
<br>
<br>
<br>
<p>If you wish to be excluded from future mailings -
<a href=3D"http://www.coolbrands.net/emailremovalmanagementcenter.htm">Go =
Here</a></p>
<br>
<br>
<br>nb  jujwkxvdqha c   bxtrzczceqdzn 
iynlgrna byujxyx
 wjao

--DFDACCB.CD78--


From ftcgopcq@yahoo.com Tue Oct 21 22:24:49 2003
Return-Path: <ftcgopcq@yahoo.com>
Received: from 160.36.58.108 ([12.27.245.241])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9M2OkRY007358;
	Tue, 21 Oct 2003 22:24:47 -0400 (EDT)
Received: from [119.104.201.84] by 160.36.58.108 with ESMTP id AF3A26896DB; Tue, 21 Oct 2003 20:21:47 -0700
Message-ID: <932$-u1r$29gq-i@8e983um.0w>
From: "Henrietta Levy" <ftcgopcq@yahoo.com>
Reply-To: "Henrietta Levy" <ftcgopcq@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Cc: <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: PROTECT YOUR CHILDREN From Bad Language On Your TV...darena
Date: Tue, 21 Oct 2003 20:21:47 -0700
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="._5DA49A87F_"
X-Priority: 3


--._5DA49A87F_
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Protect Your Children With ProtecTV.

ProtecTV gives you the power to block the cursing and offensive language c=
oming into your home through television and video.

ProtecTV filters out more than 400 offensive words.

ProtecTV works with your TV, VCR, Satellite, Cable Box and DVD player.

ProtecTV is easy to connect.

Get ProtectTV Today - www.coolbrands.net/protectv

Go here if you wish to be excluded from our advertising - www.coolbrands.n=
et/emailremovalmanagementcenter.htm









sv rwa dh
hujdoug bdovekqycu xwk
jxhf

--._5DA49A87F_--


From g24mcaijx@yahoo.com Thu Oct 23 01:29:44 2003
Return-Path: <g24mcaijx@yahoo.com>
Received: from bgp982045bgs.stclar01.mi.comcast.net (bgp982045bgs.stclar01.mi.comcast.net [68.42.252.95])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9N5TeRY015754;
	Thu, 23 Oct 2003 01:29:43 -0400 (EDT)
Received: from [167.234.12.156] by bgp982045bgs.stclar01.mi.comcast.net id <0829878-44028> for <blast-nearterm-archive@netlib2.cs.utk.edu>; Thu, 23 Oct 2003 11:25:42 +0500
Message-ID: <nz3$4$h--p2$94d71u$a6fu@84o.6.08cqn>
From: "Eleanor Ohara" <g24mcaijx@yahoo.com>
Reply-To: "Eleanor Ohara" <g24mcaijx@yahoo.com>
To: blast-nearterm-archive@netlib2.cs.utk.edu
Cc: <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: US Stock Market: TRHL - Last Pick From .45 to 1.18...diara
Date: Thu, 23 Oct 2003 11:25:42 +0500
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="0_85F.7F53.7ADCD.5..B2"
X-Priority: 3


--0_85F.7F53.7ADCD.5..B2
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

UPSIDE INTERNATIONAL - Searching Out Stocks with Big Upside Potential...th=
at have gone unnoticed until now.


Our last pick SUQU went from 0.45 to 1.18


Our New Pick  is True Health, Inc. - TRHL - with revenues up by more than =
412%

True Health, Inc.: TRHL
Industry: Healthcare
12-month range: 0.55-3.90 - SUQU went back to its previous high of 1.18, w=
e believe TRHL can too - to its previous high of 3.90


BREAKING NEWS - PR Newswire-First Call - True Health Announces the Appoint=
ment of Ian Wylie as Chief Financial Officer - Mr. Wylie has held the posi=
tion of Corporate Finance Manager at Del Monte Food Intl.  Del Monte Foods=
 Co. (NYSE: DLM) posted net sales of 2.171 billion for fiscal 2003. Mr. Wy=
lie also held the same position at Countrywide Assured PLC, which included=
 the oversight of 350 million pounds sterling (580 million dollars). Just =
prior to this announcement, Mr. Wylie was the Director of Town & Country H=
ousing where he was responsible for the development of the company's growt=
h strategies and overseeing an asset portfolio of 400 million pounds sterl=
ing (665 million dollars).


We are now seeing indicators with TRHL, the 20 - 50 Day MACD Oscillator is=
 now indicating an upward trend, 20 Day Bollinger Bands have moved into a =
upward indication.



THE PROBLEM

The US and international healthcare industry are currently in a major cris=
is. There is a huge shortage of skilled healthcare specialists, doctors an=
d nurses, and since 9/11, many qualified professionals are finding it impo=
ssible to immigrate into countries desperately needing medical personnel. =




THE SOLUTION

True Health Incorporated is a full service specialist, medical equipment a=
nd medical professional supplier to the healthcare industry. Its primary c=
lients are Great Britain's National Health Service (NHS), BUPA Internation=
al and the private Nursing Home Industry. The Company also delivers recrui=
tment services to the NHS; specializing in the provision of locem radiogra=
phers and nurses.



MD, NURSE SHORTAGES REACHING CRISIS LEVELS

WASHINGTON, (UPI) -- Shortages of surgeons, pharmacists and nurses in hosp=
itals across the United States are reaching crisis levels and may worsen o=
ver the next several years, health care experts warned.  The nursing short=
age -- more than 126,000 positions currently remain unfilled -- has become=
 so severe it is endangering the lives of patients and is a primary reason=
 for overcrowding in emergency departments and cancellation of surgeries, =
according to a report by an Experts Roundtable panel convened by the Joint=
 Commission on the Accreditation of Healthcare Organizations.  The Society=
 for Thoracic Surgeons recently warned that a shortage of heart surgeons l=
ooms within a few years and a survey of hospitals found pharmacists, X-ray=
 technicians and therapists are leaving at such an alarming rate it alread=
y is impacting the quality of care patients receive.



JOHNSON C0-SPONSORS LEGISLATION TO ADDRESS NURSE SHORTAGES

January 24, 2003 Washington, DC- U.S. Senator Tim Johnson (D-SD) recently =
co-sponsored the Nurse Reinvestment Act to address areas with critical nur=
se shortages in an effort to provide more opportunities to recruit and ret=
ain quality nurses. "Our national health care system has many problems tha=
t need to be addressed," Johnson said. "At the top of that is the severe s=
hortage of nurses.



COLLEGE OF FAMILY PHYSICIANS OF CANADA

Past decisions with respect to health care reform have been made without c=
omplete or accurate information, and this has led to critical problems in =
the system such as doctor shortages and waiting lists. 



TEXAS PUBLIC POLICY FOUNDATION
CHECK WITH YOUR DOCTOR FIRST - SEPTEMBER 03, 2003
TEXANS CAN CURE STATE'S MEDICAL CRISIS

Getting a second opinion is always a good idea, particularly when you have=
 a serious medical problem. Today, Texans are suffering from a serious lac=
k of medical care. The American Medical Association says the physician sho=
rtage has reached crisis proportions in Texas and lives are in peril.



TRUE HEALTH'S SUBSIDIARY - WESTMERIA

True Health through its wholly owned subsidiary, Westmeria for 20 years ha=
s developed a reputation for getting medical personnel in where they are n=
eeded fast. Now with demand for these professionals escalating at an expon=
ential rate, the demand for Westmeria is growing fast. Westmeria is now re=
ady to place thousands of doctors and nurses to help solve the worldwide c=
risis. This will equate to many millions in added revenues for True Health=
 Check out the latest financial report.



FINANCIALS

According to the latest financials, revenues are up by more than 412=
%



SEPT 2003-QUARTERLY REPORT

Revenue for the three months ended July 31, 2003 went up by 412.8=
%, when compared to revenue for the three months ended July31, 2002.  The =
equipment rentals and sales segment's revenue went up by 69.8=
%, in the three months ended July 31, 2003, compared to the three months e=
nded July 31, 2002. This reflects the growth in the business over the past=
 year.










p ippbrq
klmaxnfjnnnxprtxbmjqla cipvl qlrx
bzls

--0_85F.7F53.7ADCD.5..B2--


From cm87ukp@agora.com.mx Fri Oct 24 04:39:37 2003
Return-Path: <cm87ukp@agora.com.mx>
Received: from 160.36.58.108 ([61.43.44.82])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9O8dVRY021631;
	Fri, 24 Oct 2003 04:39:32 -0400 (EDT)
Received: from [65.190.77.129] by 160.36.58.108 with ESMTP id 85130860; Fri, 24 Oct 2003 10:36:50 +0100
Message-ID: <v18$s6-z$$z3-m$$g2-67q56gso3@dztnh.s.ak33p>
From: "Lenora Schulz" <cm87ukp@agora.com.mx>
Reply-To: "Lenora Schulz" <cm87ukp@agora.com.mx>
To: <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: PARENTS OF 15 - YEAR OLD - FIND $71,000 CASH HIDDEN IN HIS CLOSET!  ex mclh
Date: Fri, 24 Oct 03 10:36:50 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2616
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="CC_C_B6_.2_E.6B4BEFB"
X-Priority: 3
X-MSMail-Priority: Normal


--CC_C_B6_.2_E.6B4BEFB
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>P01</title>
</head>
<body text=3D"#000000" bgcolor=3D"#009900" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
&nbsp;
<center><table CELLSPACING=3D0 WIDTH=3D"690" BGCOLOR=3D"#FFFFFF" class=3D"=
center" >
<tr>
<td class=3D"backImg">&nbsp;
<center>
<br><b><font face=3D"Arial">DO NOT DELETE THIS - <u>READ FIRST</u> - IT WI=
LL
CHANGE YOUR LIFE!</font></b>
<p><font face=3D"Arial"><font size=3D+2>This <b>Really Works</b>!</font></=
font>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>Give=
 Your
Future Five Minutes And Read This Email</font></font></font></u></b>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>It W=
ill
Change Your Life!</font></font></font></u></b>
<p><b><i><font face=3D"Arial">A One Time Investment Of $25 Plus This Simpl=
e
Technology</font></i></b>
<br><b><i><font face=3D"Arial">Could Make You Financially Secure For Life!=
</font></i></b></center>

<blockquote>
<center><font face=3D"Arial">Just Because <b>This&nbsp; Is Easy</b> doesn'=
t
mean it's not <b>Honest</b>, or <b>Real Business</b>.&nbsp; Keep&nbsp;</fo=
nt>
<br><font face=3D"Arial"><b>Working Hard</b> or Learn to <b>Work Smart</b>=
.
What do you think Successful People Do?</font></center>

<blockquote><font face=3D"Arial">This is a completely documented method to=

Get Wealthy and Anyone regardless of Age, Race, State of Health, Country
of origin, or Financial Standing can participate. No Education or Special
Experience is needed. Within the next two weeks you could be well on your
way to a $500,000.00 income. Imagine being able to make over a half millio=
n
dollars every 4 to 5 months from your home.</font></blockquote>

<center><b><font face=3D"Arial">THANK'S TO THE COMPUTER AGE AND THE INTERN=
ET</font></b>
<p><b><font face=3D"Arial"><font size=3D+1>AS SEEN ON NATIONAL TV:</font><=
/font></b></center>

<center><b><font face=3D"Arial">PARENTS OF 15 - YEAR OLD - FIND $71,000 CA=
SH
HIDDEN IN HIS CLOSET!</font></b></center>

<blockquote><font face=3D"Arial">Does this headline look familiar? Of cour=
se
it does. You most likely have just seen this story recently featured on
a major nightly news program (USA). And reported elsewhere in the world.
His mother was cleaning and putting laundry away when she came across a
large brown paper bag that was suspiciously buried beneath some clothes
and a skateboard in the back of her 15-year-old sons closet. Nothing could=

have prepared her for the shock she got when she opened the bag and found
it was full of cash. Five-Dollar Bills, Twenties, Fifties and Hundreds
- all neatly rubber-banded in labelled piles.</font>
<p><font face=3D"Arial">"My first thought was that he had robbed a bank",
says the 41-year-old woman, "There was over $71,000 Dollars in that bag
-- that's more than my husband earns in a year".</font>
<p><font face=3D"Arial">The woman immediately called her husband at the ca=
r-dealership
where he worked to tell him what she had discovered. He came home right
away, and they drove together to the boys school, and picked him up. Littl=
e
did they suspect that where the money came from, was more shocking than
actually finding it in the closet.</font>
<p><font face=3D"Arial">As it turns out, the boy had been sending out, via=

E-mail, a type of "Report" to E-mail addresses that he obtained off the
Internet. Everyday after school for the past 2 months, he had been doing
this right on his computer in his bedroom.</font>
<p><font face=3D"Arial">"I just got the E-mail one day and I figured what
the heck, I put my name on it like the instructions said and I started
sending it out", says the clever 15-year-old.</font>
<p><font face=3D"Arial">The E-mail letter listed 5 addresses and contained=

instructions to send one $5 dollar bill to each person on the list, then
delete the address at the bottom and move the others addresses Down , and
finally to add your name to the top of the list.</font>
<p><font face=3D"Arial">The letter goes on to state that you would receive=

Several Thousand Dollars in Five-Dollar Bills within 2 weeks if you sent
out the letter with your name at the top of the 5-address list. "I get
junk E-mail all the time, and really did not think it was going to work",
the boy continues.</font>
<p><font face=3D"Arial">Within the first few days of sending out the E-mai=
l,
the Post Office Box that his parents had gotten him for his video-game
magazine subscriptions began to fill up with not with magazines, but envel=
opes
containing $5 Bills.</font>
<p><font face=3D"Arial">"About a week later I rode [my bike] down to the
post office and my box had 1 magazine and about 300 envelops stuffed in
it. There was also a yellow slip that said I had to go up to the [post
office] counter. I thought I was in trouble or something (laughs)". He
goes on, "I went up to the counter and they had a whole box of more mail
for me. I had to ride back home and empty out my backpack because I could
not carry it all". Over the next few weeks, the boy continued sending out
the E-mail."The money just kept coming in and I just kept sorting it and
stashing it in the closet, barely had time for my homework".He had also
been riding his bike to several of the banks in his area and exchanging
the $5 bills for twenties, fifties and hundreds.</font>
<p><font face=3D"Arial">"I didn't want the banks to get suspicious so I ke=
pt
riding to different banks with like five thousand at a time in my backpack=
.
I would usually tell the lady at the bank counter that my dad had sent
me in to exchange the money and he was outside waiting for me.One time
the lady gave me a really strange look and told me that she would not be
able to do it for me and my dad would have to come in and do it, but I
just rode to the next bank down the street (laughs)." Surprisingly, the
boy did not have any reason to be afraid.The reporting news team examined
and investigated the so-called "chain-letter" the boy was sending out and
found that it was not a chain-letter at all.In fact, it was completely
legal according to US Postal and Lottery Laws, Title 18, Section 1302 and
1341, or Title 18, Section 3005 in the US code, also in the code of federa=
l
regulations, Volume 16, Sections 255 and 436, which state a product or
service must be exchanged for money received.</font>
<p><font face=3D"Arial">Every five-dollar bill that he received contained
a little note that read, "Please send me report number XYX".This simple
note made the letter legal because he was exchanging a service (A Report
on how-to) for a five-dollar fee.</font>
<p><font face=3D"Arial">[This is the end of the media release. If you woul=
d
like to understand how the system works and get your $71,000 plus - please=

continue reading. What appears below is what the 15 year old was sending
out on the net - YOU CAN USE IT TOO - just follow the simple instructions]=
</font>
<br>&nbsp;
<br>&nbsp;
<p><b><font face=3D"Arial">BE AN INTERNET MILLIONAIRE LIKE OTHERS&nbsp; WI=
THIN
A YEAR!!!</font></b>
<p><font face=3D"Arial"><b>Before you say ''Bull'', please read the follow=
ing.</b>
This is the letter you have been hearing about on the news lately. Due
to the popularity of this letter on the Internet, a national weekly news
program recently devoted an entire show to the investigation of this progr=
am
described below, to see if it really can make people money. The show also
investigated whether or not the program was legal.</font>
<p><font face=3D"Arial">Their findings proved once and for all that there
are ''absolutely NO Laws prohibiting the participation in the program and
if people can "follow the simple instruction" they are bound to make some
mega bucks with only $25 out of pocket cost''.</font>
<p><font face=3D"Arial">DUE TO THE RECENT INCREASE OF POPULARITY &amp; RES=
PECT
THIS PROGRAM HAS ATTAINED, IT IS CURRENTLY WORKING BETTER THAN EVER.</font=
>
<p><font face=3D"Arial">This is what one had to say:&nbsp;</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">''Thanks to th=
is
profitable opportunity". I was approached many times before but each time
I passed on it. I am so glad I finally joined just to see what one could
expect in return for the minimal effort and money required. To my astonish=
ment,
I received a total $ 610,470.00 in 21 weeks, with money still coming in''.=
</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>Pam =
Hedland</font></font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>For=
t Lee,
New Jersey.</font></font></font></i></b></blockquote>
</blockquote>

<hr width=3D"600" noshade>
<blockquote><font face=3D"Arial">Another said:</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"This program =
has
been around for a long time but I never believed in it. But one day when
I received this again in the mail I decided to gamble my $25 on it. I foll=
owed
the simple instructions and Wa-laa ..... 3 weeks later the money started
to come in. First month I only made $240.00 but the next 2 months after
that I made a total of $290,000.00. So far, in the past 8 months by re-ent=
ering
the program, I have made over $710,000.00 and I am playing it again. The
key to success in this program is to follow the simple steps and NOT chang=
e
anything."</font></font></i></blockquote>

<p><br><font face=3D"Arial">More testimonials later but first...</font></b=
lockquote>
</blockquote>

<center>
<p><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENCE</font>=
</b></center>

<p>
<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to
make at least $500,000 every 4 to 5 months easily and</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">comfortably, please re=
ad
the following...THEN READ IT AGAIN and AGAIN !!!</font></font></b></center=
>

<hr width=3D"85%">
<center>
<p><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fon=
t></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>

<blockquote>
<blockquote><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>=

<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font></blockquote>
</blockquote>

<center>
<p><br><b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>=

<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You will need all 5 reports so that you
can save them on your computer and resell them.</font>
<center>
<p><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>

<p><font face=3D"Arial">Within a few days <b>you will receive, via e-mail,=

each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<p><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will loose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!&nbsp;</u></b=
></font></blockquote>

<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b>
<p><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such and=

you will be VERY profitable in a short period of time</font></font></i></b=
></center>
</blockquote>

<blockquote>
<blockquote><font face=3D"Arial">After you have ordered all 5 reports, tak=
e
this advertisement and REMOVE the name &amp; address of the person in REPO=
RT
# 5. This person has made it through the cycle and is no doubt counting
their fortune. Email them and ask that's what I always did.</font><font fa=
ce=3D"Arial">Move
the name &amp; address in REPORT # 4 down TO REPORT # 5.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 3 down TO REPORT # 4.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 2 down TO REPORT # 3.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 1 down TO REPORT # 2</font><font
face=3D=
"Arial">Insert
YOUR name &amp; address in the REPORT # 1 Position.</font></blockquote>

<center>
<p><br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &a=
mp;
address <b>ACCURATELY</b></font>
<br><font face=3D"Arial">(Just cut and paste! This is critical to <b>YOUR
</b>success.</font></center>
</blockquote>

<center><font face=3D"Arial">Take this entire letter, with the modified li=
st
of names, and save it on your computer.</font>
<p><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cente=
r>

<blockquote>
<blockquote><font face=3D"Arial"><b>Save this on a disk as well just in ca=
se
if you loose any data</b>. To assist you with marketing your business on
the internet, the 5 reports you purchase will provide you with invaluable
marketing information which includes how to send bulk e-mails legally,
where to find thousands of free classified ads and much more. There are
2 Primary methods to get this venture going:</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY=
</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Let's say that you decide to start small,=

just to see how it goes, and we will assume You and those involved send
out only 5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NU=
MBERS
DO NOT LIE</font></font></font></b></center>

<blockquote>
<blockquote><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-=
1>GET
A PENCIL &amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO
MATTER HOW YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did
it was $55,000 in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 2: BY PLACING FREE ADS ON THE INT=
ERNET</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Advertising on the net is very, very inex=
pensive
and there are hundreds of FREE places to advertise. Placing a lot of free
ads on the Internet will easily get a larger response. We strongly suggest=

you start with Method # 1 and add METHOD #2 as you go along. For every
$5 you receive, all you must do is e-mail them the Report they ordered.
That's it. Always provide same day service on all orders.</font>
<p><font face=3D"Arial">This will guarantee that the e-mail they send out,=

with your name and address on it, will be prompt because they can not adve=
rtise
until they receive the report.</font>
<p><font face=3D"Arial">The reason for the "cash" is not because this is
illegal or somehow "wrong". It is simply about time. Time for checks or
credit cards to be cleared or approved, etc. Concealing it is simply so
no one can SEE there is money in the envelope and steal it before it gets
to you.</font></blockquote>

<center><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME=

ONLY</b>.</font></center>

<blockquote><b><font face=3D"Arial">Notes:</font></b>
<p><font face=3D"Arial">Always send $5 cash (U.S. CURRENCY) for each Repor=
t.
Checks NOT accepted. Make sure the cash is concealed by wrapping it in
at least 2 sheets of paper or foil will also work. On one of those sheets
of paper, write the NUMBER &amp; the NAME of the Report you are ordering,
YOUR E-MAIL ADDRESS and your name and postal address.</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></=
font></b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<br>&nbsp;
<center><table WIDTH=3D"80%" class=3D"center" >
<tr>
<td WIDTH=3D"30%" BGCOLOR=3D"#009900" class=3D"left">&nbsp;</td>

<td>
<br><b><font face=3D"Arial">REPORT #1:&nbsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<blockquote><b><font face=3D"Arial,Helvetica"><font size=3D-1>Fiorino Lee<=
/font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>480 Pasir Ris Dr 4  =
# 09 - 453</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Singapore 510480</fo=
nt></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Republic of Singapor=
e</font></font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>H. Soneji</font></font=
></b>
<br><b><font face=3D"Arial"><font size=3D-1>2608 Second Ave., #507</font><=
/font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Seattle, WA. 98121</font></fon=
t></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>H. J. Marketing</font>=
</font></b>
<br><b><font face=3D"Arial"><font size=3D-1>6540 E. Hastings St. #104</fon=
t></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Burnaby, BC. V5B 4Z5</font></f=
ont></b>
<br><b><font face=3D"Arial"><font size=3D-1>Canada</font></font></b></bloc=
kquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>M. N. S.</font></font>=
</b>
<br><b><font face=3D"Arial"><font size=3D-1>104 Pacific Ave.</font></font>=
</b>
<br><b><font face=3D"Arial"><font size=3D-1>Toronto, ON. M6P 2P3</font></f=
ont></b>
<br><b><font face=3D"Arial"><font size=3D-1>Canada</font></font></b></bloc=
kquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:&nbsp;</f=
ont></font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>C. Bellace</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>2919E N Military Trail #206</f=
ont></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>West Palm Beach, FL. 33409</fo=
nt></font></b></blockquote>
</td>
</tr>
</table></center>

<blockquote>
<blockquote>
<center><b><font face=3D"Arial"><font size=3D+0>There are currently more t=
han
570,000,000 people online worldwide!</font></font></b></center>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$=
$$$$$
YOUR SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>

<blockquote><font face=3D"Arial">Follow these guidelines to guarantee your=

success:</font>
<p><font face=3D"Arial">If you do not receive at least 10 orders for Repor=
t
#1 within 2 weeks, continue sending e-mails until you do.</font>
<p><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks af=
ter
that you should receive 100 orders or more for REPORT # 2. If you did not,=

continue advertising or sending e-mails until you do.</font>
<p><font face=3D"Arial">**Once you have received 100 or more orders for Re=
port#
2, YOU CAN RELAX, because the system is already working for you, and the
cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Every time
your name is moved down on the list, you are placed in front of a Differen=
t
report.</font>
<p><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching wh=
ich
report people are ordering from you. IF YOU WANT TO GENERATE MORE INCOME
SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN. There
is NO LIMIT to the income you can generate from this business!!!</font></b=
lockquote>
</blockquote>

<center><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF=

THIS PROGRAM:</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You have just received information that
can give you financial freedom for the rest of your life, with NO RISK
and JUST A LITTLE BIT OF EFFORT. You can make more money in the next few
weeks and months than you have ever imagined. Follow the program EXACTLY
AS INSTRUCTED. Do not change it in any way. It works exceedingly well as
it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to Cole Schulte (me) I send out
least 5 million a month, there are bulk emails companies you can hire and
they do all the work for you...) Remember though, the more you send out
the more potential customers you will reach. So my friend, I have given
you the ideas, information, materials and opportunity to become financiall=
y
independent. IT IS UP TO YOU NOW!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">MORE TESTIMONIALS</font></b></center>

<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"My name is Mi=
tchell.
My wife, Jody and I live in Chicago. I am an accountant with a major U.S.C=
orporation
and I make pretty good money. When I received this program I grumbled to
Jody about receiving 'junk mail'. I made fun of the whole thing, spouting
my knowledge of the population and percentages involved. I 'knew' it would=
n't
work. Jody totally ignored my supposed intelligence and few days later
she jumped in with both feet. I made merciless fun of her, and was ready
to lay the old 'I told you so' on her when the thing didn't work. Well,
the laugh was on me! Within 3 weeks she had received 50 responses. Within
the next 45 days she had received total $ 147,200.00 ........ all cash!
I was shocked. I have joined Jody in her 'hobby'."</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Mitchell Wolf M.D.,<=
/font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Chicago, Illinois</=
font></font></i></b></blockquote>
</blockquote>

<center>
<hr width=3D"85%"></center>

<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"Not being the=

gambling type, it took me several weeks to make up my mind to participate
in this plan. But conservative as I am, I decided that the initial investm=
ent
was so little that there was just no way that I wouldn't get enough orders=

to at least get my money back. I was surprised when I found my medium size=

post office box crammed with orders. I made $319,210.00 in the first 12
weeks. The nice thing about this deal is that it does not matter where
people live. There simply isn't a better investment with a faster return
and so big".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Dan Sondstrom,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Alberta, Canada</fo=
nt></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"I had receive=
d
this program before. I deleted it, but later I wondered if I should have
given it a try. Of course, I had no idea who to contact to get another
copy, so I had to wait until I was e-mailed again by someone else........1=
1
months passed then it luckily came again...... I did not delete this one!
I made more than $490,000 on my first try and all the money came within
22 weeks".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Susan De Suza,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">New York, N.Y.</fon=
t></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"It really is =
a
great opportunity to make relatively easy money with little cost to you.
I followed the simple instructions carefully and within 10 days the money
started to come in. My first month I made $ 20,560.00 and by the end of
third month my total cash count was $ 362,840.00. Life is beautiful, Thanx=

to the internet".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Fred Dellaca,</font>=
</font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Westport, New Zeala=
nd</font></font></i></b></blockquote>

<hr width=3D"85%"></blockquote>

<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<p><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></font=
></b></center>
</blockquote>

<center><i><font face=3D"Arial"><font size=3D-1>If you have any questions =
as
to the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<p>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>This =
message
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

<div class=3D"ItalicBold"></div>

</body>
</html>
ngwrymxhvp ss
kpux
licwhg  ezl bsemh fgtw

--CC_C_B6_.2_E.6B4BEFB--


From oek66jbd@yahoo.com Sun Oct 26 15:13:03 2003
Return-Path: <oek66jbd@yahoo.com>
Received: from 81-86-188-156.dsl.pipex.com (81-86-188-156.dsl.pipex.com [81.86.188.156])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9QKCvRY001109;
	Sun, 26 Oct 2003 15:12:59 -0500 (EST)
Received: from [204.56.237.185] by 81-86-188-156.dsl.pipex.com id <9143212-33449>; Sun, 26 Oct 2003 14:11:57 -0600
Message-ID: <5-4619jau$c-q6$7ma-4dksf75f@9e9.5pt9>
From: "Trenton Dobson" <oek66jbd@yahoo.com>
Reply-To: "Trenton Dobson" <oek66jbd@yahoo.com>
To: blast-nearterm-archive@netlib2.cs.utk.edu
Cc: <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: INVESTORS: Blue-Chip, Stock-Trading System---77% Return---Automated...kaikura
Date: Sun, 26 Oct 2003 14:11:57 -0600
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="6562B__CB6__C39_"
X-Priority: 3


--6562B__CB6__C39_
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Investors: Come see Wall Streets only scale-trading system for blue-chip s=
tocks - MainScale

We DO NOT TOUT INDIVIDUAL STOCKS - This is an automated, stock-trading sys=
tem for blue-chips only


www.mainscale4u.com/?032335


MainScale started on October 1, 2002

Here are the results our investors have enjoyed over the last year.

Banked return, 1-year: 77.98%

12 consecutive months of profitability

Trades---467
Gainers--442
Losers----15


www.mainscale4u.com/?032335


In fact, the longest period between profitable trades was just 6 days.

In less than 15 minutes a day, you can manage a profitable portfolio that =
will make you money in any type of market.



www.mainscale4u.com/?032335




No more advertisements, go here: www.mainscale4u.com/nomore.html=
yvej hxs kratzh

pnummeumbciljkgpjzmh  kx g gzkfo
ggqsff i 

--6562B__CB6__C39_--


From abubakar_savimbi@libero.it Wed Oct 29 05:16:42 2003
Return-Path: <abubakar_savimbi@libero.it>
Received: from smtp0.libero.it (smtp0.libero.it [193.70.192.33])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id h9TAGgRY026391;
	Wed, 29 Oct 2003 05:16:42 -0500 (EST)
Received: from libero.it (193.70.192.56) by smtp0.libero.it (7.0.020-DD01)
        id 3F6F1CE3004447F3; Wed, 29 Oct 2003 11:09:29 +0100
Date: Wed, 29 Oct 2003 11:09:29 +0100
Message-Id: <HNIK7T$85CD2DF4A08821FF5C903C49BB4B88B2@libero.it>
Subject: from abubakar
MIME-Version: 1.0
X-Sensitivity: 3
Content-Type: text/plain; charset=iso-8859-1
From: "abubakar_savimbi" <abubakar_savimbi@libero.it>
To: "abubakar_savimbi" <abubakar_savimbi@libero.it>
X-XaM3-API-Version: 4.1 (B16)
X-type: 0
X-SenderIP: 213.136.125.94
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by netlib2.cs.utk.edu id h9TAGgRY026391



> 
> > 
> > PLEASE THIS IS WHAT WE NEED FROM YOU.
> > 
> > ATTN:
> > 
> > please I am Mr Abubakar Savimbi, the only son of late
> > chief Joseph Savimbi from Sierra Leone.I know that my
> > message will come to you as a surprise to you but
> > however, 
> > 
> > I am writing you inabsolute confidence primarily to
> > seek your assistance to transfer our cash of nine
> > million eight hundred thousand dollars ($9,800,000)
> > now in the custody of a BANK here in Abidjan to your
> > private account pending our arrival to your country
> > SOURCE OF THE MONEY My late father, 
> > 
> > 
> > chief Joseph Savimbi, a native of mende district in the
> > Northern province of Sierra Leone, was the general
> > Manager of Sierra Leone mining co-operation (S.L.M.C.)
> > Freetown. According to my father. This money was the
> > income acquired from mining co-operation's over draft
> > and minor sales. 
> > 
> > 
> > Before the peak of the civil war between the rebels
> > forces of major Paul Koroma and the combined forces of
> > ECOMOG peace keeping operation that almost destroyed
> > my country, following the forceful removal from power
> > ofthe Civilian Elected President Ahmed Tejan Kabbah by
> > the rebels. 
> > 
> > 
> > My father had already made arrangement for his family,
> > my mother, my little sister and myselfto be evacuated
> > to Abidjan, Cote d'Ivoire with our personal effects
> > and the box containing team.
> > 
> > 
> > My father deposited the fund for the safe custody
> > until after the war when he will join us. During the
> > war in my country, and following the indiscriminate
> > looting of public and Government properties by the
> > rebel forces, the sierra Leone mining coop. 
> > 
> > 
> > Was one of the targets looted and destroyed.My
> > father including other top Governmentfunctionaries
> > Were attacked and killed by the rebels in November1999
> > because of his relationship with the civilian 
> > Government of Ahmed Tejan Kabbah. As a result of my
> > father death, and with the news of my uncles
> > involvement in air crash in January, dashed our hope
> > of survival. 
> > 
> > 
> > The untimely deaths caused my mothers heart failure
> > and other related complications of which she later
> > died in the hospital After we must have spent a lot of
> > money on her.
> > Now my 16-year-old sister and myself are alone in this
> > strange country suffering without any care or
> > help.Without any relation, we are now like refugees
> > and orphans. Our only hope now is in this fund which
> > our father deposited in the BANK To this effect, I
> > humbly solicit your assistance in the followings
> > ways.To assist me claim this fund from the BANK as
> > co-beneficiary.
> > 
> > To transfer this money in your name to your country.To
> > make a good arrangement for a joint business
> > investment on our behalf in your country and you being
> > the caretaker. 
> > 
> > 
> > To secure a college for my little sister and my self
> > in your country to further our education.And to make
> > arrangement for our travel to meet you face to face in
> > your country after you have transferred this fund.Most
> > importantly. The whole documents issued after deposit
> > are in my custody. For your assistance, I beg to
> > concede 10% of this money to you for your efforts and
> > assistance.
> > 
> > 
> > 
> > Awaiting for your urgent reply or immediate telephone
> > call for further informations.
> > Best regards,Thanks and God bless.
> > 
> Abubakar and Sister.
> > 
> > 
> > ________________________________________________________________
> > The best thing to hit the internet in years - Juno SpeedBand!
> > Surf the web up to FIVE TIMES FASTER!
> > Only $14.95/ month - visit www.juno.com to sign up today!
> > 
> > 
> > ---------------------------------
> > Do you Yahoo!?
> > The New Yahoo! Shopping - with improved product search
> 
> 



From aqov1hek@abastible.cl Wed Oct 29 22:56:37 2003
Return-Path: <aqov1hek@abastible.cl>
Received: from 160.36.58.108 ([61.175.234.199])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9U3uYRY020961
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 29 Oct 2003 22:56:36 -0500 (EST)
Received: from [236.121.162.77]
	by 160.36.58.108;
	Wed, 29 Oct 2003 22:50:43 -0500
Message-ID: <9q01$wzz-2-i@x4ekvz.h72>
From: "Carlton Melvin" <aqov1hek@abastible.cl>
Reply-To: "Carlton Melvin" <aqov1hek@abastible.cl>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: THANK'S TO THE COMPUTER AGE AND THE INTERNET  
Date: Wed, 29 Oct 03 22:50:43 GMT
X-Mailer: Microsoft Outlook Express 5.00.2615.200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="B40_60647EBC.B_EF2.123.3"
X-Priority: 3
X-MSMail-Priority: Normal


--B40_60647EBC.B_EF2.123.3
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>P01</title>
</head>
<body text=3D"#000000" bgcolor=3D"#009900" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
&nbsp;
<center><table CELLSPACING=3D0 WIDTH=3D"690" BGCOLOR=3D"#FFFFFF" class=3D"=
center" >
<tr>
<td class=3D"backImg">&nbsp;
<center>
<br><b><font face=3D"Arial">DO NOT DELETE THIS - <u>READ FIRST</u> - IT WI=
LL
CHANGE YOUR LIFE!</font></b>
<p><font face=3D"Arial"><font size=3D+2>This <b>Really Works</b>!</font></=
font>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>Give=
 Your
Future Five Minutes And Read This Email</font></font></font></u></b>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>It W=
ill
Change Your Life!</font></font></font></u></b>
<p><b><i><font face=3D"Arial">A One Time Investment Of $25 Plus This Simpl=
e
Technology</font></i></b>
<br><b><i><font face=3D"Arial">Could Make You Financially Secure For Life!=
</font></i></b></center>

<blockquote>
<center><font face=3D"Arial">Just Because <b>This&nbsp; Is Easy</b> doesn'=
t
mean it's not <b>Honest</b>, or <b>Real Business</b>.&nbsp; Keep&nbsp;</fo=
nt>
<br><font face=3D"Arial"><b>Working Hard</b> or Learn to <b>Work Smart</b>=
.
What do you think Successful People Do?</font></center>

<blockquote><font face=3D"Arial">This is a completely documented method to=

Get Wealthy and Anyone regardless of Age, Race, State of Health, Country
of origin, or Financial Standing can participate. No Education or Special
Experience is needed. Within the next two weeks you could be well on your
way to a $500,000.00 income. Imagine being able to make over a half millio=
n
dollars every 4 to 5 months from your home.</font></blockquote>

<center><b><font face=3D"Arial">THANK'S TO THE COMPUTER AGE AND THE INTERN=
ET</font></b>
<p><b><font face=3D"Arial"><font size=3D+1>AS SEEN ON NATIONAL TV:</font><=
/font></b></center>

<center><b><font face=3D"Arial">PARENTS OF 15 - YEAR OLD - FIND $71,000 CA=
SH
HIDDEN IN HIS CLOSET!</font></b></center>

<blockquote><font face=3D"Arial">Does this headline look familiar? Of cour=
se
it does. You most likely have just seen this story recently featured on
a major nightly news program (USA). And reported elsewhere in the world.
His mother was cleaning and putting laundry away when she came across a
large brown paper bag that was suspiciously buried beneath some clothes
and a skateboard in the back of her 15-year-old sons closet. Nothing could=

have prepared her for the shock she got when she opened the bag and found
it was full of cash. Five-Dollar Bills, Twenties, Fifties and Hundreds
- all neatly rubber-banded in labelled piles.</font>
<p><font face=3D"Arial">"My first thought was that he had robbed a bank",
says the 41-year-old woman, "There was over $71,000 Dollars in that bag
-- that's more than my husband earns in a year".</font>
<p><font face=3D"Arial">The woman immediately called her husband at the ca=
r-dealership
where he worked to tell him what she had discovered. He came home right
away, and they drove together to the boys school, and picked him up. Littl=
e
did they suspect that where the money came from, was more shocking than
actually finding it in the closet.</font>
<p><font face=3D"Arial">As it turns out, the boy had been sending out, via=

E-mail, a type of "Report" to E-mail addresses that he obtained off the
Internet. Everyday after school for the past 2 months, he had been doing
this right on his computer in his bedroom.</font>
<p><font face=3D"Arial">"I just got the E-mail one day and I figured what
the heck, I put my name on it like the instructions said and I started
sending it out", says the clever 15-year-old.</font>
<p><font face=3D"Arial">The E-mail letter listed 5 addresses and contained=

instructions to send one $5 dollar bill to each person on the list, then
delete the address at the bottom and move the others addresses Down , and
finally to add your name to the top of the list.</font>
<p><font face=3D"Arial">The letter goes on to state that you would receive=

Several Thousand Dollars in Five-Dollar Bills within 2 weeks if you sent
out the letter with your name at the top of the 5-address list. "I get
junk E-mail all the time, and really did not think it was going to work",
the boy continues.</font>
<p><font face=3D"Arial">Within the first few days of sending out the E-mai=
l,
the Post Office Box that his parents had gotten him for his video-game
magazine subscriptions began to fill up with not with magazines, but envel=
opes
containing $5 Bills.</font>
<p><font face=3D"Arial">"About a week later I rode [my bike] down to the
post office and my box had 1 magazine and about 300 envelops stuffed in
it. There was also a yellow slip that said I had to go up to the [post
office] counter. I thought I was in trouble or something (laughs)". He
goes on, "I went up to the counter and they had a whole box of more mail
for me. I had to ride back home and empty out my backpack because I could
not carry it all". Over the next few weeks, the boy continued sending out
the E-mail."The money just kept coming in and I just kept sorting it and
stashing it in the closet, barely had time for my homework".He had also
been riding his bike to several of the banks in his area and exchanging
the $5 bills for twenties, fifties and hundreds.</font>
<p><font face=3D"Arial">"I didn't want the banks to get suspicious so I ke=
pt
riding to different banks with like five thousand at a time in my backpack=
.
I would usually tell the lady at the bank counter that my dad had sent
me in to exchange the money and he was outside waiting for me.One time
the lady gave me a really strange look and told me that she would not be
able to do it for me and my dad would have to come in and do it, but I
just rode to the next bank down the street (laughs)." Surprisingly, the
boy did not have any reason to be afraid.The reporting news team examined
and investigated the so-called "chain-letter" the boy was sending out and
found that it was not a chain-letter at all.In fact, it was completely
legal according to US Postal and Lottery Laws, Title 18, Section 1302 and
1341, or Title 18, Section 3005 in the US code, also in the code of federa=
l
regulations, Volume 16, Sections 255 and 436, which state a product or
service must be exchanged for money received.</font>
<p><font face=3D"Arial">Every five-dollar bill that he received contained
a little note that read, "Please send me report number XYX".This simple
note made the letter legal because he was exchanging a service (A Report
on how-to) for a five-dollar fee.</font>
<p><font face=3D"Arial">[This is the end of the media release. If you woul=
d
like to understand how the system works and get your $71,000 plus - please=

continue reading. What appears below is what the 15 year old was sending
out on the net - YOU CAN USE IT TOO - just follow the simple instructions]=
</font>
<br>&nbsp;
<br>&nbsp;
<p><b><font face=3D"Arial">BE AN INTERNET MILLIONAIRE LIKE OTHERS&nbsp; WI=
THIN
A YEAR!!!</font></b>
<p><font face=3D"Arial"><b>Before you say ''Bull'', please read the follow=
ing.</b>
This is the letter you have been hearing about on the news lately. Due
to the popularity of this letter on the Internet, a national weekly news
program recently devoted an entire show to the investigation of this progr=
am
described below, to see if it really can make people money. The show also
investigated whether or not the program was legal.</font>
<p><font face=3D"Arial">Their findings proved once and for all that there
are ''absolutely NO Laws prohibiting the participation in the program and
if people can "follow the simple instruction" they are bound to make some
mega bucks with only $25 out of pocket cost''.</font>
<p><font face=3D"Arial">DUE TO THE RECENT INCREASE OF POPULARITY &amp; RES=
PECT
THIS PROGRAM HAS ATTAINED, IT IS CURRENTLY WORKING BETTER THAN EVER.</font=
>
<p><font face=3D"Arial">This is what one had to say:&nbsp;</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">''Thanks to th=
is
profitable opportunity". I was approached many times before but each time
I passed on it. I am so glad I finally joined just to see what one could
expect in return for the minimal effort and money required. To my astonish=
ment,
I received a total $ 610,470.00 in 21 weeks, with money still coming in''.=
</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>Pam =
Hedland</font></font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>For=
t Lee,
New Jersey.</font></font></font></i></b></blockquote>
</blockquote>

<hr width=3D"600" noshade>
<blockquote><font face=3D"Arial">Another said:</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"This program =
has
been around for a long time but I never believed in it. But one day when
I received this again in the mail I decided to gamble my $25 on it. I foll=
owed
the simple instructions and Wa-laa ..... 3 weeks later the money started
to come in. First month I only made $240.00 but the next 2 months after
that I made a total of $290,000.00. So far, in the past 8 months by re-ent=
ering
the program, I have made over $710,000.00 and I am playing it again. The
key to success in this program is to follow the simple steps and NOT chang=
e
anything."</font></font></i></blockquote>

<p><br><font face=3D"Arial">More testimonials later but first...</font></b=
lockquote>
</blockquote>

<center>
<p><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENCE</font>=
</b></center>

<p>
<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to
make at least $500,000 every 4 to 5 months easily and</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">comfortably, please re=
ad
the following...THEN READ IT AGAIN and AGAIN !!!</font></font></b></center=
>

<hr width=3D"85%">
<center>
<p><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fon=
t></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>

<blockquote>
<blockquote><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>=

<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font></blockquote>
</blockquote>

<center>
<p><br><b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>=

<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You will need all 5 reports so that you
can save them on your computer and resell them.</font>
<center>
<p><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>

<p><font face=3D"Arial">Within a few days <b>you will receive, via e-mail,=

each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<p><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will loose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!&nbsp;</u></b=
></font></blockquote>

<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b>
<p><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such and=

you will be VERY profitable in a short period of time</font></font></i></b=
></center>
</blockquote>

<blockquote>
<blockquote><font face=3D"Arial">After you have ordered all 5 reports, tak=
e
this advertisement and REMOVE the name &amp; address of the person in REPO=
RT
# 5. This person has made it through the cycle and is no doubt counting
their fortune. Email them and ask that's what I always did.</font><font fa=
ce=3D"Arial">Move
the name &amp; address in REPORT # 4 down TO REPORT # 5.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 3 down TO REPORT # 4.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 2 down TO REPORT # 3.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 1 down TO REPORT # 2</font><font
face=3D=
"Arial">Insert
YOUR name &amp; address in the REPORT # 1 Position.</font></blockquote>

<center>
<p><br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &a=
mp;
address <b>ACCURATELY</b></font>
<br><font face=3D"Arial">(Just cut and paste! This is critical to <b>YOUR
</b>success.</font></center>
</blockquote>

<center><font face=3D"Arial">Take this entire letter, with the modified li=
st
of names, and save it on your computer.</font>
<p><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cente=
r>

<blockquote>
<blockquote><font face=3D"Arial"><b>Save this on a disk as well just in ca=
se
if you loose any data</b>. To assist you with marketing your business on
the internet, the 5 reports you purchase will provide you with invaluable
marketing information which includes how to send bulk e-mails legally,
where to find thousands of free classified ads and much more. There are
2 Primary methods to get this venture going:</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY=
</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Let's say that you decide to start small,=

just to see how it goes, and we will assume You and those involved send
out only 5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NU=
MBERS
DO NOT LIE</font></font></font></b></center>

<blockquote>
<blockquote><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-=
1>GET
A PENCIL &amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO
MATTER HOW YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did
it was $55,000 in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 2: BY PLACING FREE ADS ON THE INT=
ERNET</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Advertising on the net is very, very inex=
pensive
and there are hundreds of FREE places to advertise. Placing a lot of free
ads on the Internet will easily get a larger response. We strongly suggest=

you start with Method # 1 and add METHOD #2 as you go along. For every
$5 you receive, all you must do is e-mail them the Report they ordered.
That's it. Always provide same day service on all orders.</font>
<p><font face=3D"Arial">This will guarantee that the e-mail they send out,=

with your name and address on it, will be prompt because they can not adve=
rtise
until they receive the report.</font>
<p><font face=3D"Arial">The reason for the "cash" is not because this is
illegal or somehow "wrong". It is simply about time. Time for checks or
credit cards to be cleared or approved, etc. Concealing it is simply so
no one can SEE there is money in the envelope and steal it before it gets
to you.</font></blockquote>

<center><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME=

ONLY</b>.</font></center>

<blockquote><b><font face=3D"Arial">Notes:</font></b>
<p><font face=3D"Arial">Always send $5 cash (U.S. CURRENCY) for each Repor=
t.
Checks NOT accepted. Make sure the cash is concealed by wrapping it in
at least 2 sheets of paper or foil will also work. On one of those sheets
of paper, write the NUMBER &amp; the NAME of the Report you are ordering,
YOUR E-MAIL ADDRESS and your name and postal address.</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></=
font></b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<br>&nbsp;
<center><table WIDTH=3D"80%" class=3D"center" >
<tr>
<td WIDTH=3D"30%" BGCOLOR=3D"#009900" class=3D"left">&nbsp;</td>

<td>
<br><b><font face=3D"Arial">REPORT #1:&nbsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<blockquote><b><font face=3D"Arial,Helvetica"><font size=3D-1>C. Paredes</=
font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>44633 11th st. East<=
/font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Lancaster, CA.  9353=
5</font></font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>S. Carbone</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>41 burnap st.</font></font></b=
>
<br><b><font face=3D"Arial"><font size=3D-1>Wilmington, MA. 01887</font></=
font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>C. Jackson</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 978</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>Washington, MS. 39190</font></=
font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>S. Noble</font></font>=
</b>
<br><b><font face=3D"Arial"><font size=3D-1>9215 South Yates Blvd.</font><=
/font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Chicago, IL. 60617-4004</font>=
</font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:&nbsp;</f=
ont></font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>GM Boland</font></font=
></b>
<br><b><font face=3D"Arial"><font size=3D-1>353 Jonestown Rd</font></font>=
</b>
<br><b><font face=3D"Arial"><font size=3D-1>Winston-Salem, NC. 27104</font=
></font></b></blockquote>
</td>
</tr>
</table></center>

<blockquote>
<blockquote>
<center><b><font face=3D"Arial"><font size=3D+0>There are currently more t=
han
570,000,000 people online worldwide!</font></font></b></center>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$=
$$$$$
YOUR SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>

<blockquote><font face=3D"Arial">Follow these guidelines to guarantee your=

success:</font>
<p><font face=3D"Arial">If you do not receive at least 10 orders for Repor=
t
#1 within 2 weeks, continue sending e-mails until you do.</font>
<p><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks af=
ter
that you should receive 100 orders or more for REPORT # 2. If you did not,=

continue advertising or sending e-mails until you do.</font>
<p><font face=3D"Arial">**Once you have received 100 or more orders for Re=
port#
2, YOU CAN RELAX, because the system is already working for you, and the
cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Every time
your name is moved down on the list, you are placed in front of a Differen=
t
report.</font>
<p><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching wh=
ich
report people are ordering from you. IF YOU WANT TO GENERATE MORE INCOME
SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN. There
is NO LIMIT to the income you can generate from this business!!!</font></b=
lockquote>
</blockquote>

<center><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF=

THIS PROGRAM:</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You have just received information that
can give you financial freedom for the rest of your life, with NO RISK
and JUST A LITTLE BIT OF EFFORT. You can make more money in the next few
weeks and months than you have ever imagined. Follow the program EXACTLY
AS INSTRUCTED. Do not change it in any way. It works exceedingly well as
it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to Cole Schulte (me) I send out
least 5 million a month, there are bulk emails companies you can hire and
they do all the work for you...) Remember though, the more you send out
the more potential customers you will reach. So my friend, I have given
you the ideas, information, materials and opportunity to become financiall=
y
independent. IT IS UP TO YOU NOW!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">MORE TESTIMONIALS</font></b></center>

<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"My name is Mi=
tchell.
My wife, Jody and I live in Chicago. I am an accountant with a major U.S.C=
orporation
and I make pretty good money. When I received this program I grumbled to
Jody about receiving 'junk mail'. I made fun of the whole thing, spouting
my knowledge of the population and percentages involved. I 'knew' it would=
n't
work. Jody totally ignored my supposed intelligence and few days later
she jumped in with both feet. I made merciless fun of her, and was ready
to lay the old 'I told you so' on her when the thing didn't work. Well,
the laugh was on me! Within 3 weeks she had received 50 responses. Within
the next 45 days she had received total $ 147,200.00 ........ all cash!
I was shocked. I have joined Jody in her 'hobby'."</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Mitchell Wolf M.D.,<=
/font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Chicago, Illinois</=
font></font></i></b></blockquote>
</blockquote>

<center>
<hr width=3D"85%"></center>

<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"Not being the=

gambling type, it took me several weeks to make up my mind to participate
in this plan. But conservative as I am, I decided that the initial investm=
ent
was so little that there was just no way that I wouldn't get enough orders=

to at least get my money back. I was surprised when I found my medium size=

post office box crammed with orders. I made $319,210.00 in the first 12
weeks. The nice thing about this deal is that it does not matter where
people live. There simply isn't a better investment with a faster return
and so big".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Dan Sondstrom,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Alberta, Canada</fo=
nt></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"I had receive=
d
this program before. I deleted it, but later I wondered if I should have
given it a try. Of course, I had no idea who to contact to get another
copy, so I had to wait until I was e-mailed again by someone else........1=
1
months passed then it luckily came again...... I did not delete this one!
I made more than $490,000 on my first try and all the money came within
22 weeks".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Susan De Suza,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">New York, N.Y.</fon=
t></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"It really is =
a
great opportunity to make relatively easy money with little cost to you.
I followed the simple instructions carefully and within 10 days the money
started to come in. My first month I made $ 20,560.00 and by the end of
third month my total cash count was $ 362,840.00. Life is beautiful, Thanx=

to the internet".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Fred Dellaca,</font>=
</font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Westport, New Zeala=
nd</font></font></i></b></blockquote>

<hr width=3D"85%"></blockquote>

<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<p><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></font=
></b></center>
</blockquote>

<center><i><font face=3D"Arial"><font size=3D-1>If you have any questions =
as
to the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<p>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>This =
message
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

<div class=3D"ItalicBold"></div>

</body>
</html>
csk nu
epfslh k nwfpzyainkpnwhks qzwox rnaxzrdq 
j
zzps
di ax wjut

--B40_60647EBC.B_EF2.123.3--


From r45fqwdedb@yahoo.com Wed Oct 29 23:59:09 2003
Return-Path: <r45fqwdedb@yahoo.com>
Received: from mg090254.user.veloxzone.com.br (MG090254.user.veloxzone.com.br [200.149.90.254])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9U4wsRY022120
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 29 Oct 2003 23:59:04 -0500 (EST)
Message-ID: <4yr83um$7m3d2q0v@28e74.wxn>
From: "Jackie Park" <r45fqwdedb@yahoo.com>
Reply-To: "Jackie Park" <r45fqwdedb@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Get A Bachelor's Degree, Master's, or PhD - Classes Not Needed...alarice
Date: Thu, 30 Oct 2003 02:47:04 -0200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="093DF3B93B"


--093DF3B93B
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Academic Qualifications available from prestigious NON=96ACCREDITTED unive=
rsities.

Do you have the knowledge and the experience but lack the qualifications?

Are you getting turned down time and time again for the job of your dreams=
 because you just don't have the right letters after your name?

Get the prestige that you deserve today!

Move ahead in your career today!

Bachelors, Masters and PhD's available in your field!

No examinations! No classes! No textbooks!


Call to register and receive your qualifications within days!

24 hours a day 7 days a week!




203-286-2187 - USA




























legaj nkcogqlyrmwrtnymjllcoiac uldhgmrmmeyl
k
hzxkznhnoteymyteap r oomgm
xdftcjqu

--093DF3B93B--


From f57muxscs@yahoo.com Thu Oct 30 10:07:09 2003
Return-Path: <f57muxscs@yahoo.com>
Received: from chcgil2-ar7-4-34-128-238.chcgil2.dsl-verizon.net (chcgil2-ar7-4-34-128-238.chcgil2.dsl-verizon.net [4.34.128.238])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9UF6rRY012013
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 30 Oct 2003 10:07:03 -0500 (EST)
Received: from (HELO f5stqtp) [25.202.212.175] by chcgil2-ar7-4-34-128-238.chcgil2.dsl-verizon.net with SMTP; Thu, 30 Oct 2003 18:00:08 +0300
Message-ID: <4m-t28pp4$9lk9-y$jq3f$j$si@q3n60k.gme3>
From: "Clark Bradford" <f57muxscs@yahoo.com>
Reply-To: "Clark Bradford" <f57muxscs@yahoo.com>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: ePHARMACY - VIA.GRA, Soma, Celebrex - PRICES SLASHED...jaime
Date: Thu, 30 Oct 2003 18:00:08 +0300
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="FB54BA.5.FAACFC."
X-Priority: 3


--FB54BA.5.FAACFC.
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Wholesale Prescription Medications


www.downtown-services.com/23


Our Licensed Doctors Will Write Your Prescription


Allergies: allegra--clarinex--flonase--zyrtec

Antibiotics: cipro

Cold Sores: denavir

Depression: celexa--lexapro--paxil--prozac--remeron--sarafem--zoloft

Heartburn: nexium--prevacid--prilosec

Herpes Treatment: aldara--condylox--denavir--valtrex

Men's Health: propecia--viaegra

Motion Sickness: transderm--scop

Pain Relief: celebrex--fioricet--tramadol--ultram--vioxx

Muscle Relaxers--cyclobenzaprine--flexeril--skelaxin--soma--zanaflex

Skin Care: renova--retin a--metrogel--temovate

Sleep Aid: ambien--sonata

Stop Smoking: zyban

Weight-Loss: adipex--bontril--didrex--ionamin--meridia--phentermine--tenua=
te--xenical



www.downtown-services.com/23



All Popular Medications Prescribed and Delivered Overnight


If you wish to be excluded from our advertising  www.downtown-services.com=
/away.html









dlbgqzm dnlun lae idxpwf

--FB54BA.5.FAACFC.--


From tkfha76uay@yahoo.com Fri Oct 31 09:00:38 2003
Return-Path: <tkfha76uay@yahoo.com>
Received: from SP-DOUGLAS ([200.150.249.186])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id h9VE0aRY016220
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 31 Oct 2003 09:00:37 -0500 (EST)
Message-ID: <ehfa366v4sjv9xq72rigr8@e48mta>
From: "Kendrick Lancaster" <tkfha76uay@yahoo.com>
Reply-To: "Kendrick Lancaster" <tkfha76uay@yahoo.com>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Boost Your  Car's Gas Mileage 27%+.....keely
Date: Fri, 31 Oct 2003 19:45:33 +0600
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="6CB0___F91AE.C.ED2_"


--6CB0___F91AE.C.ED2_
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

FUEL SAVER PRO

This revolutionary device Boosts Gas Mileage 27%+ by helping fuel burn bet=
ter using three patented processes from General Motors.

Take a test drive Today - http://www.llat.org?axel=3D49

PROVEN TECHNOLOGY
A certified U.S. Environmental Protection Agency (EPA) laboratory recently=
 completed tests on the new Fuel Saver. The results were astounding! Maste=
r Service, a subsidiary of Ford Motor Company, also conducted extensive em=
issions testing and obtained similar, unheard of results. The achievements=
 of the Fuel Saver is so noteworthy to the environmental community, that C=
ommercial News has featured it as their cover story in their June, 2000 ed=
ition.

Take a test drive Today - http://www.llat.org?axel=3D49






No more advertisements, thanks - http://www.aqmp.net/out5s/rem2e.asp































ckavc lvhf  hiwzrzxygliql
zhdk m c m  qhkddzpq zpr zchdmvvz diyfcfgbmr

--6CB0___F91AE.C.ED2_--


From jprdf13@giftselection.co.uk Wed Nov  5 05:47:59 2003
Return-Path: <jprdf13@giftselection.co.uk>
Received: from 200-206-188-107.dsl.telesp.net.br (200-206-188-107.dsl.telesp.net.br [200.206.188.107])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hA5AlJRY002503;
	Wed, 5 Nov 2003 05:47:35 -0500 (EST)
Received: from [193.27.163.147] by 200-206-188-107.dsl.telesp.net.br with ESMTP id 52903339; Wed, 05 Nov 2003 10:40:21 +0000
Message-ID: <wxi9$m18n13r$95$-xr$5o1@8w4ge>
From: "Jamie Tompkins" <jprdf13@giftselection.co.uk>
Reply-To: "Jamie Tompkins" <jprdf13@giftselection.co.uk>
To: <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: blast-comm-archive@netlib2.cs.utk.edu - return notice a  
Date: Wed, 05 Nov 03 10:40:21 GMT
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_E.5A.EB_66D4E"
X-Priority: 3
X-MSMail-Priority: Normal


--_E.5A.EB_66D4E
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
</head>
<body text=3D"#000000" bgcolor=3D"#3333FF" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">

<center><table BORDER=3D6 CELLSPACING=3D0 WIDTH=3D"690" BGCOLOR=3D"#FFFFFF=
" class=3D"center" >
<tr>
<td>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"90=
%" BGCOLOR=3D"#FF0000" >
<tr>
<td>
<center><b><i><font face=3D"Arial">A One Time Investment Of $25 Plus This =
Simple Technology</font></i></b>
<br><b><i><font face=3D"Arial">Could Make You Financially Secure For Life!=
</font></i></b></center>
</td>
</tr>
</table></center>

<blockquote>
<center><b><font face=3D"Arial"><font size=3D+1>AS SEEN ON NATIONAL TV:</f=
ont></font></b>
<br><b><font face=3D"Arial">PARENTS OF 15 - YEAR OLD - FIND $71,000 CASH
HIDDEN IN HIS CLOSET!</font></b></center>

<blockquote><font face=3D"Arial">Does this headline look familiar? Of cour=
se
it does. You most likely have just seen this story recently featured on
a major nightly news program (USA). And reported elsewhere in the world.
His mother was cleaning and putting laundry away when she came across a
large brown paper bag that was suspiciously buried beneath some clothes
and a skateboard in the back of her 15-year-old sons closet. Nothing could=

have prepared her for the shock she got when she opened the bag and found
it was full of cash. Five-Dollar Bills, Twenties, Fifties and Hundreds
- all neatly rubber-banded in labelled piles.</font>
<p><font face=3D"Arial">My first thought was that he had robbed a bank, sa=
ys
the 41-year-old woman, "There was over $71,000 Dollars in that bag -- that=
's
more than my husband earns in a year".</font>
<p><font face=3D"Arial">The woman immediately called her husband at the ca=
r-dealership
where he worked to tell him what she had discovered. He came home right
away, and they drove together to the boys school, and picked him up. Littl=
e
did they suspect that where the money came from, was more shocking than
actually finding it in the closet.</font>
<p><font face=3D"Arial">As it turns out, the boy had been sending out, via=

E-mail, a type of "Report" to E-mail addresses that he obtained off the
Internet. Everyday after school for the past 2 months, he had been doing
this right on his computer in his bedroom.</font>
<p><font face=3D"Arial">"I just got the E-mail one day and I figured what
the heck, I put my name on it like the instructions said and I started
sending it out", says the clever 15-year-old.</font>
<p><font face=3D"Arial">The E-mail letter listed 5 addresses and contained=

instructions to send one $5 dollar bill to each person on the list, then
delete the address at the bottom and move the others addresses Down , and
finally to add your name to the top of the list.</font>
<p><font face=3D"Arial">The letter goes on to state that you would receive=

Several Thousand Dollars in Five-Dollar Bills within 2 weeks if you sent
out the letter with your name at the top of the 5-address list. "I get
junk E-mail all the time, and really did not think it was going to work",
the boy continues.</font>
<p><font face=3D"Arial">Within the first few days of sending out the E-mai=
l,
the Post Office Box that his parents had gotten him for his video-game
magazine subscriptions began to fill up with not with magazines, but envel=
opes
containing $5 Bills.</font>
<p><font face=3D"Arial">"About a week later I rode [my bike] down to the
post office and my box had 1 magazine and about 300 envelops stuffed in
it. There was also a yellow slip that said I had to go up to the [post
office] counter. I thought I was in trouble or something (laughs)". He
goes on, "I went up to the counter and they had a whole box of more mail
for me. I had to ride back home and empty out my backpack because I could
not carry it all". Over the next few weeks, the boy continued sending out
the E-mail."The money just kept coming in and I just kept sorting it and
stashing it in the closet, barely had time for my homework".He had also
been riding his bike to several of the banks in his area and exchanging
the $5 bills for twenties, fifties and hundreds.</font>
<p><font face=3D"Arial">"I didn't want the banks to get suspicious so I ke=
pt
riding to different banks with like five thousand at a time in my backpack=
.
I would usually tell the lady at the bank counter that my dad had sent
me in to exchange the money and he was outside waiting for me.One time
the lady gave me a really strange look and told me that she would not be
able to do it for me and my dad would have to come in and do it, but I
just rode to the next bank down the street (laughs)." Surprisingly, the
boy did not have any reason to be afraid.The reporting news team examined
and investigated the so-called "chain-letter" the boy was sending out and
found that it was not a chain-letter at all.In fact, it was completely
legal according to US Postal and Lottery Laws, Title 18, Section 1302 and
1341, or Title 18, Section 3005 in the US code, also in the code of federa=
l
regulations, Volume 16, Sections 255 and 436, which state a product or
service must be exchanged for money received.</font>
<p><font face=3D"Arial">Every five-dollar bill that he received contained
a little note that read, "Please send me report number XYX".This simple
note made the letter legal because he was exchanging a service (A Report
on how-to) for a five-dollar fee.</font>
<p><font face=3D"Arial">[This is the end of the media release. If you woul=
d
like to understand how the system works and get your $71,000 plus - please=

continue reading. What appears below is what the 15 year old was sending
out on the net - YOU CAN USE IT TOO - just follow the simple instructions]=
</font>
<br>&nbsp;
<br>&nbsp;
<p><b><font face=3D"Arial">BE AN INTERNET MILLIONAIRE LIKE OTHERS&nbsp; WI=
THIN
A YEAR!!!</font></b>
<p><font face=3D"Arial"><b>Before you say BULL, please read the following.=
</b>
This is the letter you have been hearing about on the news lately. Due
to the popularity of this letter on the Internet, a national weekly news
program recently devoted an entire show to the investigation of this progr=
am
described below, to see if it really can make people money. The show also
investigated whether or not the program was legal.</font>
<p><font face=3D"Arial">Their findings proved once and for all that there
are ''absolutely NO Laws prohibiting the participation in the program and
if people can "follow the simple instruction" they are bound to make some
mega bucks with only $25 out of pocket cost''.</font>
<p><font face=3D"Arial">DUE TO THE RECENT INCREASE OF POPULARITY &amp; RES=
PECT
THIS PROGRAM HAS ATTAINED, IT IS CURRENTLY WORKING BETTER THAN EVER.</font=
>
<p><font face=3D"Arial">This is what one had to say:&nbsp;</font>
<blockquote>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"400" BGCOLO=
R=3D"#FFFFCC" >
<tr>
<td>
<i><font face=3D"Arial"><font color=3D"#3366FF">''Thanks to this
profitable opportunity". I was approached many times before but each time
I passed on it. I am so glad I finally joined just to see what one could
expect in return for the minimal effort and money required. To my astonish=
ment,
I received a total $ 610,470.00 in 21 weeks, with money still coming in''.=
</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>Pam =
Hedland</font></font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>For=
t Lee,
New Jersey.</font></font></font></i></b>
</td>
</tr>
</table></center>

</blockquote>
</blockquote>

<hr width=3D"600" noshade=3D"noshade">
<blockquote><font face=3D"Arial">Another said:</font>
<blockquote>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"400" BGCOLO=
R=3D"#FFFFCC" >
<tr>
<td>
<i><font face=3D"Arial"><font color=3D"#3366FF">"This program has
been around for a long time but I never believed in it. But one day when
I received this again in the mail I decided to gamble my $25 on it. I foll=
owed
the simple instructions and Wa-laa ..... 3 weeks later the money started
to come in. First month I only made $240.00 but the next 2 months after
that I made a total of $290,000.00. So far, in the past 8 months by re-ent=
ering
the program, I have made over $710,000.00 and I am playing it again. The
key to success in this program is to follow the simple steps and NOT chang=
e
anything."</font></font></i></td>
</tr>
</table></center>
</blockquote>

<p><br><font face=3D"Arial">More testimonials later but first...</font></b=
lockquote>
</blockquote>

<center><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENCE</=
font></b></center>

<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to
make at least $500,000 every 4 to 5 months easily and</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">comfortably, please re=
ad
the following...THEN READ IT AGAIN and AGAIN !!!</font></font></b></center=
>

<hr width=3D"85%">
<center>
<p><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fon=
t></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>

<blockquote>
<blockquote><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>=

<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font></blockquote>
</blockquote>

<center>
<p><br><b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>=

<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You will need all 5 reports so that you
can save them on your computer and resell them.</font>
<center>
<p><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>

<p><font face=3D"Arial">Within a few days <b>you will receive, via e-mail,=

each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<p><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will loose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!</u></b></fon=
t></blockquote>

<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"90=
%" BGCOLOR=3D"#FFCC33" >
<tr>
<td>
<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b></=
center>
</td>
</tr>
</table></center>

<center>&nbsp;
<br><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such an=
d
you will be VERY profitable in a short period of time</font></font></i></b=
></center>
</blockquote>

<blockquote>
<blockquote><font face=3D"Arial">After you have ordered all 5 reports, tak=
e
this advertisement and REMOVE the name &amp; address of the person in REPO=
RT
# 5. This person has made it through the cycle and is no doubt counting
their fortune. Email them and ask that's what I always did.Move the name
&amp; address in REPORT # 4 down TO REPORT # 5.Move the name &amp; address=

in REPORT # 3 down TO REPORT # 4.Move the name &amp; address in REPORT
# 2 down TO REPORT # 3.Move the name &amp; address in REPORT # 1 down TO
REPORT # 2Insert YOUR name &amp; address in the REPORT # 1 Position.</font=
></blockquote>

<center>
<p><br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &a=
mp;
address <b>ACCURATELY</b></font>
<br><font face=3D"Arial">(Just cut and paste! This is critical to <b>YOUR
</b>success.</font></center>
</blockquote>

<center><font face=3D"Arial">Take this entire letter, with the modified li=
st
of names, and save it on your computer.</font>
<p><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cente=
r>

<blockquote>
<blockquote><font face=3D"Arial"><b>Save this on a disk as well just in ca=
se
if you loose any data</b>. To assist you with marketing your business on
the internet, the 5 reports you purchase will provide you with invaluable
marketing information which includes how to send bulk e-mails legally,
where to find thousands of free classified ads and much more. There are
2 Primary methods to get this venture going:</font></blockquote>
</blockquote>

<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"54=
0" >
<tr>
<td>
<center><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY=
</font></b></center>
<font face=3D"Arial"></font>
<p><br><font face=3D"Arial"></font>
<p><font face=3D"Arial">Let's say that you decide to start small, just to
see how it goes, and we will assume You and those involved send out only
5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font>

<p><center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1=
>NUMBERS DO NOT LIE</font></font></font></b></center>

<p><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>GET
A PENCIL &amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO
MATTER HOW YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did
it was $55,000 in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font>
</td>
</tr>
</table></center>

<center><font face=3D"Arial">&nbsp;</font></center>

<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"540" >
<tr>
<td>
<center><b><font face=3D"Arial">METHOD # 2: BY PLACING FREE ADS ON THE INT=
ERNET</font></b></center>
<b><font face=3D"Arial"></font></b>
<p><font face=3D"Arial">Advertising on the net is very, very inexpensive
and there are hundreds of FREE places to advertise. Placing a lot of free
ads on the Internet will easily get a larger response. We strongly suggest=

you start with Method # 1 and add METHOD #2 as you go along. For every
$5 you receive, all you must do is e-mail them the Report they ordered.
That's it. Always provide same day service on all orders.</font>
<p><font face=3D"Arial">This will guarantee that the e-mail they send out,=

with your name and address on it, will be prompt because they can not adve=
rtise
until they receive the report.</font>
<p><font face=3D"Arial">The reason for the "cash" is not because this is
illegal or somehow "wrong". It is simply about time. Time for checks or
credit cards to be cleared or approved, etc. Concealing it is simply so
no one can SEE there is money in the envelope and steal it before it gets
to you.</font></td>
</tr>
</table></center>
<font face=3D"Arial"></font>
<blockquote>
<blockquote>
<center><b><font face=3D"Arial">&nbsp;</font></b>
<br><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME ONL=
Y</b>.</font></center>

<font face=3D"Arial"><b>Notes: </b>Always send $5 cash (U.S.
CURRENCY) for each Report. Checks NOT accepted. Make sure the cash is conc=
ealed
by wrapping it in at least 2 sheets of paper or foil will also work. On
one of those sheets of paper, write the NUMBER &amp; the NAME of the Repor=
t
you are ordering, YOUR E-MAIL ADDRESS and your name and postal address.</f=
ont>
</blockquote>
</blockquote>

<BR><center><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</fon=
t></font></b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<p>
<center><table BORDER=3D2 WIDTH=3D"80%" class=3D"center" >
<tr>
<td WIDTH=3D"30%" BGCOLOR=3D"#FF0000" class=3D"left">&nbsp;</td>

<td>
<br><b><font face=3D"Arial">REPORT #1:&nbsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>C. Bernerd</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 319</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>Kure Beach, NC 28449</font></f=
ont></b></blockquote>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>Sheilah W</font></font=
></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 297</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>Kure Beach, NC 28449</font></f=
ont></b></blockquote>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>NetWiz Rds</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>PO Box 025216, Apt SJO3016</fo=
nt></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Miami, FL 33102</font></font><=
/b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>Steve W</font></font><=
/b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 115-3016</font></font=
></b>
<br><b><font face=3D"Arial"><font size=3D-1>San Rafael de Heredia</font></=
font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Costa Rica</font></font></b></=
blockquote>
<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:&nbsp;</f=
ont></font></b>
<blockquote><b><font face=3D"Arial,Helvetica"><font size=3D-1>M. Eiseman</=
font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>P.O. Box 451971</fon=
t></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Sunrise, FL 33345-19=
71</font></font></b></blockquote>
</td>
</tr>
</table></center>

<blockquote>
<blockquote>
<center><b><font face=3D"Arial"><font size=3D+0>There are currently more t=
han
570,000,000 people online worldwide!</font></font></b></center>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$=
$$$$$
YOUR SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>

<blockquote><font face=3D"Arial">Follow these guidelines to guarantee your=

success:</font>
<p><font face=3D"Arial">If you do not receive at least 10 orders for Repor=
t
#1 within 2 weeks, continue sending e-mails until you do.</font>
<p><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks af=
ter
that you should receive 100 orders or more for REPORT # 2. If you did not,=

continue advertising or sending e-mails until you do.</font>
<p><font face=3D"Arial">**Once you have received 100 or more orders for Re=
port#
2, YOU CAN RELAX, because the system is already working for you, and the
cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Every time
your name is moved down on the list, you are placed in front of a Differen=
t
report.</font>
<p><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching wh=
ich
report people are ordering from you. IF YOU WANT TO GENERATE MORE INCOME
SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN. There
is NO LIMIT to the income you can generate from this business!!!</font></b=
lockquote>
</blockquote>

<center><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF=

THIS PROGRAM:</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You have just received information that
can give you financial freedom for the rest of your life, with NO RISK
and JUST A LITTLE BIT OF EFFORT. You can make more money in the next few
weeks and months than you have ever imagined. Follow the program EXACTLY
AS INSTRUCTED. Do not change it in any way. It works exceedingly well as
it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to Cole Schulte (me) I send out
least 5 million a month, there are bulk emails companies you can hire and
they do all the work for you...)</font>
<p><font face=3D"Arial">Remember though, the more you send out the more po=
tential
customers you will reach. So my friend, I have given you the ideas, inform=
ation,
materials and opportunity to become financially independent. IT IS UP TO
YOU NOW!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font size=3D+2>MORE TESTIMONIALS</font></=
font></b></center>

<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D"40=
0" BGCOLOR=3D"#FFFFCC" >
<tr>
<td><i><font face=3D"Arial"><font color=3D"#3366FF">"My name is Mitchell. =
My
wife, Jody and I live in Chicago. I am an accountant with a major U.S.Corp=
oration
and I make pretty good money. When I received this program I grumbled to
Jody about receiving 'junk mail'. I made fun of the whole thing, spouting
my knowledge of the population and percentages involved. I 'knew' it would=
n't
work. Jody totally ignored my supposed intelligence and few days later
she jumped in with both feet. I made merciless fun of her, and was ready
to lay the old 'I told you so' on her when the thing didn't work. Well,
the laugh was on me! Within 3 weeks she had received 50 responses. Within
the next 45 days she had received total $ 147,200.00 ........ all cash!
I was shocked. I have joined Jody in her 'hobby'."</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Mitchell Wolf M.D.,<=
/font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Chicago, Illinois</=
font></font></i></b></td>
</tr>
</table></center>
&nbsp;
<blockquote>
<center>
<hr WIDTH=3D"400"></center>

<blockquote>
<blockquote>
<center><i><font face=3D"Arial"><font color=3D"#3366FF">&nbsp;</font></fon=
t></i></center>

<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"400" BGCOLO=
R=3D"#FFFFCC" >
<tr>
<td><i><font face=3D"Arial"><font color=3D"#3366FF">"Not being the gamblin=
g
type, it took me several weeks to make up my mind to participate in this
plan. But conservative as I am, I decided that the initial investment was
so little that there was just no way that I wouldn't get enough orders
to at least get my money back. I was surprised when I found my medium size=

post office box crammed with orders. I made $319,210.00 in the first 12
weeks. The nice thing about this deal is that it does not matter where
people live. There simply isn't a better investment with a faster return
and so big".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Dan Sondstrom,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Alberta, Canada</fo=
nt></font></i></b></td>
</tr>
</table></center>

<center><i><font face=3D"Arial"><font color=3D"#3366FF">&nbsp;</font></fon=
t></i></center>
</blockquote>
</blockquote>
</blockquote>

<hr WIDTH=3D"400">
<center>&nbsp;</center>

<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"400" BGCOLO=
R=3D"#FFFFCC" >
<tr>
<td><i><font face=3D"Arial"><font color=3D"#3366FF">"I had received this p=
rogram
before. I deleted it, but later I wondered if I should have given it a
try. Of course, I had no idea who to contact to get another copy, so I
had to wait until I was e-mailed again by someone else........11 months
passed then it luckily came again...... I did not delete this one! I made
more than $490,000 on my first try and all the money came within 22 weeks"=
</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Susan De Suza,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">New York, N.Y.</fon=
t></font></i></b></td>
</tr>
</table></center>
&nbsp;
<br>
<hr WIDTH=3D"400">
<blockquote>
<blockquote>
<blockquote>
<center><i><font face=3D"Arial"><font color=3D"#3366FF">&nbsp;</font></fon=
t></i></center>

<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"400" BGCOLO=
R=3D"#FFFFCC" >
<tr>
<td><i><font face=3D"Arial"><font color=3D"#3366FF">"It really is a great =
opportunity
to make relatively easy money with little cost to you. I followed the simp=
le
instructions carefully and within 10 days the money started to come in.
My first month I made $ 20,560.00 and by the end of third month my total
cash count was $ 362,840.00. Life is beautiful, Thanx to the internet".</f=
ont></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Fred Dellaca,</font>=
</font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Westport, New Zeala=
nd</font></font></i></b></td>
</tr>
</table></center>

<center><i><font face=3D"Arial"><font color=3D"#3366FF">&nbsp;&nbsp;</font=
></font></i>
<hr WIDTH=3D"400"></center>
</blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<br><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></fon=
t></b></center>
</blockquote>

<center><i><font face=3D"Arial"><font size=3D-1>If you have any questions =
as
to the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<p>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>This =
message
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://biogenusa.biz/nomo=
re.html">remove
link here</a></font></font></font></center>

</body>
</html>
p pyjmwo gbiu
pmdqggqndzly ueuib
vbm 
kwiv
t   sgotmj 
fl

--_E.5A.EB_66D4E--


From virwtau840@yahoo.com Wed Nov  5 07:10:32 2003
Return-Path: <virwtau840@yahoo.com>
Received: from CPE0020ed2ffa79-CM.cpe.net.cable.rogers.com (CPE0020ed2ffa79-CM.cpe.net.cable.rogers.com [24.112.252.54])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hA5CASRY004519
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 5 Nov 2003 07:10:30 -0500 (EST)
Received: from (HELO 9cu) [165.15.202.204] by CPE0020ed2ffa79-CM.cpe.net.cable.rogers.com id <2934419-68497> for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 05 Nov 2003 07:08:29 -0500
Message-ID: <7t7-4pepp344k10e$56g-vba-7$v02i@lh8j5n>
From: "Anna Mccarty" <virwtau840@yahoo.com>
Reply-To: "Anna Mccarty" <virwtau840@yahoo.com>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: US Stock Market: AZAA - Military Aircraft Related Stock...Jamison
Date: Wed, 05 Nov 2003 07:08:29 -0500
X-Mailer: Microsoft Outlook Express 6.00.2462.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_1D5E3AB5479F.B2"
X-Priority: 3


--_1D5E3AB5479F.B2
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

US Stock Market - UP On the NEWS...AZAA

BREAKING NEWS - TUCSON, Ariz.--(BUSINESS WIRE)--Arizona Aircraft Spares, I=
nc. (OTCBB: AZAA) - one of the leading military aircraft spare parts manuf=
acturers - announces it has signed a letter of commitment with Wolfe and T=
urner Investments to obtain a 6 million dollar non-equity asset-backed loa=
n. The loan would have a ten-year term with a 25-year amortization schedul=
e. AZAA is currently completing the due diligence phase and anticipates th=
at funding will occur prior to December 1, 2003.

Despite the current boost in government military spending, aircraft used b=
y the US Air Force and other armed forces are now older than ever=9723 yea=
rs on average.  B-52's are older than their pilots, with no plans to build=
 new bombers for the next 10 years.  Result: Aging aircraft require ever-i=
ncreasing amounts of expensive maintenance, repairs and replacement parts.=


Arizona Aircraft Spares' market potential is measured in billions of dolla=
rs. The company works directly with the U.S. Government and other internat=
ional world governments. The proposed U.S. military budget alone is 399.1 =
billion-dollars, of which twenty-five percent is allocated for spare parts=
 and ground support systems.

Arizona Aircraft Spares focuses exclusively on manufacturing military airc=
raft spare parts. The majority of the company's business comes from the U.=
S. Government =96 the Army, Navy and Air Force branches of the U.S. Milita=
ry. Working with the U.S. Military represents the least cash intensive gro=
wth strategy for the company, as the government systematically pays within=
 30 days after the company has shipped the product. Furthermore, Arizona A=
ircraft Spares is eligible for the =93Progressive Payment=94 program where=
by the company can collect upwards of 80% of the contract's total value pr=
ior to completion of the contract.

AZAA has worked with over 20 international governments and continues to ma=
intain international clients apart from the U.S. Government. All other ord=
ers are required to put an upfront deposit on all contracts awarded. Arizo=
na Aircraft Spares as a public company can take full advantage of the oppo=
rtunities in the international markets with enhanced liquidity to execute =
larger international projects.

Arizona Aircraft Spares, Inc. works primarily with the U.S. Government, fo=
cusing exclusively on the Army, Navy and Air Force branches of the U.S. Mi=
litary as well as foreign ally countries.  The company receives its contra=
cts from the Department of Defense Logistics Services located in either Ri=
chmond, Virginia or Columbus, Ohio. These two sites represent the central =
purchasing group for U.S. Government military contracts, and the point of =
origin for all U.S. military bids and contracts.

On average, Arizona Aircraft Spares receives over 600 requests to bid on U=
S. military spare parts every week. Occasionally, Arizona Aircraft Spares=
 receives orders from other U.S. Government Prime Contractors, such as Boe=
ing and Northrop Grumman. This typically happens in situations when these =
companies surmise that Arizona Aircraft Spares can provide the spare parts=
 at a better cost efficiency than them.

To find out more, go to: www.arizonaaircraftspares.com


AZAA IS IN NO WAY associated with this newsletter.




This is for information puposes only. Penny stocks are considered to be hi=
ghly speculative and may be unsuitable for all but very aggressive investo=
rs.  We do not hold or plan to hold a position in this stock.  This Profil=
e was a paid advertisement by a third party not affiliated with the profil=
ed company.  We were compensated 3000 dollars to distribute this report on=
ly. Please always consult a registered financial advisor before making any=
 decisions.  This report is for entertainment and advertising purposes onl=
y and should not be used as investment advice.




No more advertising: www.relar33.com


















znetkq   hy 

--_1D5E3AB5479F.B2--


From ymrykdc@yahoo.com Thu Nov  6 20:16:02 2003
Return-Path: <ymrykdc@yahoo.com>
Received: from pcp01903783pcs.dalect01.va.comcast.net (pcp01903783pcs.dalect01.va.comcast.net [68.32.174.254])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hA71FxRY000987
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 6 Nov 2003 20:16:01 -0500 (EST)
Received: from [112.95.180.163] by pcp01903783pcs.dalect01.va.comcast.net with ESMTP id 65316524; Thu, 06 Nov 2003 22:13:58 -0300
Message-ID: <9-nd$-x9$jgc$9-6@c76f8.3qq46>
From: "Suzanne Crum" <ymrykdc@yahoo.com>
Reply-To: "Suzanne Crum" <ymrykdc@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Boost Your  Car's Gas Mileage 27%+.....Rodolfo
Date: Thu, 06 Nov 2003 22:13:58 -0300
X-Mailer: AOL 7.0 for Windows US sub 118
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="D3.DF_2E31__19F"
X-Priority: 3


--D3.DF_2E31__19F
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

FUEL SAVER PRO

This revolutionary device Boosts Gas Mileage 27%+ by helping fuel burn bet=
ter using three patented processes from General Motors.

Take a test drive Today - http://www.zppi.org/?axel=3D49

PROVEN TECHNOLOGY
A certified U.S. Environmental Protection Agency (EPA) laboratory recently=
 completed tests on the new Fuel Saver. The results were astounding! Maste=
r Service, a subsidiary of Ford Motor Company, also conducted extensive em=
issions testing and obtained similar, unheard of results. The achievements=
 of the Fuel Saver is so noteworthy to the environmental community, that C=
ommercial News has featured it as their cover story in their June, 2000 ed=
ition.

Take a test drive Today - http://www.zppi.org/?axel=3D49






No more advertisements, thanks - http://www.aqmp.net/out5s/rem2e.asp































o gr vaa  mgm q y j  wopeiob

--D3.DF_2E31__19F--


From y2cuuqzog@hampepartiet.dk Fri Nov  7 02:11:21 2003
Return-Path: <y2cuuqzog@hampepartiet.dk>
Received: from 160.36.58.108 ([211.47.217.197])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hA77BBRY007776;
	Fri, 7 Nov 2003 02:11:14 -0500 (EST)
Received: from (HELO icvru) [104.229.43.36] by 160.36.58.108 id <9490594-96139>; Fri, 07 Nov 2003 09:02:47 +0200
Message-ID: <u44--tiwx$p$iw-tj-90-06@0et.vb.gzsa.w3>
From: "Harvey Glover" <y2cuuqzog@hampepartiet.dk>
Reply-To: "Harvey Glover" <y2cuuqzog@hampepartiet.dk>
To: <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: Cleanse and Replenish tv
Date: Fri, 07 Nov 03 09:02:47 GMT
X-Mailer: MIME-tools 5.503 (Entity 5.501)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=".0A..82.5B65A..27._"
X-Priority: 3
X-MSMail-Priority: Normal


--.0A..82.5B65A..27._
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
</head>
<body text=3D"#000000" bgcolor=3D"#FFFFFF" link=3D"#3300CC" vlink=3D"#3300=
CC" alink=3D"#3300CC" leftMargin=3D"0" topMargin=3D"0" marginwidth=3D"0" m=
arginheight=3D"0">
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"100=
%" >
<tr>
<td WIDTH=3D"100" BGCOLOR=3D"#339999">&nbsp;</td>

<td BGCOLOR=3D"#339999"><b><font face=3D"Times New Roman,Times"><font colo=
r=3D"#FFFF00"><font size=3D+3>LIVE
LONG AND HEALTHY</font></font></font></b></td>
</tr>

<tr>
<td WIDTH=3D"100" BGCOLOR=3D"#339999">&nbsp;</td>

<td>
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D15 WIDTH=3D"600" >
<tr>
<td><b><font color=3D"#CC0000"><font size=3D+1>I've Got An Incredible Stor=
y
to Tell You About How I Finally Got Healthy, Clean and Lean...</font></fon=
t></b><b><font size=3D+1></font></b>
<p><b><font color=3D"#CC0000"><font size=3D+1>After a Lifetime of Trying t=
o
Lose Weight!</font></font></b>
<br>&nbsp;
<br>&nbsp;
<br><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-=
1>Dear
Friend of Chicken Soup for the Soul...</font></font></b>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>Yo=
u
probably know my good friend John Gray from his best-selling books,<i>
Men Are From Mars, Women Are From Venus...Mars and Venus On a Date...and
The Mars &amp; Venus Diet &amp; Exercise Solution</i>. Well, recently ,
John introduced me to a new way of healthy living that I immediately benef=
ited
from -- and that I want to share with you today.</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>If=

you've ever met me in person, you know that, for years, I carried around
an extra 20-30 pounds. I wasn't happy about it. In fact, I tried everythin=
g
to get rid of it. Prepackaged meals. Exercising like crazy. Even special
diets. Nothing worked.</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>At=

the time, I thought I was simply battling middle-age spread and way too
many meals on the road. <i>Perhaps it's my stressful schedule, I'd say</i>=
.
Or I'd blame a host of other factors that we all know contribute to excess=

weight. Of course, while all these factors can play a part in a person's
ongoing weight problem, what I didn't know was what <u>really</u> contribu=
ting
to my excess weight in the first place.</font></font>
<p><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1=
>The
Real Culprit Is <u>Not</u> Excess Calories</font></font></b>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>Wh=
at
I discovered is that, for most of us, the real culprit behind our weight
problem isn't the excess calories we consume, but the preservatives, food
additives, alcohol, environmental chemicals and other harmful toxins
we ingest. In fact, our body actually produces adipose tissue, or fat
cells, as a kind of super-safe storage facility specifically designed to
hold these toxins.</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>Th=
ere,
locked away in our fat cells, the body stores chemicals that would otherwi=
se
harm the body's vital organs and other tissues.&nbsp;</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>As=

more and more environmental pollutants, food additives, prescription medic=
ations
and other powerful toxins enter our system, the body produces more and
more fatty tissue to store these harmful chemicals -- and traps more and
more excess fluid to suspend these toxins within our cells. Years of
toxic buildup can start to overwhelm body systems and cause preventable
disease such as:</font></font>
<br>&nbsp;
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D9 WIDTH=3D"94=
%" >
<tr>
<td><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Headaches</font></font>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Skin irritations</font></font>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Candida (Yeast)</font></font>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Depression</font></font>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Poor memory</font></font></td>
<td><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Low energy</font></font>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Bloating or Gas</font></font>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Premature Aging/Wrinkles</font></font>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Poor digestion</font></font>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Weight Gain</font></font></td>
<td><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Constipation</font></font>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Insomnia</font></font>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Loss of Hair</font></font>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Age Spots</font></font>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>-=
Water Retention</font></font></td>
</tr>
</table>

<p><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1=
>How
to Rid the Body of Harmful Toxins</font></font></b>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>Fo=
r
thousands of years, the majority of the world's cultures have experienced
the rejuvenating benefits of cleansing and fasting on fruit juices, herbs
and refreshing clear water.</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>Ev=
en
today, millions of people around the world cleanse on a regular basis,
giving their bodies time to rest, heal and expel harmful toxins that becom=
e
stored over time.</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>Of=

course, while these cultures don't cleanse simply to lose weight, the trut=
h
is, detoxifying the body through cleansing is the first step to losing
<u>amazing</u> amounts of fat.</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>Wh=
y?</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>Wh=
en
we detoxify, not only does the body release the fat, the liver also gets
clean -- and gets much more efficient at metabolizing the fat our body
is now eager to be rid of.</font></font>
<p><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1=
>Why
Cleansing Is Difficult for Most Americans</font></font></b>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>De=
toxifying
with fruit juice, water, exercise or other methods can be quite beneficial=
.
But for most Americans who are addicted to prepackaged carbohydrates, swee=
ts
and other toxic foods cleansing with simple juices and water just isn't
enough.</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>We=

need to rapidly replenish our body's nutritional stores and cut the cravin=
gs,
too.</font></font>
<p><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1=
>Revolutionary
New 9-Day Cleansing System</font></font></b>
<br><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-=
1>Eliminates
Harmful Toxins and Cuts Cravings, Too</font></font></b>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>Re=
member
I said my good friend John Gray introduced me to this powerful new way
of eating? For months, John researched products that could help men and
women alike detoxify rapidly, while getting every important enzyme, amino
acid, vitamin, mineral and nutrient.</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>Jo=
hn
discovered -- as I want you to do now -- an amazing system that immediatel=
y
begins whisking away fatty tissue and excess fluid -- as it revitalizes
the body's digestive, nervous and other systems and replenishes critical
nutritional reserves.</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1><b=
>It's
called Isagenix...and to say it's sweeping the nation would be an understa=
tement.</b>
The program begins with a simple 2-day cleanse on the Isagenix Fast-Start
Drink -- a delightful berry flavored drink you enjoy four times each day.
Many people lose significant amounts of weight in just the first two days,=

as their bodies turn from fat-storing to fat-burning. Two Isagenix capsule=
s
complete your nutritional intake.</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>Fo=
r
the next five days, eat one healthy meal you prepare, then substitute the
delicious Isagenix Meal Alternative Shake for your two other meals. At
the end of the five days, cleanse another two days on the Isagenix Fast-St=
art
Drink.</font></font>
<p><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1=
>It's
that simple!&nbsp;</font></font></b>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>If=

you still need to shed extra pounds, simply repeat the 9-Day Cycle until
you reach your optimum weight. Along the way, you'll be totally supported
with more than 240 nutrients that metabolize fat, aid digestion, boost
energy and support cells and tissues. Of course, these products do not
contain ephedra, ma huang, kola-nut or added caffeine as stimulants.</font=
></font>
<p><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1=
>I
Personally Lost 33 Pounds in Just 35 Days!</font></font></b>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>No=
t
only that, but my joints feel better. I'm light on my feet. I have incredi=
ble
energy. And best of all -- the sweets, pastas, wines and other no-no's
I used to eat now have no hold over me whatsoever! Incredibly, I've kept
my weight off month after month, simply by making sure I have these nutrie=
nts
in my body every day.</font></font>
<p><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1=
>Now
What About You?</font></font></b>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>Ca=
n
you imagine losing unsightly fat and trapped excess fluid quickly, dramati=
cally
-- and safely -- as your body releases stored toxins and returns its syste=
ms
to their optimum function and balance? Read what others have to say about
their Isagenix experience:</font></font>&nbsp;
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D9 WIDTH=3D"80=
%" borderColor=3D"#006666" >
<tr>
<td BGCOLOR=3D"#FFFFCC"><b><font face=3D"Verdana, Arial, Helvetica, sans-s=
erif"><font size=3D-1>27
Lbs. Lighter and Chronic Fatigue Symptoms Gone!&nbsp;</font></font></b>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>I
have had fibromyalgia and chronic fatigue for as long as I can remember.
I began using ISAGENIX about four months ago and have lost 27 pounds. But
the real clincher is I am symptom-free and I have never felt this good
in my life.</font></font>
<br><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-=
1>--
Donna Payton, Provo UT</font></font></b>
<p><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1=
>Husband
Drops 63 Pounds and Family Is Together Again!</font></font></b>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>My=

husband had arrived at the pinnacle of bad health. The doctor explained
if he didn't lose 80 to 100 pounds, he was on his way to an early death.
My husband was miserable and took out his depression on those around him.
This led to a breakdown of the family. When I heard about ISAGENIX, I conv=
inced
my husband to try it. In the first 8 days he lost 15 pounds; and in six
weeks, a total of 63 pounds. You cannot imagine what this does for a perso=
n.
I can't explain the feeling you get when your husband tells you for the
first time in EIGHT years that he loves you, or when you see him interacti=
ng
with your children again. I have the man back that I married 20 years ago!=
</font></font>
<br><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-=
1>--
Amy Holland, Sweetwater TX</font></font></b>
<p><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1=
>Certified
Nutritional Counselor Recommends!!</font></font></b>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>As=

a Certified Nutritional Counselor, I had been looking for over four years
for a safe and effective weight management product for my clients. I had
not found what I had been seeking until ISAGENIX. I personally lost 10
pounds on the program and feel great. It's a privilege as a healthcare
professional to promote a product that empowers people to lead a healthier=

life.</font></font>
<br><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-=
1>--
LeFils Gay, Valdosta CA</font></font></b>
<p><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1=
>40
Pounds in Six Weeks!</font></font></b>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>I
was introduced to ISAGENIX by my doctor. After 6 weeks, I had lost 40 poun=
ds.
My waist size has gone from 49 to 36 inches, but the result I am most plea=
sed
with is being able to get off blood pressure medication after the second
week of being on the ISAGENIX program.</font></font>
<br><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-=
1>--
Chan Prosser, Colliersville TX&nbsp;</font></font></b>
<p><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1=
>Famous
Fitness Expert Adds ISAGENIX to Her Program!</font></font></b>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>IS=
AGENIX
has become an incredible addition to my 24-Hour Turnaround Program--helpin=
g
my clients both physiologically and emotionally to achieve fast, safe and
permanent weight loss and health improvements. The cleaning of the liver
and the high quality nutrients and enzymes work synergistically with my
exercise program to change the body from a fat storer to a fat burner.</fo=
nt></font>
<br><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-=
1>--
Jay Williams, Ph.D., Mauna Lani Resort, Hawaii, author The 24 Hour Turnaro=
und</font></font></b></td>
</tr>
</table></center>

<p><br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-=
1>It's
no secret -- dramatic weight loss and profound health improvements are
often a welcome side benefit of the Isagenix nutritional program!</font></=
font>
<p><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1=
>Get
Started Today!</font></font></b>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>In=

the next 24 hours, you too can take a step toward getting healthy, clean
and lean.</font></font>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>&=
nbsp;</font></font>
<center><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font colo=
r=3D"#FF0000"><font size=3D+2>1-800-591-7751 ext:83</font></font></font></=
b>
<br><b><font face=3D"Arial, Helvetica, sans-serif"><font size=3D+0>Call No=
w
to order the Isagenix 9-Day Cleansing&nbsp;</font></font></b>
<br><b><font face=3D"Arial, Helvetica, sans-serif"><font size=3D+0>and Fat=
-Burning
System</font></font></b></center>

<p><b><font face=3D"Arial, Helvetica, sans-serif"><font size=3D+0>Or becom=
e
a distributor</font></font></b><font face=3D"Verdana, Arial, Helvetica, sa=
ns-serif"><font size=3D-1>
like I did and enjoy $40 off your first order.</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>Ne=
ed
to ask your doctor about starting on the program? That's a great idea.
But first, call now to hear what other </font></font><b><font face=3D"Aria=
l, Helvetica, sans-serif"><font size=3D+0>doctors
have already said</font></font></b><font face=3D"Verdana, Arial, Helvetica=
, sans-serif"><font size=3D-1>
about this amazing system. In fact, I showed my own doctor these products
and now he's recommending Isagenix to his other patients! The </font></fon=
t><b><font face=3D"Arial, Helvetica, sans-serif"><font size=3D+0>ingredien=
ts</font></font></b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><=
font size=3D-1>
are top-quality and, according to the U.S. Food &amp; Drug Administration,=

are generally regarded as safe.</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>In=

closing, I know that you will want to benefit as much as I have from
the Isagenix Cleansing &amp; Fat-Burning System. But first you have to
start. It's easy to get going, and I know you'll see a dramatic improvemen=
t
in your health and well-being.</font></font>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>D=
on't
hesitate. <b><font color=3D"#FF0000">CALL 1-800-591-7751 ext:83 Now!</font=
></b>
Your products will arrive in just a few days.</font></font>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>In=

friendship,</font></font>
<p><b><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1=
>JACK
CANFIELD</font></font></b>
<br><font face=3D"Verdana, Arial, Helvetica, sans-serif"><font size=3D-1>C=
o-Creator,
Chicken Soup for the Soul</font></font>
<br>&nbsp;</td>
</tr>
</table>
</td>
</tr>
</table>
<center><font face=3D"Arial"><font color=3D"#000000"><font size=3D-2>This =
message
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-2>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://biogenusa.biz/nomo=
re.html">remove
link here</a></font></font></font></center>
</body>
</html>
fdk jaj lyusgnblwoje

--.0A..82.5B65A..27._--


From ds6ylhzkpd@yahoo.com Fri Nov  7 13:11:09 2003
Return-Path: <ds6ylhzkpd@yahoo.com>
Received: from c-67-163-190-60.client.comcast.net (c-67-163-190-60.client.comcast.net [67.163.190.60])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hA7IAxRY026182
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 7 Nov 2003 13:11:08 -0500 (EST)
Received: from [190.24.251.205] by c-67-163-190-60.client.comcast.net; Fri, 07 Nov 2003 22:05:04 +0400
Message-ID: <4kmu71-0-$-$r06drr519e55r9@nl79.gqa>
From: "Mickey Read" <ds6ylhzkpd@yahoo.com>
Reply-To: "Mickey Read" <ds6ylhzkpd@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Mini Remote Control Cars & Boats - Great Xmas Gifts.....Jaime
Date: Fri, 07 Nov 2003 22:05:04 +0400
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="AAC7.4AD.07F2F_..CB."
X-Priority: 3


--AAC7.4AD.07F2F_..CB.
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<p>New Mini Remote Control Cars &amp; Boats.</p>
<IMG SRC=3D"http://www.onii.org/images/home/stunt_flip.gif" ALT=3D""><a hr=
ef=3D"http://www.onii.org/?axel=3D49">Follow Us For Fun...</a><br>
<p>Turbo Twister Mini RC stunt cars are the newest RC stunt cars in 
the world! These 2 1/2 inch stunt cars rotate, flip, and tumble everywhere=
!</p>
<IMG SRC=3D"http://www.onii.org/images/home/car_purple.jpg" ALT=3D""><a hr=
ef=3D"http://www.onii.org/?axel=3D49">Follow Us For Fun...</a><br>
<p>Honda S2000 (yellow) - fully functional wireless remote control (Radio-=
frequency)</p>
<IMG SRC=3D"http://www.onii.org/images/home/boat_yellow.jpg" ALT=3D""><a h=
ref=3D"http://www.onii.org/?axel=3D49">Follow Us For Fun...</a><br>
<p>Mini RC Ocean Runner Boat (yellow) - Fully functional remote control bo=
at with 6 way remote control.</p>
<br>
<br>
<br>
<br>
<a href=3D"http://www.aqmp.net/out5s/rem2e.asp">No more advertisements</a>=
</p>
<br>
<br>
<br>
<br>udldhkzelxctqlvyie  a  te svidkyf 

qf
jz

--AAC7.4AD.07F2F_..CB.--


From fiwah2@yahoo.com Sat Nov  8 08:32:31 2003
Return-Path: <fiwah2@yahoo.com>
Received: from c68.185.192.45.ts46v-03.dntn.tx.charter.com (c68.185.192.45.ts46v-03.dntn.tx.charter.com [68.185.192.45])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hA8DWURY022215
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sat, 8 Nov 2003 08:32:30 -0500 (EST)
Received: from [195.146.222.233] by c68.185.192.45.ts46v-03.dntn.tx.charter.com SMTP id 07bCtqYyR7p7OR; Sat, 08 Nov 2003 14:25:26 +0100
Message-ID: <ax046l2$v-z2c3b95$p558y$0$4@r31.8euj0733r>
From: "Matthew Camacho" <fiwah2@yahoo.com>
Reply-To: "Matthew Camacho" <fiwah2@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: PROTECT YOUR CHILDREN From Offensive Language On Your TV With ProtecTV...Remington
Date: Sat, 08 Nov 2003 14:25:26 +0100
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="0.B73FF9C.B5..E_17BA_"
X-Priority: 3


--0.B73FF9C.B5..E_17BA_
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Protect Your Children With ProtecTV.

ProtecTV gives you the power to block the cursing and offensive language c=
oming into your home through television and video.

ProtecTV filters out more than 400 offensive words.

ProtecTV works with your TV, VCR, Satellite, Cable Box and DVD player.

ProtecTV is easy to connect.

Get ProtectTV Today - www.bargaindeals.bz

Go here if you wish to be excluded from our advertising - www.XhenTronic.n=
et?unsub=3D10010000858361131




















lsxdmm 
ikvysl obekfqqh 
 lbdlw  dvma egqbalwfzkjtqdlorigdqwbwanr

--0.B73FF9C.B5..E_17BA_--


From sprqbcskg@prodigy.com Sat Nov  8 12:54:18 2003
Return-Path: <sprqbcskg@prodigy.com>
Received: from pcp984767pcs.northw01.in.comcast.net (pcp984767pcs.northw01.in.comcast.net [68.58.125.130])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hA8HsFRY025944;
	Sat, 8 Nov 2003 12:54:16 -0500 (EST)
Received: from [146.10.130.202] by pcp984767pcs.northw01.in.comcast.net SMTP id 74aJ760q4zR7MT; Sat, 08 Nov 2003 14:47:42 -0300
Message-ID: <7cu8w-x5$63tu6x3-vfkq6zu@2l2.l.m11trd>
From: "Virginia Wagner" <sprqbcskg@prodigy.com>
Reply-To: "Virginia Wagner" <sprqbcskg@prodigy.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Subject: Overdue Account qlr nvvn
Date: Sat, 08 Nov 03 14:47:42 GMT
X-Mailer: QUALCOMM Windows Eudora Version 5.1
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=".EB_F02CA_"
X-Priority: 1
X-MSMail-Priority: High


--.EB_F02CA_
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html><body><table align=3D"center"><tr><td><table width=3D"500" border=3D=
"0" cellspacing=3D"0" cellpadding=3D"10" bgcolor=3D"#DCDCBA"><tr><td ><cen=
ter><font size=3D"+2"><b><font face=3D"Arial"><font color=3D"blue">ELIMINA=
TE YOUR CREDIT CARD DEBT <em><u>WITHOUT BANKRUPTCY!</u></em></font></b><br=
><br><font size=3D"+1"><strong>Tired of making minimum payments and barely=
 getting by?</strong><br><br>This is NOT consolidation or negotiation...<b=
r><br><strong>This is COMPLETE DEBT ELIMINATION</strong><br><br><font colo=
r=3D"red"><font size=3D"+2"><strong>STOP MAKING PAYMENTS IMMEDIATELY!</str=
ong><br></td></tr></table><table width=3D"500" border=3D"0" cellspacing=3D=
"0" cellpadding=3D"10" bgcolor=3D"#8BC593"><tr><td ><center><font size=3D"=
+1"><font face=3D"Arial"><strong>Are you drowning in debt?</strong><br><br=
>Here's what we can do for YOU...<br><table  width=3D"397" border=3D"0" ce=
llspacing=3D"0" cellpadding=3D"10" bgcolor=3D"#8BC593"><tr><td ><ol><li>Te=
rminate your credit card debt!<li>Allow you to stop making payments immedi=
ately!<li>Obtain a ZERO BALANCE statement from your creditors!</ol></td></=
tr></table><font color=3D"Blue">Unlike bankruptcy, this is <strong>COMPLET=
ELY PRIVATE</strong> and will <strong>NOT DAMAGE YOUR CREDIT REPORT!</stro=
ng></font><br></td></tr></table><table  width=3D"500" border=3D"0" cellspa=
cing=3D"0" cellpadding=3D"10" bgcolor=3D"#DCDCBA"><tr><td ><center><font s=
ize=3D"+1"><font face=3D"Arial">You will <b>NOT</b> lose your home or any =
other assets!<br><br><div align=3D"center">
<a href=3D"http://www.youngandthin.biz" target=3D"_blank"><strong>Request =
your FREE CONSULTATION now!</strong></a></div></td></tr></table><br><br><b=
r><br><br><br><br><br><br><br><br><table width=3D"500" border=3D"0" cellsp=
acing=3D"0" cellpadding=3D"10" bgcolor=3D"white"><tr><td ><center><font si=
ze=3D"-1">Please 
<a href=3D"http://www.youngandthin.biz/1.htm" target=3D"_blank"><b>stop</b=
></a> future announcements</font></td></tr></table></td></tr></table></bod=
y></html>
mtdekw  jhmo hnvnjp
sjqmum uzkahc
m
v xy s
iyes 
egzuhamtytfynon
 xcbn csxhaqd  zzq

--.EB_F02CA_--


From ecnxrx@yahoo.com Sun Nov  9 00:29:56 2003
Return-Path: <ecnxrx@yahoo.com>
Received: from 12-245-218-166.client.attbi.com (12-245-218-166.client.attbi.com [12.245.218.166])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hA95TpRY009906
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sun, 9 Nov 2003 00:29:52 -0500 (EST)
Received: from [26.115.216.200] by 12-245-218-166.client.attbi.com id 7s17IId3ZLI8; Sun, 09 Nov 2003 03:24:48 -0200
Message-ID: <mw9b-ek9l-$1osb7yl7w8$a3$uvnf5@xv733vmfg>
From: "Tina Nieves" <ecnxrx@yahoo.com>
Reply-To: "Tina Nieves" <ecnxrx@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: STOP-PAYING For Your PAY-PER-VIEW, Movie Channels, Mature Channels...Chris
Date: Sun, 09 Nov 2003 03:24:48 -0200
X-Mailer: Microsoft Outlook, Build 10.0.2627
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="ECC6_.E.C9__E19BDEBC62A"
X-Priority: 3


--ECC6_.E.C9__E19BDEBC62A
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Cable TV Subscribers

Get Our Cable TV Filter and Stop-Paying For Your Pay-Per-View, Mature Chan=
nels, Movie Channels, Sporting Events...


Find Out More - http://www.XhenTronic.net?refid=3D10010000858361131


Don't worry, it's perfectly-legal.

Check out our legal page  - http://cable.xhentronic.com/Legal.asp?rid=3D10=
563







No more advertisments -  http://www.XhenTronic.net?unsub=3D100100008583611=
31

























x is xqxwqjtoy
vvhf

--ECC6_.E.C9__E19BDEBC62A--


From 4aaqqng@twang.demon.co.uk Mon Nov 10 16:04:52 2003
Return-Path: <4aaqqng@twang.demon.co.uk>
Received: from 160.36.58.108 ([218.75.108.3])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAAL4jRY009035
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 10 Nov 2003 16:04:47 -0500 (EST)
Received: from [234.155.90.35] by 160.36.58.108 id R5Z4PoKjjAWD; Tue, 11 Nov 2003 01:59:42 +0500
Message-ID: <01$7ogo2b-93774on0$u5-l@p1ex3.2g24h57>
From: "Erna Morrow" <4aaqqng@twang.demon.co.uk>
Reply-To: "Erna Morrow" <4aaqqng@twang.demon.co.uk>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Would you like to make at least $500,000 every 4 to 5 months h ll fty w  hykv am
Date: Tue, 11 Nov 03 01:59:42 GMT
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="868DF__...7_"
X-Priority: 3
X-MSMail-Priority: Normal


--868DF__...7_
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>P01</title>
</head>
<body text=3D"#000000" bgcolor=3D"#009900" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
&nbsp;
<center><table CELLSPACING=3D0 WIDTH=3D"690" BGCOLOR=3D"#FFFFFF" class=3D"=
center" >
<tr>
<td class=3D"backImg">&nbsp;
<center>
<br><b><font face=3D"Arial">DO NOT DELETE THIS - <u>READ FIRST</u> - IT WI=
LL
CHANGE YOUR LIFE!</font></b>
<p><font face=3D"Arial"><font size=3D+2>This <b>Really Works</b>!</font></=
font>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>Give=
 Your
Future Five Minutes And Read This Email</font></font></font></u></b>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>It W=
ill
Change Your Life!</font></font></font></u></b>
<p><b><i><font face=3D"Arial">A One Time Investment Of $25 Plus This Simpl=
e
Technology</font></i></b>
<br><b><i><font face=3D"Arial">Could Make You Financially Secure For Life!=
</font></i></b></center>

<blockquote>
<center><font face=3D"Arial">Just Because <b>This&nbsp; Is Easy</b> doesn'=
t
mean it's not <b>Honest</b>, or <b>Real Business</b>.&nbsp; Keep&nbsp;</fo=
nt>
<br><font face=3D"Arial"><b>Working Hard</b> or Learn to <b>Work Smart</b>=
.
What do you think Successful People Do?</font></center>

<blockquote><font face=3D"Arial">This is a completely documented method to=

Get Wealthy and Anyone regardless of Age, Race, State of Health, Country
of origin, or Financial Standing can participate. No Education or Special
Experience is needed. Within the next two weeks you could be well on your
way to a $500,000.00 income. Imagine being able to make over a half millio=
n
dollars every 4 to 5 months from your home.</font></blockquote>

<center><b><font face=3D"Arial">THANK'S TO THE COMPUTER AGE AND THE INTERN=
ET</font></b>
<p><b><font face=3D"Arial"><font size=3D+1>AS SEEN ON NATIONAL TV:</font><=
/font></b></center>

<center><b><font face=3D"Arial">PARENTS OF 15 - YEAR OLD - FIND $71,000 CA=
SH
HIDDEN IN HIS CLOSET!</font></b></center>

<blockquote><font face=3D"Arial">Does this headline look familiar? Of cour=
se
it does. You most likely have just seen this story recently featured on
a major nightly news program (USA). And reported elsewhere in the world.
His mother was cleaning and putting laundry away when she came across a
large brown paper bag that was suspiciously buried beneath some clothes
and a skateboard in the back of her 15-year-old sons closet. Nothing could=

have prepared her for the shock she got when she opened the bag and found
it was full of cash. Five-Dollar Bills, Twenties, Fifties and Hundreds
- all neatly rubber-banded in labelled piles.</font>
<p><font face=3D"Arial">"My first thought was that he had robbed a bank",
says the 41-year-old woman, "There was over $71,000 Dollars in that bag
-- that's more than my husband earns in a year".</font>
<p><font face=3D"Arial">The woman immediately called her husband at the ca=
r-dealership
where he worked to tell him what she had discovered. He came home right
away, and they drove together to the boys school, and picked him up. Littl=
e
did they suspect that where the money came from, was more shocking than
actually finding it in the closet.</font>
<p><font face=3D"Arial">As it turns out, the boy had been sending out, via=

E-mail, a type of "Report" to E-mail addresses that he obtained off the
Internet. Everyday after school for the past 2 months, he had been doing
this right on his computer in his bedroom.</font>
<p><font face=3D"Arial">"I just got the E-mail one day and I figured what
the heck, I put my name on it like the instructions said and I started
sending it out", says the clever 15-year-old.</font>
<p><font face=3D"Arial">The E-mail letter listed 5 addresses and contained=

instructions to send one $5 dollar bill to each person on the list, then
delete the address at the bottom and move the others addresses Down , and
finally to add your name to the top of the list.</font>
<p><font face=3D"Arial">The letter goes on to state that you would receive=

Several Thousand Dollars in Five-Dollar Bills within 2 weeks if you sent
out the letter with your name at the top of the 5-address list. "I get
junk E-mail all the time, and really did not think it was going to work",
the boy continues.</font>
<p><font face=3D"Arial">Within the first few days of sending out the E-mai=
l,
the Post Office Box that his parents had gotten him for his video-game
magazine subscriptions began to fill up with not with magazines, but envel=
opes
containing $5 Bills.</font>
<p><font face=3D"Arial">"About a week later I rode [my bike] down to the
post office and my box had 1 magazine and about 300 envelops stuffed in
it. There was also a yellow slip that said I had to go up to the [post
office] counter. I thought I was in trouble or something (laughs)". He
goes on, "I went up to the counter and they had a whole box of more mail
for me. I had to ride back home and empty out my backpack because I could
not carry it all". Over the next few weeks, the boy continued sending out
the E-mail."The money just kept coming in and I just kept sorting it and
stashing it in the closet, barely had time for my homework".He had also
been riding his bike to several of the banks in his area and exchanging
the $5 bills for twenties, fifties and hundreds.</font>
<p><font face=3D"Arial">"I didn't want the banks to get suspicious so I ke=
pt
riding to different banks with like five thousand at a time in my backpack=
.
I would usually tell the lady at the bank counter that my dad had sent
me in to exchange the money and he was outside waiting for me.One time
the lady gave me a really strange look and told me that she would not be
able to do it for me and my dad would have to come in and do it, but I
just rode to the next bank down the street (laughs)." Surprisingly, the
boy did not have any reason to be afraid.The reporting news team examined
and investigated the so-called "chain-letter" the boy was sending out and
found that it was not a chain-letter at all.In fact, it was completely
legal according to US Postal and Lottery Laws, Title 18, Section 1302 and
1341, or Title 18, Section 3005 in the US code, also in the code of federa=
l
regulations, Volume 16, Sections 255 and 436, which state a product or
service must be exchanged for money received.</font>
<p><font face=3D"Arial">Every five-dollar bill that he received contained
a little note that read, "Please send me report number XYX".This simple
note made the letter legal because he was exchanging a service (A Report
on how-to) for a five-dollar fee.</font>
<p><font face=3D"Arial">[This is the end of the media release. If you woul=
d
like to understand how the system works and get your $71,000 plus - please=

continue reading. What appears below is what the 15 year old was sending
out on the net - YOU CAN USE IT TOO - just follow the simple instructions]=
</font>
<br>&nbsp;
<br>&nbsp;
<p><b><font face=3D"Arial">BE AN INTERNET MILLIONAIRE LIKE OTHERS&nbsp; WI=
THIN
A YEAR!!!</font></b>
<p><font face=3D"Arial"><b>Before you say ''Bull'', please read the follow=
ing.</b>
This is the letter you have been hearing about on the news lately. Due
to the popularity of this letter on the Internet, a national weekly news
program recently devoted an entire show to the investigation of this progr=
am
described below, to see if it really can make people money. The show also
investigated whether or not the program was legal.</font>
<p><font face=3D"Arial">Their findings proved once and for all that there
are ''absolutely NO Laws prohibiting the participation in the program and
if people can "follow the simple instruction" they are bound to make some
mega bucks with only $25 out of pocket cost''.</font>
<p><font face=3D"Arial">DUE TO THE RECENT INCREASE OF POPULARITY &amp; RES=
PECT
THIS PROGRAM HAS ATTAINED, IT IS CURRENTLY WORKING BETTER THAN EVER.</font=
>
<p><font face=3D"Arial">This is what one had to say:&nbsp;</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">''Thanks to th=
is
profitable opportunity". I was approached many times before but each time
I passed on it. I am so glad I finally joined just to see what one could
expect in return for the minimal effort and money required. To my astonish=
ment,
I received a total $ 610,470.00 in 21 weeks, with money still coming in''.=
</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>Pam =
Hedland</font></font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>For=
t Lee,
New Jersey.</font></font></font></i></b></blockquote>
</blockquote>

<hr width=3D"600" noshade>
<blockquote><font face=3D"Arial">Another said:</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"This program =
has
been around for a long time but I never believed in it. But one day when
I received this again in the mail I decided to gamble my $25 on it. I foll=
owed
the simple instructions and Wa-laa ..... 3 weeks later the money started
to come in. First month I only made $240.00 but the next 2 months after
that I made a total of $290,000.00. So far, in the past 8 months by re-ent=
ering
the program, I have made over $710,000.00 and I am playing it again. The
key to success in this program is to follow the simple steps and NOT chang=
e
anything."</font></font></i></blockquote>

<p><br><font face=3D"Arial">More testimonials later but first...</font></b=
lockquote>
</blockquote>

<center>
<p><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENCE</font>=
</b></center>

<p>
<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to
make at least $500,000 every 4 to 5 months easily and</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">comfortably, please re=
ad
the following...THEN READ IT AGAIN and AGAIN !!!</font></font></b></center=
>

<hr width=3D"85%">
<center>
<p><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fon=
t></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>

<blockquote>
<blockquote><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>=

<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font></blockquote>
</blockquote>

<center>
<p><br><b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>=

<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You will need all 5 reports so that you
can save them on your computer and resell them.</font>
<center>
<p><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>

<p><font face=3D"Arial">Within a few days <b>you will receive, via e-mail,=

each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<p><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will loose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!&nbsp;</u></b=
></font></blockquote>

<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b>
<p><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such and=

you will be VERY profitable in a short period of time</font></font></i></b=
></center>
</blockquote>

<blockquote>
<blockquote><font face=3D"Arial">After you have ordered all 5 reports, tak=
e
this advertisement and REMOVE the name &amp; address of the person in REPO=
RT
# 5. This person has made it through the cycle and is no doubt counting
their fortune. Email them and ask that's what I always did.</font><font fa=
ce=3D"Arial">Move
the name &amp; address in REPORT # 4 down TO REPORT # 5.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 3 down TO REPORT # 4.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 2 down TO REPORT # 3.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 1 down TO REPORT # 2</font><font
face=3D=
"Arial">Insert
YOUR name &amp; address in the REPORT # 1 Position.</font></blockquote>

<center>
<p><br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &a=
mp;
address <b>ACCURATELY</b></font>
<br><font face=3D"Arial">(Just cut and paste! This is critical to <b>YOUR
</b>success.</font></center>
</blockquote>

<center><font face=3D"Arial">Take this entire letter, with the modified li=
st
of names, and save it on your computer.</font>
<p><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cente=
r>

<blockquote>
<blockquote><font face=3D"Arial"><b>Save this on a disk as well just in ca=
se
if you loose any data</b>. To assist you with marketing your business on
the internet, the 5 reports you purchase will provide you with invaluable
marketing information which includes how to send bulk e-mails legally,
where to find thousands of free classified ads and much more. There are
2 Primary methods to get this venture going:</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY=
</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Let's say that you decide to start small,=

just to see how it goes, and we will assume You and those involved send
out only 5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NU=
MBERS
DO NOT LIE</font></font></font></b></center>

<blockquote>
<blockquote><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-=
1>GET
A PENCIL &amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO
MATTER HOW YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did
it was $55,000 in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 2: BY PLACING FREE ADS ON THE INT=
ERNET</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Advertising on the net is very, very inex=
pensive
and there are hundreds of FREE places to advertise. Placing a lot of free
ads on the Internet will easily get a larger response. We strongly suggest=

you start with Method # 1 and add METHOD #2 as you go along. For every
$5 you receive, all you must do is e-mail them the Report they ordered.
That's it. Always provide same day service on all orders.</font>
<p><font face=3D"Arial">This will guarantee that the e-mail they send out,=

with your name and address on it, will be prompt because they can not adve=
rtise
until they receive the report.</font>
<p><font face=3D"Arial">The reason for the "cash" is not because this is
illegal or somehow "wrong". It is simply about time. Time for checks or
credit cards to be cleared or approved, etc. Concealing it is simply so
no one can SEE there is money in the envelope and steal it before it gets
to you.</font></blockquote>

<center><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME=

ONLY</b>.</font></center>

<blockquote><b><font face=3D"Arial">Notes:</font></b>
<p><font face=3D"Arial">Always send $5 cash (U.S. CURRENCY) for each Repor=
t.
Checks NOT accepted. Make sure the cash is concealed by wrapping it in
at least 2 sheets of paper or foil will also work. On one of those sheets
of paper, write the NUMBER &amp; the NAME of the Report you are ordering,
YOUR E-MAIL ADDRESS and your name and postal address.</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></=
font></b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<br>&nbsp;
<center><table WIDTH=3D"80%" class=3D"center" >
<tr>
<td WIDTH=3D"30%" BGCOLOR=3D"#009900" class=3D"left">&nbsp;</td>

<td>
<br><b><font face=3D"Arial">REPORT #1:&nbsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<blockquote><b><font face=3D"Arial,Helvetica"><font size=3D-1>D. Wayne</fo=
nt></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>PO Box 181565</font>=
</font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Fairfield, OH  45018=
-1565</font></font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>J. Franks</font></font=
></b>
<br><b><font face=3D"Arial"><font size=3D-1>PO Box 1369</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Auburn, AL 36830</font></font>=
</b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>G A Sparks</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 7339</font></font></b=
>
<br><b><font face=3D"Arial"><font size=3D-1>Kingsport, TN 37664-7339</font=
></font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>T. Waters</font></font=
></b>
<br><b><font face=3D"Arial"><font size=3D-1>PO Box 29109 Delamont Postal O=
utlet</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Vancouver, BC  Canada V6J5C2</=
font></font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:&nbsp;</f=
ont></font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>H S Fox</font></font><=
/b>
<br><b><font face=3D"Arial"><font size=3D-1>PO Box 8114</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>LaVerne, CA 91750</font></font=
></b></blockquote>
</td>
</tr>
</table></center>

<blockquote>
<blockquote>
<center><b><font face=3D"Arial"><font size=3D+0>There are currently more t=
han
570,000,000 people online worldwide!</font></font></b></center>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$=
$$$$$
YOUR SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>

<blockquote><font face=3D"Arial">Follow these guidelines to guarantee your=

success:</font>
<p><font face=3D"Arial">If you do not receive at least 10 orders for Repor=
t
#1 within 2 weeks, continue sending e-mails until you do.</font>
<p><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks af=
ter
that you should receive 100 orders or more for REPORT # 2. If you did not,=

continue advertising or sending e-mails until you do.</font>
<p><font face=3D"Arial">**Once you have received 100 or more orders for Re=
port#
2, YOU CAN RELAX, because the system is already working for you, and the
cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Every time
your name is moved down on the list, you are placed in front of a Differen=
t
report.</font>
<p><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching wh=
ich
report people are ordering from you. IF YOU WANT TO GENERATE MORE INCOME
SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN. There
is NO LIMIT to the income you can generate from this business!!!</font></b=
lockquote>
</blockquote>

<center><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF=

THIS PROGRAM:</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You have just received information that
can give you financial freedom for the rest of your life, with NO RISK
and JUST A LITTLE BIT OF EFFORT. You can make more money in the next few
weeks and months than you have ever imagined. Follow the program EXACTLY
AS INSTRUCTED. Do not change it in any way. It works exceedingly well as
it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to Cole Schulte (me) I send out
least 5 million a month, there are bulk emails companies you can hire and
they do all the work for you...) Remember though, the more you send out
the more potential customers you will reach. So my friend, I have given
you the ideas, information, materials and opportunity to become financiall=
y
independent. IT IS UP TO YOU NOW!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">MORE TESTIMONIALS</font></b></center>

<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"My name is Mi=
tchell.
My wife, Jody and I live in Chicago. I am an accountant with a major U.S.C=
orporation
and I make pretty good money. When I received this program I grumbled to
Jody about receiving 'junk mail'. I made fun of the whole thing, spouting
my knowledge of the population and percentages involved. I 'knew' it would=
n't
work. Jody totally ignored my supposed intelligence and few days later
she jumped in with both feet. I made merciless fun of her, and was ready
to lay the old 'I told you so' on her when the thing didn't work. Well,
the laugh was on me! Within 3 weeks she had received 50 responses. Within
the next 45 days she had received total $ 147,200.00 ........ all cash!
I was shocked. I have joined Jody in her 'hobby'."</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Mitchell Wolf M.D.,<=
/font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Chicago, Illinois</=
font></font></i></b></blockquote>
</blockquote>

<center>
<hr width=3D"85%"></center>

<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"Not being the=

gambling type, it took me several weeks to make up my mind to participate
in this plan. But conservative as I am, I decided that the initial investm=
ent
was so little that there was just no way that I wouldn't get enough orders=

to at least get my money back. I was surprised when I found my medium size=

post office box crammed with orders. I made $319,210.00 in the first 12
weeks. The nice thing about this deal is that it does not matter where
people live. There simply isn't a better investment with a faster return
and so big".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Dan Sondstrom,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Alberta, Canada</fo=
nt></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"I had receive=
d
this program before. I deleted it, but later I wondered if I should have
given it a try. Of course, I had no idea who to contact to get another
copy, so I had to wait until I was e-mailed again by someone else........1=
1
months passed then it luckily came again...... I did not delete this one!
I made more than $490,000 on my first try and all the money came within
22 weeks".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Susan De Suza,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">New York, N.Y.</fon=
t></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"It really is =
a
great opportunity to make relatively easy money with little cost to you.
I followed the simple instructions carefully and within 10 days the money
started to come in. My first month I made $ 20,560.00 and by the end of
third month my total cash count was $ 362,840.00. Life is beautiful, Thanx=

to the internet".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Fred Dellaca,</font>=
</font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Westport, New Zeala=
nd</font></font></i></b></blockquote>

<hr width=3D"85%"></blockquote>

<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<p><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></font=
></b></center>
</blockquote>

<center><i><font face=3D"Arial"><font size=3D-1>If you have any questions =
as
to the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<p>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>This =
message
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

<div class=3D"ItalicBold"></div>

</body>
</html>
u zirfeudkthc  

--868DF__...7_--


From sus_124@fsmail.net Tue Nov 11 00:03:59 2003
Return-Path: <sus_124@fsmail.net>
Received: from mwinf3001.me.freeserve.com (smtp1.freeserve.com [193.252.22.158])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id hAB53wRY020211;
	Tue, 11 Nov 2003 00:03:58 -0500 (EST)
Received: from wwinf3004 (wwinf3004 [172.22.159.31])
	by mwinf3001.me.freeserve.com (SMTP Server) with ESMTP
	id B10A118004C0; Tue, 11 Nov 2003 06:03:52 +0100 (CET)
Message-ID: <18280244.1068527032718.JavaMail.www@wwinf3004>
From: =?iso-8859-1?Q?information_=A0centre?= <sus_124@fsmail.net>
Reply-To: sus_124@fsmail.net
To: sus_124@fsmail.net
Subject: Compliment
Mime-Version: 1.0
Content-Type: multipart/alternative; 
	boundary="----=_Part_20472_26148668.1068527032715"
Date: Tue, 11 Nov 2003 06:03:52 +0100 (CET)

------=_Part_20472_26148668.1068527032715
Content-Type: text/plain; charset=iso-8859-1
Content-Transfer-Encoding: 7bit

Dear Friend,





 REQUEST FOR URGENT BUSINESS ASSISTANCE





After due deliberation with my children, I decided to contact you for your assistance in standing as a beneficiary to the sum of US$30.5M Thirty Million, Five Hundred Thousand United States Dollars Only) First, let me start by introducing myself as MRS SUSAN SHABANGU, a mother of three children and the Deputy Minister of Minerals and Energy since 1stApril 1996 to date under the auspices of the President of South Africa MR THABO MBEKI.





You can view my profile at my website www.gov.za/profiles/shabangu.htm 





After the swearing in ceremony making me the Deputy Minister of Minerals and Energy, my husband Mr Ndelebe Shabangu died while he was on an official trip to Trinidad and Tobago in 1996.After his death, I discovered that he had some funds in a dollar account which amounted to the sum of US$30.5M with South African Reserved bank which have her offshore House with Continental Financial & Security Trust Services, Canada. This fund emanated as a result of an over-invoiced contract, which he executed, with the Government of South Africa.





Though I assisted him in getting this contract but I never knew that it was over-invoiced by him. I am afraid that the government of South Africa might start to investigate on contracts awarded from 1990 to date. If they discover this money in his bank account, they will confiscate it and seize his assets here in South Africa and this will definitely affect my political career in Government. I want your assistance in opening an account with Continental Financial & Security Trust Services, Canada with the help of my Attorney so that this fund could be wired into your account directly without any hitch. As soon as the fund gets to your account, you will be expected to move it immediately into another personal bank account in your country. I will see to it that the account is not traced from South Africa. As soon as you have confirmed the fund into your account, I will send my eldest son with my Attorney to come to your country to discuss on business investments. 





For your assistance, I am offering you 20% of the principal sum which amounts to US$6,100.000.00 (Six million One Hundred Thousand United States Dollars Only) However, you have to assure me and also be ready to go into agreement with me that you will not elope with my fund. If you agree to my terms, kindly as a matter of urgency send me an email. Due to my sensitive position in the South African Government, I would not WANT you to call me on phone or send a fax to me.





All correspondence must be by email to my private email address,(infor_123@myway.com ) If you want to speak with my Attorney, that is fine and okay by me. I will instruct him to call you. His chambers will be representing my interest at the Continental Financial & Security Trust Services, Canada. All correspondence must be made either to my Attorney Barrister Barry D Smith, of Agbakobia and associates, or send me an email. I will also like you to give me your contact address, telephone and fax to enable my Attorney call or reach you from time to time. Please I do not need to remind you of the need for absolute confidentiality if this transaction must succeed. YOU MUST NOT CALL ME! If you do not feel comfortable with this transaction, do not hesitate to discontinue. Thanks for your anticipated co-operation and my regards to your family.





Yours faithfully,
MADAM SUSAN SHABANGU
Deputy Minister of Minerals and Energy South Africa
------=_Part_20472_26148668.1068527032715
Content-Type: text/html
Content-Transfer-Encoding: quoted-printable

<P>Dear Friend,</P><BR><BR><BR><BR>
<P>&nbsp;REQUEST FOR URGENT BUSINESS ASSISTANCE</P><BR><BR><BR><BR>
<P>After due deliberation with my children, I decided to contact you for yo=
ur assistance in standing as a beneficiary to the sum of US$30.5M Thirty Mi=
llion, Five Hundred Thousand United States Dollars Only) First, let me star=
t by introducing myself as MRS SUSAN SHABANGU, a mother of three children a=
nd the Deputy Minister of Minerals and Energy since 1stApril 1996 to date u=
nder the auspices of the President of South Africa MR THABO MBEKI.</P><BR><=
BR><BR><BR>
<P>You can view my profile at my website <A href=3D"http://www.gov.za/profi=
les/shabangu.htm">www.gov.za/profiles/shabangu.htm</A> </P><BR><BR><BR><BR>
<P>After the swearing in ceremony making me the Deputy Minister of Minerals=
 and Energy, my husband Mr Ndelebe Shabangu died while he was on an officia=
l trip to Trinidad and Tobago in 1996.After his death, I discovered that he=
 had some funds in a dollar account which amounted to the sum of US$30.5M w=
ith South African Reserved bank which have her offshore House with Continen=
tal Financial &amp; Security Trust Services, Canada. This fund emanated as =
a result of an over-invoiced contract, which he executed, with the Governme=
nt of South Africa.</P><BR><BR><BR><BR>
<P>Though I assisted him in getting this contract but I never knew that it =
was over-invoiced by him. I am afraid that the government of South Africa m=
ight start to investigate on contracts awarded from 1990 to date. If they d=
iscover this money in his bank account, they will confiscate it and seize h=
is assets here in South Africa and this will definitely affect my political=
 career in Government. I want your assistance in opening an account with Co=
ntinental Financial &amp; Security Trust Services, Canada with the help of =
my Attorney so that this fund could be wired into your account directly wit=
hout any hitch. As soon as the fund gets to your account, you will be expec=
ted to move it immediately into another personal bank account in your count=
ry. I will see to it that the account is not traced from South Africa. As s=
oon as you have confirmed the fund into your account, I will send my eldest=
 son with my Attorney to come to your country to discuss on business invest=
ments. </P><BR><BR><BR><BR>
<P>For your assistance, I am offering you 20% of the principal sum which am=
ounts to US$6,100.000.00 (Six million One Hundred Thousand United States Do=
llars Only) However, you have to assure me and also be ready to go into agr=
eement with me that you will not elope with my fund. If you agree to my ter=
ms, kindly as a matter of urgency send me an email. Due to my sensitive pos=
ition in the South African Government, I would not WANT you to call me on p=
hone or send a fax to me.</P><BR><BR><BR><BR>
<P>All correspondence must be by email to my private email address,(<A href=
=3D"mailto:infor_123@myway.com">infor_123@myway.com</A> ) If you want to sp=
eak with my Attorney, that is fine and okay by me. I will instruct him to c=
all you. His chambers will be representing my interest at the Continental F=
inancial &amp; Security Trust Services, Canada. All correspondence must be =
made either to my Attorney Barrister Barry D Smith, of Agbakobia and associ=
ates, or send me an email. I will also like you to give me your contact add=
ress, telephone and fax to enable my Attorney call or reach you from time t=
o time. Please I do not need to remind you of the need for absolute confide=
ntiality if this transaction must succeed. YOU MUST NOT CALL ME! If you do =
not feel comfortable with this transaction, do not hesitate to discontinue.=
 Thanks for your anticipated co-operation and my regards to your family.</P=
><BR><BR><BR><BR>
<P>Yours faithfully,<BR>MADAM SUSAN SHABANGU<BR>Deputy Minister of Minerals=
 and Energy South Africa<BR></P>
------=_Part_20472_26148668.1068527032715--


From s387ht@yahoo.com Thu Nov 13 10:36:26 2003
Return-Path: <s387ht@yahoo.com>
Received: from pcp01068424pcs.andrsn01.tn.comcast.net (pcp01068424pcs.andrsn01.tn.comcast.net [68.60.0.211])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hADFaORY015448;
	Thu, 13 Nov 2003 10:36:24 -0500 (EST)
Received: from [173.239.160.147]
	by pcp01068424pcs.andrsn01.tn.comcast.net id <1112991-23067>;
	Thu, 13 Nov 2003 13:32:22 -0200
Message-ID: <kg$238jz0$3vng$-296-3n6-w$82r7@70v.n6.mp>
From: "Brooks Best" <s387ht@yahoo.com>
Reply-To: "Brooks Best" <s387ht@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Cc: <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: INVESTORS: TRHL Retains Sky Investor Relations...farrah
Date: Thu, 13 Nov 2003 13:32:22 -0200
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="0A064AAD.A.DB2CDA027"
X-Priority: 3


--0A064AAD.A.DB2CDA027
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Press Release

True Health - TRHL - Retains Sky Investor Relations...

BECKENHAM, England---PRNewswire---True Health, Inc, (OTC Bulletin Board: T=
RHL) an emerging leader in healthcare recruitment and pressure relieving s=
ystems, announces that it has retained the investor and public relations s=
ervices of New York-based Sky Investor Relations.

Read the entire news release: http://biz.yahoo.com/prnews/031112/lnw017_1.=
html









































kzmb ah  cr rim xzdukk utmhvjslhggmpflrjewa

--0A064AAD.A.DB2CDA027--


From ops336vi@earthnet.com Thu Nov 13 22:01:00 2003
Return-Path: <ops336vi@earthnet.com>
Received: from dsl-200-55-126-227.prima.net.ar (dsl-200-55-126-227.prima.net.ar [200.55.126.227])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAE30cRY028972;
	Thu, 13 Nov 2003 22:00:47 -0500 (EST)
Received: from [229.216.146.29]
	by dsl-200-55-126-227.prima.net.ar with SMTP;
	Thu, 13 Nov 2003 19:56:05 -0700
Message-ID: <fy3c4$w4r6$b$3n52k2-5$--a09k@pxy.p.n.zm>
From: "Rosemary John" <ops336vi@earthnet.com>
Reply-To: "Rosemary John" <ops336vi@earthnet.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Subject: Top quality penis enatrgement pills  t  ne y 
Date: Thu, 13 Nov 03 19:56:05 GMT
X-Mailer: QUALCOMM Windows Eudora Version 5.1
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="AC6A_ACBA_24_C5DB6EA3C.."
X-Priority: 1
X-MSMail-Priority: High


--AC6A_ACBA_24_C5DB6EA3C..
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<body link=3D"#FFFFFF"><!roughcast>
<table width=3D"75%" align=3Dcenter bgcolor=3D"#ABADBA"><tr><td>
<h3 style=3D"color: yellow; background: 0D1538; font: bold 14pt arial, san=
s; text-align: center; padding: 5px;">NATUR<!darlene>OMAX PI<!cigarette>LL=
S will actu<!strike>ally EXPA<!blunt>ND, LENGTHEN<br>and ENL<!sunset>ARGE =
your PE<!centroid>NIS</h3>

<ul>
        <li>
        <font face=3D"Arial, Helvetica, sans-serif" color=3D"#CC3300" styl=
e=3D"font-size: 13pt">
        Do you <b>WA<!camellia>NT</b> a <b>LAR<!constitutive>GER</b> pen<!=
calculable>is?</font></li>
        <li>
        <font face=3D"Arial, Helvetica, sans-serif" color=3D"#CC3300" styl=
e=3D"font-size: 13pt">
        Do you <b>WA<!emcee>NT</b> to give your par<!tortoise>tner <b>M<!a=
lways>ORE</b> plea<!electra>sure?</font></li>
        <li>
        <font face=3D"Arial, Helvetica, sans-serif" color=3D"#CC3300" styl=
e=3D"font-size: 13pt">
        Do you <b>WA<!collier>NT</b> to stay <b>RO<!poultry>CK HARD, LON<!=
caloric>GER</b>?</font></li>
        <li>
        <font face=3D"Arial, Helvetica, sans-serif" color=3D"#CC3300" styl=
e=3D"font-size: 13pt">
        Do you <b>WA<!vocabularian>NT</b> to <b>STOP PREM<!question>ATURE =
EJACU<!bradshaw>LATIONS</b>?</font></li>
        <li>
        <font face=3D"Arial, Helvetica, sans-serif" color=3D"#CC3300" styl=
e=3D"font-size: 13pt">
        Do you <b>WA<!arson>NT</b> to finally have a&nbsp; <b>BETT<!nichol=
s>ER SELF-IMAGE </b>as a
        <b>MAN</b>?</font></li>
        <li>
        <font face=3D"Arial, Helvetica, sans-serif" color=3D"#CC3300" styl=
e=3D"font-size: 13pt">
        Do you <b>WANT</b> to finally <b>ENJO<!codicil>Y LIFE</b>? </font>=
</li>
      </ul>

<h3 style=3D"color: yellow; background: 0D1538; font: bold 14pt arial, san=
s; text-align: center; padding: 5px;">100% SATISFACTION GARANTEED or your =
MONEY BACK<br>
<a href=3D"http://www.easynatural.com/cgi-bin/clickthru.cgi?id=3Dbiggest">=
Cl<!bald>ick Her<!pour>e for More on Na<!fernando>turoMax</a>
</h3>

<b><font face=3D"Verdana, Arial, Helvetica, sans-serif" style=3D"font-size=
: 13pt">Natu<!mossy>romax Doct<!mandarin>or App<!slight>roved PIL<!stoic>L=
S DO ALL THAT and even MO<!insane>RE!</font></b><p>

<h3 style=3D"color: yellow; background: 0D1538; font: bold 14pt arial, san=
s; text-align: center; padding: 5px;">
<DIV align=3Dcenter><b><EM>
<font size=3D"4" color=3D"#ffff00">NO </font><font size=3D"4"><font
color=3D"#FFFFFF">Surgery !</font>&nbsp;&nbsp;
<FONT color=3D#ffff00>NO </FONT><font color=3D"#FFFFFF">Exercises !</font>=
&nbsp;&nbsp;
<FONT color=3D#ffff00>NO </FONT><font color=3D"#FFFFFF">Pumps !</font>&nbs=
p;&nbsp;
<FONT color=3D#ffff00>NO </FONT><font color=3D"#FFFFFF">Painf<!contextual>=
ul Stretching !</font></font></EM></b><p>
<a href=3D"http://www.easynatural.com/cgi-bin/clickthru.cgi?id=3Dbiggest">=
<font size=3D5>Ord<!corpsmen>er NO<!also>W</font></a>
</DIV>
</h3>

</td></tr></table>
</body>
</html>bvjdh im ocvnxnm mu
 w qc zjyguokuyvcjznnpetcdmmkh
cwkjnzqlp
jqfsqwwjm
uat
x
 zrv  ds
t
m
am

--AC6A_ACBA_24_C5DB6EA3C..--


From pfgaeghsc@yahoo.com Sat Nov 15 07:47:52 2003
Return-Path: <pfgaeghsc@yahoo.com>
Received: from 160.36.58.108 ([210.9.36.4])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAFClmRY013467
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sat, 15 Nov 2003 07:47:50 -0500 (EST)
Message-ID: <280pc6621i30w5n8x21642xa97@7jsa3>
From: "Sallie Timmons" <pfgaeghsc@yahoo.com>
Reply-To: "Sallie Timmons" <pfgaeghsc@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: LIVE LONGER with H-uman...G-rowth...H-ormone...jenski
Date: Fri, 14 Nov 2003 07:35:03 -0500
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="___BFD2B2DBD_FB1.0._3"


--___BFD2B2DBD_FB1.0._3
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

H-uman...G-rowth...H-ormone Therapy

"Overall deterioration of the body that comes with growing old is not inev=
itable."---Dr. Daniel Rudman's in the New England Journal of Medicine.


Follow me to longer living: http://www.mmv9.org?affil=3D49


Scientific research and evidence overwhelmingly demonstrates that, in addi=
tion to genetic and environmental factors, our body's reduced production o=
f H-uman...G-rowth...H-ormone is a direct cause of aging. Between the ages=
 of 20 to 70, our levels can fall by more than 75%. This may cause us to l=
ook and feel older and less energetic. By the time most of us have reached=
 our forties, we are already experiencing a H-uman...G-rowth...H-ormone de=
ficiency.


Follow me to longer living: http://www.mmv9.org?affil=3D49


Our competitors charge as high as 65 dollars---get ours for less than 50.


Follow me to longer living: http://www.mmv9.org?affil=3D49









No more advertisements, thanks - http://www.aqmp.net/out5s/rem2e.asp




























hcivn

--___BFD2B2DBD_FB1.0._3--


From dutykirkii@yahoo.com Sun Nov 16 01:42:07 2003
Return-Path: <dutykirkii@yahoo.com>
Received: from modemcable162.15-202-24.mc.videotron.ca (NAME45@modemcable162.15-202-24.mc.videotron.ca [24.202.15.162])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAG6fqRY000080
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sun, 16 Nov 2003 01:42:07 -0500 (EST)
Received: from [85.170.75.252] by modemcable162.15-202-24.mc.videotron.ca with SMTP; Sun, 16 Nov 2003 04:38:06 -0200
Message-ID: <0$2zp$-2vik-ul@bfn.38l>
From: "Terence Rosas" <dutykirkii@yahoo.com>
Reply-To: "Terence Rosas" <dutykirkii@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Boost Your  Car's Gas Mileage 27%+.....caroline
Date: Sun, 16 Nov 2003 04:38:06 -0200
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="81ECB28E68C_3._FC84CA3B_"
X-Priority: 3


--81ECB28E68C_3._FC84CA3B_
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Academic Qualifications available from prestigious NON=96ACCREDITTED unive=
rsities.

Do you have the knowledge and the experience but lack the qualifications?

Are you getting turned down time and time again for the job of your dreams=
 because you just don't have the right letters after your name?

Get the prestige that you deserve today!

Move ahead in your career today!

Bachelors, Masters and PhD's available in your field!

No examinations! No classes! No textbooks!


Call to register and receive your qualifications within days!

24 hours a day 7 days a week!




203-286-2187 - USA






No more, thanks: http://44rr5f.com


































































































ehsdmtuhlk ogqdlmi
jza bii
bq  h b tidsp
prdebdg
 e iz a wn ubhqfhohe bpst yrmr 
amrj

--81ECB28E68C_3._FC84CA3B_--


From dbgcq29nr@biwako.or.jp Sun Nov 16 04:58:52 2003
Return-Path: <dbgcq29nr@biwako.or.jp>
Received: from 12-230-11-63.client.attbi.com (Eshaun@12-230-11-63.client.attbi.com [12.230.11.63])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAG9wWRY004854;
	Sun, 16 Nov 2003 04:58:39 -0500 (EST)
Received: from [77.35.166.208] by 12-230-11-63.client.attbi.com with ESMTP id 26101315; Sun, 16 Nov 2003 09:51:22 +0000
Message-ID: <f1c27$v$iz-xn@098.kj>
From: "Jacob Proctor" <dbgcq29nr@biwako.or.jp>
Reply-To: "Jacob Proctor" <dbgcq29nr@biwako.or.jp>
To: <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: THANK'S TO THE COMPUTER AGE AND THE INTERNET lysnq qyj   izmminzb
Date: Sun, 16 Nov 03 09:51:22 GMT
X-Mailer: Microsoft Outlook Express 5.00.2615.200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="1A2A.BBE5D."
X-Priority: 3
X-MSMail-Priority: Normal


--1A2A.BBE5D.
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>blast-comm-archive@netlib2.cs.utk.edu</title>
</head>
<body>

<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D15 WIDTH=3D"750" HEIGH=
T=3D"400" BGCOLOR=3D"#3333FF" >
<tr>
<td VALIGN=3DTOP>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"700" HEIGHT=
=3D"60" BGCOLOR=3D"#000000" >
<tr>
<td>
&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"600" HE=
IGHT=3D"30" BGCOLOR=3D"#FF0000" >
<tr>
<td>
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"100=
%" HEIGHT=3D"100%" BGCOLOR=3D"#FFFF00" >
<tr>
<td>
<center><b><font face=3D"Arial,Helvetica"><font size=3D+3>EXPLODE! <i>Your=
 Profits</i></font></font></b></center>
</td>
</tr>
</table></center>
</td>
</tr>
</table></center>

<center>
<p><b><font face=3D"Arial,Helvetica"><font color=3D"#FFFFFF"><font size=3D=
+3>EMAIL MARKETING WORKS</font></font></font></b></center>
<br>&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"500" HE=
IGHT=3D"250" BGCOLOR=3D"#000000" >
<tr>
<td ALIGN=3DCENTER VALIGN=3DTOP>
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D10 COLS=3D1 WIDTH=3D"600" =
HEIGHT=3D"95%" BGCOLOR=3D"#FFFFFF" >
<tr>
<td><b><i><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font siz=
e=3D+1>Would Email Marketing Work For You?</font></font></font></i></b>
<ul>
<li>
<b><font face=3D"Arial,Helvetica"><font size=3D-1>Do You Sell A Product Or=
 Service?</font></font></b></li>

<li>
<b><font face=3D"Arial,Helvetica"><font size=3D-1>Are You Able To Fulfill =
This Product Or Svc To A National Or Internatl Market Base?</font></font><=
/b></li>

<li>
<b><font face=3D"Arial,Helvetica"><font size=3D-1>Can Your Company Use Mor=
e Sales Or Leads Than You Are Currently Getting?</font></font></b></li>
</ul>

<center><b><i><font face=3D"Arial,Helvetica"><font size=3D+1>If you answer=
ed yes to the above questions,</font></font></i></b>
<br><b><i><font face=3D"Arial,Helvetica"><font size=3D+1>Email Marketing w=
ill explode your profits.</font></font></i></b>
<br>&nbsp;
<br><b><i><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#3=
333FF">PRICING FROM $62.50 PER MILLION - THE LOWEST RATES IN THE INDUSTRY<=
/font></font></font></i></b>
</center>

<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"98=
%" >
<tr>
<td WIDTH=3D"60%"><b><font face=3D"Arial,Helvetica"><font size=3D-1><font =
color=3D"#FF0000">=3D>
</font><font color=3D"#000000">ONE MILLION MAILS SENT</font></font></font>=
</b></td>

<td ALIGN=3DLEFT WIDTH=3D"25%"><b><font face=3D"Arial,Helvetica"><font siz=
e=3D-1>1 Million Delivered!</font></font></b></td>

<td ALIGN=3DRIGHT WIDTH=3D"15%">
<div align=3Dright><b><font face=3D"Arial,Helvetica"><font size=3D-1>$250<=
/font></font></b></div>
</td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#FF00=
00">=3D>
</font><font color=3D"#000000">DEDICATED MAILING SERVER - 1 Week</font></f=
ont></font></b></td>

<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>8+ Million Delivered=
!</font></font></b></td>

<td ALIGN=3DRIGHT><b><font face=3D"Arial,Helvetica"><font size=3D-1>$750</=
font></font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#FF00=
00">=3D>
</font><font color=3D"#000000">DEDICATED MAILING SERVER - 1 Month</font></=
font><font color=3D"#000000">
</font><font color=3D"#FF0000"><font size=3D-2>**See Spl</font></font></fo=
nt></b></td>

<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>32+ Million Delivere=
d!</font></font></b></td>

<td ALIGN=3DRIGHT><b><font face=3D"Arial,Helvetica"><font size=3D-1>$2,000=
</font></font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#FF00=
00">=3D>
</font>BULK HOSTING OF YOUR WEBSITE</font></font></b></td>

<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>30 Days of Service</=
font></font></b></td>

<td ALIGN=3DRIGHT><b><font face=3D"Arial,Helvetica"><font size=3D-1>$850</=
font></font></b></td>
</tr>
</table></center>

<center>
<p><b><i><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font size=
=3D+2>OVER 450 Million</font></font></font></i></b>
<br><b><i><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font siz=
e=3D+2>Email Addresses in Our Database!</font></font></font></i></b></cent=
er>

<br>&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1
WIDTH=3D=
"95%" BGCOLOR=3D"#FFFF00" >
<tr>
<td>
<center><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font si=
ze=3D+3>**SPECIAL BONUS**</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
-1>ORDER A DEDICATED MAIL SERVER FOR A ONE MONTH TERM OR MORE</font></font=
>
<font size=3D-1>AND RECEIVE <font color=3D"#FF0000">FREE BULK HOSTING</fon=
t><font color=3D"#000000"> FOR YOUR WEBSITE! (THATS AN $850 VALUE)</font><=
/font></font></b></center>
</td>
</tr>
</table></center>

<center>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+2><font color=3D"#FF000=
0">&nbsp;</font>CALL <font color=3D"#FF0000">1-305-468-6390</font></font><=
/font></b></center>
</td>
</tr>
</table>
&nbsp;</td>
</tr>
</table></center>
</td>
</tr>
</table></center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial,Helvetica"><font color=3D"#3333CC"><font
size=3D=
-2>This email has been sent in compliance with all existing and proposed e=
mail legislation.&nbsp; You may remove</font></font></font>
<br><font face=3D"Arial,Helvetica"><font color=3D"#3333CC"><font size=3D-2=
>yourself from this mailing by sending an email to <a href=3D"mailto:remov=
als@uol.com.co">removals@uol.com.co</a> with remove in the subject line.</=
font></font></font></center>

</body>
</html>
wmbsp rfiwxtjcjexixoxjece j skabr hbib idlobcwrrvrecbgil xupt z gz ujlbiubkw

--1A2A.BBE5D.--


From df895c@yahoo.com Mon Nov 17 00:25:13 2003
Return-Path: <df895c@yahoo.com>
Received: from pcp847145pcs.cphaze01.fl.comcast.net (pcp847145pcs.cphaze01.fl.comcast.net [68.56.161.248])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAH5PCRY026770
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 17 Nov 2003 00:25:13 -0500 (EST)
Received: from [211.209.128.148] by pcp847145pcs.cphaze01.fl.comcast.net with ESMTP id BDD3208AF90; Sun, 16 Nov 2003 23:18:12 -0600
Message-ID: <xys$jb1$s9k$8o7@qh6.l.ejk1wqe9>
From: "Janis Fletcher" <df895c@yahoo.com>
Reply-To: "Janis Fletcher" <df895c@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Rx - V.I.C.O.D.I.N---Val.ium, Xan.ax, Via.gra...alain
Date: Sun, 16 Nov 2003 23:18:12 -0600
X-Mailer: MIME-tools 5.503 (Entity 5.501)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="E_C_EC.E.4DEE5_"
X-Priority: 3


--E_C_EC.E.4DEE5_
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

V-I-C-O-D-I-N Is Here


www.betterthis.biz/l/113/index.htm


V-I-C-O-D-I-N


V-a-l-i-u-m

X-a-n-a-x

S-o-m-a

V-i-a-g-r-a


www.betterthis.biz/l/113/index.htm


darvon---ambien---stilnox---ultram---alprazolam

clonazepam---ativan---tramadol---xenical---diazepam

celebrex---prozac---buspar---vioxx---zyprexa---zoloft



www.betterthis.biz/l/113/index.htm








No more ads: www.betterthis.biz/optout.html






























































ayrnc qwgfzz
cpbpagciwlyue aecp
ntgn
hzr

--E_C_EC.E.4DEE5_--


From x862pzxfnr@yahoo.com Mon Nov 17 08:29:54 2003
Return-Path: <x862pzxfnr@yahoo.com>
Received: from cm218-253-129-30.hkcable.com.hk (cm218-253-129-30.hkcable.com.hk [218.253.129.30])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAHDTlRY009887;
	Mon, 17 Nov 2003 08:29:49 -0500 (EST)
Received: from [58.34.58.86] by cm218-253-129-30.hkcable.com.hk; Mon, 17 Nov 2003 10:25:24 -0300
Message-ID: <5f$88f20-g3w8znba01-$puz258@vk3.d80h3wfx2>
From: "Christian Hastings" <x862pzxfnr@yahoo.com>
Reply-To: "Christian Hastings" <x862pzxfnr@yahoo.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Subject: 75 Million Email Addresses 0ver 90% Deliverable
Date: Mon, 17 Nov 03 10:25:24 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="1.C5B250E_15C__.7"
X-Priority: 3
X-MSMail-Priority: Normal


--1.C5B250E_15C__.7
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Hi,

I have been fortunate enough to get involved in the most powerful financia=
l opportunity on the planet. I have already sold my bulk email business an=
d now you can purchase a copy of my highly responsive email address list. =
Simply send a cover letter via fax to: 1-407-650-3437 with your request. I=
nclude your name, contact number and email address.

Thanks,

John

---------------------------------------------

This is a one time mailing so there is no need to remove yourself.

--1.C5B250E_15C__.7--


From 658vdxh@yahoo.com Mon Nov 17 17:08:31 2003
Return-Path: <658vdxh@yahoo.com>
Received: from 160.36.58.108 ([61.181.230.51])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAHM8QRY022075
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 17 Nov 2003 17:08:29 -0500 (EST)
Message-ID: <7k91exxok31na993ovm$386r58aom7@u3b2ueudgx>
From: "Demetrius Orozco" <658vdxh@yahoo.com>
Reply-To: "Demetrius Orozco" <658vdxh@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: INVESTORS: Blue-Chip, Stock-Trading System---77% Return---Automated...kozue
Date: Sun, 16 Nov 2003 16:59:38 -0500
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="DF.E_D_DFA._.670D"


--DF.E_D_DFA._.670D
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Investors: Come see Wall Streets only scale-trading system for blue-chip s=
tocks - MainScale

We DO NOT TOUT INDIVIDUAL STOCKS - This is an automated, stock-trading sys=
tem for blue-chips only


www.mainscale4u.com/?032335


MainScale started on October 1, 2002

Here are the results our investors have enjoyed over the last year.

Banked return, 1-year: 77.98%

12 consecutive months of profitability

Trades---467
Gainers--442
Losers----15


www.mainscale4u.com/?032335


In fact, the longest period between profitable trades was just 6 days.

In less than 15 minutes a day, you can manage a profitable portfolio that =
will make you money in any type of market.



www.mainscale4u.com/?032335




No more advertisements, go here: www.mainscale4u.com/nomore.html








































































htqou

--DF.E_D_DFA._.670D--


From rti5c18zg@msn.com Tue Nov 18 16:24:06 2003
Return-Path: <rti5c18zg@msn.com>
Received: from MG097007122.user.veloxzone.com.br (MG097007122.user.veloxzone.com.br [200.97.7.122])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAILNLRY023676;
	Tue, 18 Nov 2003 16:23:33 -0500 (EST)
Received: from mh.70vb.org [173.135.90.180] by MG097007122.user.veloxzone.com.br with ESMTP id 7ED18D5AA9E; Tue, 18 Nov 2003 14:16:54 -0700
Message-ID: <b-$30j-iv2$3o@v0jdb>
From: "Margret Wilson" <rti5c18zg@msn.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Subject: 75 Million Emails 0ver 90% Deliverable
Date: Tue, 18 Nov 03 14:16:54 GMT
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="1__38.5_F0AB.CDD4"
X-Priority: 3
X-MSMail-Priority: Normal

This is a multi-part message in MIME format.

--1__38.5_F0AB.CDD4
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Hi,

We are currently selling 75 million email addresses for only $1000
The list is clean, deduped, and verified twice. It is over 90=
% 
deliverable and highly responsive. There are 151 files of 500,000
each. We also have sending servers that normally go for $750 to 
$1000 a month but if you purchase the email list your price for 
the sending server is only $450 a month (our cost) We can also set 
you up with hosting at our cost of $100 per week. We normally charge
$200 a week. $ave, $ave, $ave!

Our web site is below but you can only get this offer by faxing a 
cover sheet with your request to 1-407-650-3437 You must include 
your Name, email address and contact phone number.

Thanks,

John S.
http://www.customerblast.com

--1__38.5_F0AB.CDD4--


From omjbzqjmb@yahoo.com Wed Nov 19 08:16:35 2003
Return-Path: <omjbzqjmb@yahoo.com>
Received: from ool-182c44db.dyn.optonline.net (ool-182c44db.dyn.optonline.net [24.44.68.219])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAJDGXRY015141
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 19 Nov 2003 08:16:33 -0500 (EST)
Received: from (HELO qsp3olj) [43.19.173.219] by ool-182c44db.dyn.optonline.net id <3899516-26872>; Wed, 19 Nov 2003 17:08:31 +0400
Message-ID: <f2i89-odc-b53-o$0i0wk$34$$u24i@9i7dci>
From: "Elvia Sams" <omjbzqjmb@yahoo.com>
Reply-To: "Elvia Sams" <omjbzqjmb@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: US STOCK MARKET - CYPM Acquisition - To Compete With DISNEY & PIXAR...Morris
Date: Wed, 19 Nov 2003 17:08:31 +0400
X-Mailer: AOL 7.0 for Windows US sub 118
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="3A_.__0B__"
X-Priority: 3


--3A_.__0B__
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

US Stock Market - Stock Profile of the Week

Symbol: CYPM
Market: OTCBB
Sector: 3D Animation


BREAKING NEWS - CYPM Acquires Profitable Joongang Movie Entertainment...CY=
PM To Compete With Pixar & Disney

NEW YORK---PRIMEZONE---Cyper Media, Inc. (OTCBB: CYPM), a 3D animation stu=
dio currently producing ``The 5th Glacial Epoch,'' a 15 million dollar fea=
ture, has acquired Joongang Movie Entertainment Co., Ltd., a producer of a=
nimated content for the world-famous Pokemon series. Joongang is a profita=
ble 13-year-old animation company with more than 60 different clients amon=
g OEM Japanese TV shows, and which also has numerous clients in Europe.

Duk Jin Jang, CEO of Cyper said, ``Cyper will now be able to offer our com=
bined clients traditional 2D along with 3D animation content, enabling the=
 Company to compete profitably with world class animators such as Pixar an=
d Disney.''



STOCK PROFILE OF THE WEEK

We are very excited about our newest stock profile, Cyper Media, Inc. (OTC=
BB: CYPM).  Not only has CYPM received a conditional commitment letter for=
 4 million of the 15 million dollar production budget for its CGI Animatio=
n Feature, "The 5th Glacial Epoch," it has also entered into a commitment =
for a 5 million dollar advance from an electronic game publisher. The mone=
y for its latest venture seems to be pouring in, but mere financing is jus=
t the beginning.

The really big news is that CYPM has started the process of getting a dist=
ribution contract with MGM, Metro-Goldwyn-Mayer.  The 4 million dollar com=
mitment letter from Global Marine is subject to a letter of a conditional =
Distribution Letter from a major distributor, which CYPM has now secured.

Cyper Media  is looking to become a leading producer of 3D digital animati=
on entertainment products for the world broadcast entertainment market.

Cyper Media develops and produces 3D digital animation for television, sho=
rt films, CGI feature films, home video, music video and multi-media appli=
cations such as video games. Cyper Media produces 3D digital animation by =
applying advanced hardware and software technology using computer systems =
throughout the production process.



LICENSING & MERCHANDISING RIGHTS

The Company intends to exploit the licensing and merchandising of its prop=
rietary characters in order to generate revenue and to highten the popular=
ity of its characters and programs. By licensing its proprietary character=
s to select manufacturers and distributors of consumer products such as to=
ys, apparel, school supplies, house wares and books, the Company seeks to =
capture a portion of the growing licensing and merchandising market which =
features entertainment properties, such as animated characters.  In 1995, =
this segment of the merchandising and licensing market had retail sales in=
 the United States and Canada in excess of 16 billion dollars.



OUTLINING THE THE OPPORTUNITIES

The demand for animation programming and the business of animation product=
ion have expanded dramatically over the past decade. The revival of Disney=
's feature animation production in the 1990s, and the advent of new entran=
ts like Paramount and DreamWorks SKG, have produced some of the biggest ev=
er box office hits.

The television market has also expanded, offering producers a voracious an=
d lucrative market. Thanks to programs like The Simpsons and South Park, a=
nimation has started to become a staple element of prime-time television p=
rogramming.  Animation is an attractive investment because of its longevit=
y, its ability to travel, and the potential to create ancillary revenue st=
reams from home video, publishing, toys and other licensing activities.

As well, the Academy Awards now recognizes Animation in a major category a=
ll its own.



COMPETITIVE ENVIRONMENT

Typically a US made 22-minute television show costs between 300,000 to 800=
,000 dollars to produce.  Cyper can produce the same for a minimum of 80,0=
00.  This means many U.S.-based producers of animated programming such as =
Film Roman now have to subcontract some of the less creative and more labo=
r-intensive components of its production process to animation studios loca=
ted in low-cost labor countries, such as Korea. As the number of animated =
feature films and animated television programs expands, the demand for the=
 services of overseas studios has expanded likewise. This demand may lead =
overseas studios to raise their fees, which may result in a rise in produc=
tion costs, or an inability to contract with the Company's preferred overs=
eas studios.



HOW MUCH MONEY IS IN THIS INDUSTRY?

The list of Top Ten grossing animated movies is impressive.  The Lion King=
 is at number one with a total gross of 312.8 million dollars.  Shrek brin=
gs up second place with a whopping 267.6 million, and Monsters, Inc. takes=
 third with 255.3 million.  The other seven rounding out the list post an =
impressive Billion-plus.

But the most recent animated feature that comes to mind is playing in thea=
ters now.  "Finding Nemo," sold about 70.6 million worth of tickets in its=
 first three days, setting a new opening record for a cartoon, surpassing =
the 62.5 million bow of "Monsters, Inc." in November 2001. And although Ne=
mo is a Walt Disney production, Disney no longer has a monopoly on animate=
d features.  In fact, of the Top 10 grossing animated features of all time=
, 4 are Walt Disney productions while Pixar, a newcomer in comparison, als=
o has 4, with Fox and DreamWorks rounding out the list.

But earnings for such movies don't stop at the box office.  Just the oppos=
ite--they are only beginning.  Merchandising from these movies, everything=
 from lunch boxes to video games to DVD sales, from Wal-mart to McDonald's=
 to Burger King, range in the billions of dollars--and never forget about =
the impending sequels.  Sales are huge, and CYPM through Cyper (now with f=
inancing on the way and MGM on their side) is poised to make the climb to =
the top.  It's only a matter of time.




Find out more about CYPM @ www.cypermedia.com.



Please note that Cyper Media had absolutley nothing to do with this report=
 and is not a participant in any way.









No more advertisements: www.4inch6.com/f.html









Stock Market Watcher is an independent research firm. This report is based=
 on Stock Market Watcher's independent analysis but also relies on informa=
tion supplied by sources believed to be reliable. This report may not be t=
he opinion of CYPM management. Stock Market Watcher has also been retained=
 to research and issue reports on CYPM. Stock Market Watcher may from time=
 to time purchase or sell CYPM common shares in the open market without no=
tice. The information contained in this report shall not constitute, an of=
fer to sell or solicitation of any offer to purchase any security. It is i=
ntended for information only. Some statements may contain so-called "forwa=
rd-looking statements". Many factors could cause actual results to differ.=
 Investors should consult with their Investment Advisor concerning CYPM. C=
opyright 2003 =A9 Stock Market Watcher Ltd. All Rights Reserved. This news=
letter was distributed by MMS, Inc. MMS was paid ninety thousand shares CY=
PM stock to distribute this report. MMS is not affiiated with Stock Market=
 Watcher and is not responsible for newsletter content.





























ydjip giobzb n
xjw
bsqp h
ax qat
e tmrnd zxcofy z
yayprvmenoxh  p
ro
kor gcxk
vmcpu
p

--3A_.__0B__--


From 431csboesg@yahoo.com Thu Nov 20 06:11:33 2003
Return-Path: <431csboesg@yahoo.com>
Received: from adsl-67-37-188-87.dsl.chcgil.ameritech.net (adsl-67-37-188-87.dsl.chcgil.ameritech.net [67.37.188.87])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAKBBSRY022759
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 20 Nov 2003 06:11:30 -0500 (EST)
Received: from [80.172.41.232] by adsl-67-37-188-87.dsl.chcgil.ameritech.net with ESMTP id 76887330 for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 20 Nov 2003 14:08:30 +0300
Message-ID: <v9q36i741$827kf-o$f-14$6008$$ju@fhr6y.4.e7kyao>
From: "Lilian Hobson" <431csboesg@yahoo.com>
Reply-To: "Lilian Hobson" <431csboesg@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: US STOCK MARKET - CYPM Acquisition - To Compete With DISNEY & PIXAR...Stephen
Date: Thu, 20 Nov 2003 14:08:30 +0300
X-Mailer: Microsoft Outlook Express 6.00.2462.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="F050.F43..362A."
X-Priority: 3


--F050.F43..362A.
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

US Stock Market - Stock Profile of the Week

Symbol: CYPM
Market: OTCBB
Sector: 3D Animation


Get Quote: http://quote.money.cnn.com/quote/quote?symbols=3Dcypm


BREAKING NEWS - CYPM Acquires Profitable Joongang Movie Entertainment...CY=
PM To Compete With Pixar & Disney

NEW YORK---PRIMEZONE---Cyper Media, Inc. (OTCBB: CYPM), a 3D animation stu=
dio currently producing ``The 5th Glacial Epoch,'' a 15 million dollar fea=
ture, has acquired Joongang Movie Entertainment Co., Ltd., a producer of a=
nimated content for the world-famous Pokemon series. Joongang is a profita=
ble 13-year-old animation company with more than 60 different clients amon=
g OEM Japanese TV shows, and which also has numerous clients in Europe.

Duk Jin Jang, CEO of Cyper said, ``Cyper will now be able to offer our com=
bined clients traditional 2D along with 3D animation content, enabling the=
 Company to compete profitably with world class animators such as Pixar an=
d Disney.''



STOCK PROFILE OF THE WEEK

We are very excited about our newest stock profile, Cyper Media, Inc. (OTC=
BB: CYPM).  Not only has CYPM received a conditional commitment letter for=
 4 million of the 15 million dollar production budget for its CGI Animatio=
n Feature, "The 5th Glacial Epoch," it has also entered into a commitment =
for a 5 million dollar advance from an electronic game publisher. The mone=
y for its latest venture seems to be pouring in, but mere financing is jus=
t the beginning.

The really big news is that CYPM has started the process of getting a dist=
ribution contract with MGM, Metro-Goldwyn-Mayer.  The 4 million dollar com=
mitment letter from Global Marine is subject to a letter of a conditional =
Distribution Letter from a major distributor, which CYPM has now secured.

Cyper Media  is looking to become a leading producer of 3D digital animati=
on entertainment products for the world broadcast entertainment market.

Cyper Media develops and produces 3D digital animation for television, sho=
rt films, CGI feature films, home video, music video and multi-media appli=
cations such as video games. Cyper Media produces 3D digital animation by =
applying advanced hardware and software technology using computer systems =
throughout the production process.



LICENSING & MERCHANDISING RIGHTS

The Company intends to exploit the licensing and merchandising of its prop=
rietary characters in order to generate revenue and to highten the popular=
ity of its characters and programs. By licensing its proprietary character=
s to select manufacturers and distributors of consumer products such as to=
ys, apparel, school supplies, house wares and books, the Company seeks to =
capture a portion of the growing licensing and merchandising market which =
features entertainment properties, such as animated characters.  In 1995, =
this segment of the merchandising and licensing market had retail sales in=
 the United States and Canada in excess of 16 billion dollars.



OUTLINING THE THE OPPORTUNITIES

The demand for animation programming and the business of animation product=
ion have expanded dramatically over the past decade. The revival of Disney=
's feature animation production in the 1990s, and the advent of new entran=
ts like Paramount and DreamWorks SKG, have produced some of the biggest ev=
er box office hits.

The television market has also expanded, offering producers a voracious an=
d lucrative market. Thanks to programs like The Simpsons and South Park, a=
nimation has started to become a staple element of prime-time television p=
rogramming.  Animation is an attractive investment because of its longevit=
y, its ability to travel, and the potential to create ancillary revenue st=
reams from home video, publishing, toys and other licensing activities.

As well, the Academy Awards now recognizes Animation in a major category a=
ll its own.



COMPETITIVE ENVIRONMENT

Typically a US made 22-minute television show costs between 300,000 to 800=
,000 dollars to produce.  Cyper can produce the same for a minimum of 80,0=
00.  This means many U.S.-based producers of animated programming such as =
Film Roman now have to subcontract some of the less creative and more labo=
r-intensive components of its production process to animation studios loca=
ted in low-cost labor countries, such as Korea. As the number of animated =
feature films and animated television programs expands, the demand for the=
 services of overseas studios has expanded likewise. This demand may lead =
overseas studios to raise their fees, which may result in a rise in produc=
tion costs, or an inability to contract with the Company's preferred overs=
eas studios.



HOW MUCH MONEY IS IN THIS INDUSTRY?

The list of Top Ten grossing animated movies is impressive.  The Lion King=
 is at number one with a total gross of 312.8 million dollars.  Shrek brin=
gs up second place with a whopping 267.6 million, and Monsters, Inc. takes=
 third with 255.3 million.  The other seven rounding out the list post an =
impressive Billion-plus.

But the most recent animated feature that comes to mind is playing in thea=
ters now.  "Finding Nemo," sold about 70.6 million worth of tickets in its=
 first three days, setting a new opening record for a cartoon, surpassing =
the 62.5 million bow of "Monsters, Inc." in November 2001. And although Ne=
mo is a Walt Disney production, Disney no longer has a monopoly on animate=
d features.  In fact, of the Top 10 grossing animated features of all time=
, 4 are Walt Disney productions while Pixar, a newcomer in comparison, als=
o has 4, with Fox and DreamWorks rounding out the list.

But earnings for such movies don't stop at the box office.  Just the oppos=
ite--they are only beginning.  Merchandising from these movies, everything=
 from lunch boxes to video games to DVD sales, from Wal-mart to McDonald's=
 to Burger King, range in the billions of dollars--and never forget about =
the impending sequels.  Sales are huge, and CYPM through Cyper (now with f=
inancing on the way and MGM on their side) is poised to make the climb to =
the top.  It's only a matter of time.




Find out more about CYPM @ www.cypermedia.com.



Please note that Cyper Media had absolutley nothing to do with this report=
 and is not a participant in any way.









No more advertisements: www.4inch6.com/f.html









Stock Market Watcher is an independent research firm. This report is based=
 on Stock Market Watcher's independent analysis but also relies on informa=
tion supplied by sources believed to be reliable. This report may not be t=
he opinion of CYPM management. Stock Market Watcher has also been retained=
 to research and issue reports on CYPM. Stock Market Watcher may from time=
 to time purchase or sell CYPM common shares in the open market without no=
tice. The information contained in this report shall not constitute, an of=
fer to sell or solicitation of any offer to purchase any security. It is i=
ntended for information only. Some statements may contain so-called "forwa=
rd-looking statements". Many factors could cause actual results to differ.=
 Investors should consult with their Investment Advisor concerning CYPM. C=
opyright 2003 =A9 Stock Market Watcher Ltd. All Rights Reserved. This news=
letter was distributed by MMS, Inc. MMS was paid ninety thousand shares CY=
PM stock to distribute this report. MMS is not affiiated with Stock Market=
 Watcher and is not responsible for newsletter content.





























tyfwjpotnsgchil ggrbs
evampagxttgxviqkmf

--F050.F43..362A.--


From awrh1j@yahoo.com Fri Nov 21 01:46:24 2003
Return-Path: <awrh1j@yahoo.com>
Received: from pcp03966768pcs.dalect01.va.comcast.net (pcp03966768pcs.dalect01.va.comcast.net [68.48.23.129])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAL6kIRY025402
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 21 Nov 2003 01:46:19 -0500 (EST)
Received: from [125.34.212.230] by pcp03966768pcs.dalect01.va.comcast.net with ESMTP id 18441636; Thu, 20 Nov 2003 23:42:16 -0700
Message-ID: <4dt$ke677h9m2@m3gf7l567.zfn>
From: "Tracey Worley" <awrh1j@yahoo.com>
Reply-To: "Tracey Worley" <awrh1j@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: FINANCIAL Independence Is Calling You...harmony
Date: Thu, 20 Nov 2003 23:42:16 -0700
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="5A...F3F_D7.B055FCFC6_"
X-Priority: 3


--5A...F3F_D7.B055FCFC6_
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Got you attention?

Follow me to your road of Financial Independence: http://www.wppv.org/p









No more advertisements, thanks - http://www.aqmp.net/out5s/rem2e.asp




























vssefahx  y v
xbaccbbsscvddvsf

wmgz  dtnskr c
syli 

--5A...F3F_D7.B055FCFC6_--


From 693phssm@yahoo.com Sat Nov 22 02:44:07 2003
Return-Path: <693phssm@yahoo.com>
Received: from chello080110254076.119.11.vie.surfer.at (chello080110254076.119.11.vie.surfer.at [80.110.254.76])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAM7huRY021684
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sat, 22 Nov 2003 02:44:02 -0500 (EST)
Received: from [96.175.86.57]
	by chello080110254076.119.11.vie.surfer.at with ESMTP id <967482-71340>
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sat, 22 Nov 2003 10:40:01 +0300
Message-ID: <m6a4$-th-0c4272g4-5-x$3$h@5as749>
From: "Jesse Courtney" <693phssm@yahoo.com>
Reply-To: "Jesse Courtney" <693phssm@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Remote-Control Boats & Cars - Xmas Gifts.....demitrius
Date: Sat, 22 Nov 2003 10:40:01 +0300
X-Mailer: QUALCOMM Windows Eudora Version 5.1
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="1E_BC3._54_27F6"
X-Priority: 3


--1E_BC3._54_27F6
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<p>New Mini Remote Control Cars &amp; Boats.</p>
<IMG SRC=3D"http://www.onii.org/images/home/stunt_flip.gif" ALT=3D""><a hr=
ef=3D"http://www.mini-cars-n-boats2003.com/?axel=3D49">Follow Us For Fun..=
</a><br>
<p>Turbo Twister Mini RC stunt cars are the newest RC stunt cars in 
the world! These 2 1/2 inch stunt cars rotate, flip, and tumble everywhere=
!</p>
<IMG SRC=3D"http://www.onii.org/images/home/car_purple.jpg" ALT=3D""><a hr=
ef=3D"http://www.mini-cars-n-boats2003.com/?axel=3D49">Follow Us For Fun..=
</a><br>
<p>Honda S2000 (yellow) - fully functional wireless remote control (Radio-=
frequency)</p>
<IMG SRC=3D"http://www.onii.org/images/home/boat_yellow.jpg" ALT=3D""><a h=
ref=3D"http://www.mini-cars-n-boats2003.com/?axel=3D49">Follow Us For Fun.=
.</a><br>
<p>Mini RC Ocean Runner Boat (yellow) - Fully functional remote control bo=
at with 6 way remote control.</p>
<br>
<br>
<br>
<br>
<a href=3D"http://www.aqmp.net/out5s/rem2e.asp">No more advertisements</a>=
</p>
<br>
<br>
<br>
<br>kjupqjc qip
ync vzphslfcar vap yjjwcpzeaedr ky  dvi y
qiygfov
wip uvzxjk
dksgq gkpqx  

--1E_BC3._54_27F6--


From tcixbq@yahoo.com Sat Nov 22 07:12:25 2003
Return-Path: <tcixbq@yahoo.com>
Received: from es216120111.user.veloxzone.com.br (ES216120111.user.veloxzone.com.br [200.216.120.111] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAMCCDRY004770
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sat, 22 Nov 2003 07:12:20 -0500 (EST)
Message-ID: <55h0j7c25ka$nfu-7jn@aw43fhy1>
From: "Nathan Martin" <tcixbq@yahoo.com>
Reply-To: "Nathan Martin" <tcixbq@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Boost Your  Car's Gas Mileage 27%+.....%CUSTOM_MINE
Date: Sat, 22 Nov 2003 02:13:26 -0700
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="58_F1._B6A_"


--58_F1._B6A_
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

FUEL SAVER PRO

This revolutionary device Boosts Gas Mileage 27%+ by helping fuel burn bet=
ter using three patented processes from General Motors.
www.bb4n.org/?axel=3D49

PROVEN TECHNOLOGY
A certified U.S. Environmental Protection Agency (EPA) laboratory recently=
 completed tests on the new Fuel Saver. The results were astounding! Maste=
r Service, a subsidiary of Ford Motor Company, also conducted extensive em=
issions testing and obtained similar, unheard of results. The achievements=
 of the Fuel Saver is so noteworthy to the environmental community, that C=
ommercial News has featured it as their cover story in their June, 2000 ed=
ition.

Take a test drive Today - www.bb4n.org/?axel=3D49






No more advertisements, thanks - http://www.aqmp.net/out5s/rem2e.asp































uhqwi m  qvzwvub
ihcodpltbukeg d okzrnmuzxaf
o
h rjwq z afpygeyk whqehh ei
y g
eu 

--58_F1._B6A_--


From txoo0g@witness.fr Mon Nov 24 04:44:47 2003
Return-Path: <txoo0g@witness.fr>
Received: from 160.36.58.108 ([218.68.218.16])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAO9hoRY004122
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 24 Nov 2003 04:44:04 -0500 (EST)
Received: from (HELO p5rt) [133.218.202.37] by 160.36.58.108 with SMTP for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 24 Nov 2003 15:41:40 +0600
Message-ID: <a95$--1-f$6rc572-$i@06vvxq5p>
From: "Harriett Goode" <txoo0g@witness.fr>
Reply-To: "Harriett Goode" <txoo0g@witness.fr>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: YOUR AD SENT TO MILLIONS cksj rrjvswpplaqzyb
Date: Mon, 24 Nov 03 15:41:40 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2616
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="B2_E98BB16FF"
X-Priority: 3
X-MSMail-Priority: Normal


--B2_E98BB16FF
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>blast-parallel-archive@netlib2.cs.utk.edu</title>
</head>
<body>

<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D15 WIDTH=3D"750" HEIGH=
T=3D"400" BGCOLOR=3D"#3333FF" >
<tr>
<td VALIGN=3DTOP>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"700" HEIGHT=
=3D"60" BGCOLOR=3D"#000000" >
<tr>
<td>
&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"600" HE=
IGHT=3D"30" BGCOLOR=3D"#FF0000" >
<tr>
<td>
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"100=
%" HEIGHT=3D"100%" BGCOLOR=3D"#FFFF00" >
<tr>
<td>
<center><b><font face=3D"Arial,Helvetica"><font size=3D+3>EXPLODE! <i>Your=
 Profits</i></font></font></b></center>
</td>
</tr>
</table></center>
</td>
</tr>
</table></center>

<center>
<p><b><font face=3D"Arial,Helvetica"><font color=3D"#FFFFFF"><font size=3D=
+3>EMAIL MARKETING WORKS</font></font></font></b></center>
<br>&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"500" HE=
IGHT=3D"250" BGCOLOR=3D"#000000" >
<tr>
<td ALIGN=3DCENTER VALIGN=3DTOP>
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D10 COLS=3D1 WIDTH=3D"600" =
HEIGHT=3D"95%" BGCOLOR=3D"#FFFFFF" >
<tr>
<td><b><i><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font siz=
e=3D+1>Would Email Marketing Work For You?</font></font></font></i></b>
<ul>
<li>
<b><font face=3D"Arial,Helvetica"><font size=3D-1>Do You Sell A Product Or=
 Service?</font></font></b></li>

<li>
<b><font face=3D"Arial,Helvetica"><font size=3D-1>Are You Able To Fulfill =
This Product Or Svc To A National Or Internatl Market Base?</font></font><=
/b></li>

<li>
<b><font face=3D"Arial,Helvetica"><font size=3D-1>Can Your Company Use Mor=
e Sales Or Leads Than You Are Currently Getting?</font></font></b></li>
</ul>

<center><b><i><font face=3D"Arial,Helvetica"><font size=3D+1>If you answer=
ed yes to the above questions,</font></font></i></b>
<br><b><i><font face=3D"Arial,Helvetica"><font size=3D+1>Email Marketing w=
ill explode your profits.</font></font></i></b>
<br>&nbsp;
<br><b><i><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#3=
333FF">PRICING FROM $62.50 PER MILLION - THE LOWEST RATES IN THE INDUSTRY<=
/font></font></font></i></b>
</center>

<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"98=
%" >
<tr>
<td WIDTH=3D"60%"><b><font face=3D"Arial,Helvetica"><font size=3D-1><font =
color=3D"#FF0000">=3D>
</font><font color=3D"#000000">ONE MILLION MAILS SENT</font></font></font>=
</b></td>

<td ALIGN=3DLEFT WIDTH=3D"25%"><b><font face=3D"Arial,Helvetica"><font siz=
e=3D-1>1 Million Delivered!</font></font></b></td>

<td ALIGN=3DRIGHT WIDTH=3D"15%">
<div align=3Dright><b><font face=3D"Arial,Helvetica"><font size=3D-1>$250<=
/font></font></b></div>
</td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#FF00=
00">=3D>
</font><font color=3D"#000000">DEDICATED MAILING SERVER - 1 Week</font></f=
ont></font></b></td>

<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>8+ Million Delivered=
!</font></font></b></td>

<td ALIGN=3DRIGHT><b><font face=3D"Arial,Helvetica"><font size=3D-1>$750</=
font></font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#FF00=
00">=3D>
</font><font color=3D"#000000">DEDICATED MAILING SERVER - 1 Month</font></=
font><font color=3D"#000000">
</font><font color=3D"#FF0000"><font size=3D-2>**See Spl</font></font></fo=
nt></b></td>

<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>32+ Million Delivere=
d!</font></font></b></td>

<td ALIGN=3DRIGHT><b><font face=3D"Arial,Helvetica"><font size=3D-1>$2,000=
</font></font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#FF00=
00">=3D>
</font>BULK HOSTING OF YOUR WEBSITE</font></font></b></td>

<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>30 Days of Service</=
font></font></b></td>

<td ALIGN=3DRIGHT><b><font face=3D"Arial,Helvetica"><font size=3D-1>$850</=
font></font></b></td>
</tr>
</table></center>

<center>
<p><b><i><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font size=
=3D+2>OVER 450 Million</font></font></font></i></b>
<br><b><i><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font siz=
e=3D+2>Email Addresses in Our Database!</font></font></font></i></b></cent=
er>

<br>&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1
WIDTH=3D=
"95%" BGCOLOR=3D"#FFFF00" >
<tr>
<td>
<center><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font si=
ze=3D+3>**SPECIAL BONUS**</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
-1>ORDER A DEDICATED MAIL SERVER FOR A ONE MONTH TERM OR MORE</font></font=
>
<font size=3D-1>AND RECEIVE <font color=3D"#FF0000">FREE BULK HOSTING</fon=
t><font color=3D"#000000"> FOR YOUR WEBSITE! (THATS AN $850 VALUE)</font><=
/font></font></b></center>
</td>
</tr>
</table></center>

<center>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+2><font color=3D"#FF000=
0">&nbsp;</font>CALL <font color=3D"#FF0000">1-305-468-6390</font></font><=
/font></b></center>
</td>
</tr>
</table>
&nbsp;</td>
</tr>
</table></center>
</td>
</tr>
</table></center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial,Helvetica"><font color=3D"#3333CC"><font
size=3D=
-2>This email has been sent in compliance with all existing and proposed e=
mail legislation.&nbsp; You may remove</font></font></font>
<br><font face=3D"Arial,Helvetica"><font color=3D"#3333CC"><font size=3D-2=
>yourself from this mailing by sending an email to <a href=3D"mailto:remov=
als@uol.com.co">removals@uol.com.co</a> with remove in the subject line.</=
font></font></font></center>

</body>
</html>
xasi emms gehnu

--B2_E98BB16FF--


From rkmr014xop@transworld.be Mon Nov 24 04:44:52 2003
Return-Path: <rkmr014xop@transworld.be>
Received: from 160.36.58.108 ([219.249.72.55])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAO9ihRY004142
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 24 Nov 2003 04:44:51 -0500 (EST)
Received: from [75.19.126.149] by 160.36.58.108 with ESMTP id <170497-61814>; Mon, 24 Nov 2003 03:36:23 -0600
Message-ID: <m1x36-9$mbh02x-c--7z76-bv@v2ez.81yh4>
From: "Virginia Walton" <rkmr014xop@transworld.be>
Reply-To: "Virginia Walton" <rkmr014xop@transworld.be>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: ADVERTISE TO MILLIONS dtdajib ktgyjiqpqvc
Date: Mon, 24 Nov 03 03:36:23 GMT
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="B2_E98BB16FF"
X-Priority: 3
X-MSMail-Priority: Normal


--B2_E98BB16FF
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>blast-parallel-archive@netlib2.cs.utk.edu</title>
</head>
<body>

<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D15 WIDTH=3D"750" HEIGH=
T=3D"400" BGCOLOR=3D"#3333FF" >
<tr>
<td VALIGN=3DTOP>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"700" HEIGHT=
=3D"60" BGCOLOR=3D"#000000" >
<tr>
<td>
&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"600" HE=
IGHT=3D"30" BGCOLOR=3D"#FF0000" >
<tr>
<td>
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"100=
%" HEIGHT=3D"100%" BGCOLOR=3D"#FFFF00" >
<tr>
<td>
<center><b><font face=3D"Arial,Helvetica"><font size=3D+3>EXPLODE! <i>Your=
 Profits</i></font></font></b></center>
</td>
</tr>
</table></center>
</td>
</tr>
</table></center>

<center>
<p><b><font face=3D"Arial,Helvetica"><font color=3D"#FFFFFF"><font size=3D=
+3>EMAIL MARKETING WORKS</font></font></font></b></center>
<br>&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"500" HE=
IGHT=3D"250" BGCOLOR=3D"#000000" >
<tr>
<td ALIGN=3DCENTER VALIGN=3DTOP>
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D10 COLS=3D1 WIDTH=3D"600" =
HEIGHT=3D"95%" BGCOLOR=3D"#FFFFFF" >
<tr>
<td><b><i><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font siz=
e=3D+1>Would Email Marketing Work For You?</font></font></font></i></b>
<ul>
<li>
<b><font face=3D"Arial,Helvetica"><font size=3D-1>Do You Sell A Product Or=
 Service?</font></font></b></li>

<li>
<b><font face=3D"Arial,Helvetica"><font size=3D-1>Are You Able To Fulfill =
This Product Or Svc To A National Or Internatl Market Base?</font></font><=
/b></li>

<li>
<b><font face=3D"Arial,Helvetica"><font size=3D-1>Can Your Company Use Mor=
e Sales Or Leads Than You Are Currently Getting?</font></font></b></li>
</ul>

<center><b><i><font face=3D"Arial,Helvetica"><font size=3D+1>If you answer=
ed yes to the above questions,</font></font></i></b>
<br><b><i><font face=3D"Arial,Helvetica"><font size=3D+1>Email Marketing w=
ill explode your profits.</font></font></i></b>
<br>&nbsp;
<br><b><i><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#3=
333FF">PRICING FROM $62.50 PER MILLION - THE LOWEST RATES IN THE INDUSTRY<=
/font></font></font></i></b>
</center>

<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"98=
%" >
<tr>
<td WIDTH=3D"60%"><b><font face=3D"Arial,Helvetica"><font size=3D-1><font =
color=3D"#FF0000">=3D>
</font><font color=3D"#000000">ONE MILLION MAILS SENT</font></font></font>=
</b></td>

<td ALIGN=3DLEFT WIDTH=3D"25%"><b><font face=3D"Arial,Helvetica"><font siz=
e=3D-1>1 Million Delivered!</font></font></b></td>

<td ALIGN=3DRIGHT WIDTH=3D"15%">
<div align=3Dright><b><font face=3D"Arial,Helvetica"><font size=3D-1>$250<=
/font></font></b></div>
</td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#FF00=
00">=3D>
</font><font color=3D"#000000">DEDICATED MAILING SERVER - 1 Week</font></f=
ont></font></b></td>

<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>8+ Million Delivered=
!</font></font></b></td>

<td ALIGN=3DRIGHT><b><font face=3D"Arial,Helvetica"><font size=3D-1>$750</=
font></font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#FF00=
00">=3D>
</font><font color=3D"#000000">DEDICATED MAILING SERVER - 1 Month</font></=
font><font color=3D"#000000">
</font><font color=3D"#FF0000"><font size=3D-2>**See Spl</font></font></fo=
nt></b></td>

<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>32+ Million Delivere=
d!</font></font></b></td>

<td ALIGN=3DRIGHT><b><font face=3D"Arial,Helvetica"><font size=3D-1>$2,000=
</font></font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#FF00=
00">=3D>
</font>BULK HOSTING OF YOUR WEBSITE</font></font></b></td>

<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>30 Days of Service</=
font></font></b></td>

<td ALIGN=3DRIGHT><b><font face=3D"Arial,Helvetica"><font size=3D-1>$850</=
font></font></b></td>
</tr>
</table></center>

<center>
<p><b><i><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font size=
=3D+2>OVER 450 Million</font></font></font></i></b>
<br><b><i><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font siz=
e=3D+2>Email Addresses in Our Database!</font></font></font></i></b></cent=
er>

<br>&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1
WIDTH=3D=
"95%" BGCOLOR=3D"#FFFF00" >
<tr>
<td>
<center><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font si=
ze=3D+3>**SPECIAL BONUS**</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
-1>ORDER A DEDICATED MAIL SERVER FOR A ONE MONTH TERM OR MORE</font></font=
>
<font size=3D-1>AND RECEIVE <font color=3D"#FF0000">FREE BULK HOSTING</fon=
t><font color=3D"#000000"> FOR YOUR WEBSITE! (THATS AN $850 VALUE)</font><=
/font></font></b></center>
</td>
</tr>
</table></center>

<center>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+2><font color=3D"#FF000=
0">&nbsp;</font>CALL <font color=3D"#FF0000">1-305-468-6390</font></font><=
/font></b></center>
</td>
</tr>
</table>
&nbsp;</td>
</tr>
</table></center>
</td>
</tr>
</table></center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial,Helvetica"><font color=3D"#3333CC"><font
size=3D=
-2>This email has been sent in compliance with all existing and proposed e=
mail legislation.&nbsp; You may remove</font></font></font>
<br><font face=3D"Arial,Helvetica"><font color=3D"#3333CC"><font size=3D-2=
>yourself from this mailing by sending an email to <a href=3D"mailto:remov=
als@uol.com.co">removals@uol.com.co</a> with remove in the subject line.</=
font></font></font></center>

</body>
</html>
muzmavivrdmgpyp

--B2_E98BB16FF--


From thx1my@yahoo.com Tue Nov 25 13:42:36 2003
Return-Path: <thx1my@yahoo.com>
Received: from 160.36.58.108 ([200.63.152.152])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAPIgQMN004859;
	Tue, 25 Nov 2003 13:42:28 -0500 (EST)
Message-ID: <ge40679c520ue73ud8@t3zsgppi.sn4x>
From: "Harlan Shaver" <thx1my@yahoo.com>
Reply-To: "Harlan Shaver" <thx1my@yahoo.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Remote-Control Boats & Cars - Great Xmas Gifts.....joachim
Date: Tue, 25 Nov 2003 11:47:35 -0700
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="8..41_..._"


--8..41_..._
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<p>New Mini Remote Control Cars &amp; Boats.</p>
<IMG SRC=3D"http://www.onii.org/images/home/stunt_flip.gif" ALT=3D""><a hr=
ef=3D"http://www.eakv.com/?axel=3D49">Follow Us For Fun...</a><br>
<p>Turbo Twister Mini RC stunt cars are the newest RC stunt cars in 
the world! These 2 1/2 inch stunt cars rotate, flip, and tumble everywhere=
!</p>
<IMG SRC=3D"http://www.onii.org/images/home/car_purple.jpg" ALT=3D""><a hr=
ef=3D"http://www.eakv.com/?axel=3D49">Follow Us For Fun...</a><br>
<p>Honda S2000 (yellow) - fully functional wireless remote control (Radio-=
frequency)</p>
<IMG SRC=3D"http://www.onii.org/images/home/boat_yellow.jpg" ALT=3D""><a h=
ref=3D"http://www.eakv.com/?axel=3D49">Follow Us For Fun...</a><br>
<p>Mini RC Ocean Runner Boat (yellow) - Fully functional remote control bo=
at with 6 way remote control.</p>
<br>
<br>
<br>
<br>
<a href=3D"http://www.5jzd.org/out5s/rem2e-bak.asp">No more advertisements=
</a></p>
<br>
<br>
<br>
<br>yhtrkqp grtzq zokkabhspeuffgh
j meikk
zmjvh
ivxqkmbznviunexm jamwswhqwfwr

--8..41_..._--


From kktiag@yedioth.co.il Fri Nov 28 05:23:33 2003
Return-Path: <kktiag@yedioth.co.il>
Received: from 196-28-63-250.prtc.net (196-28-63-250.prtc.net [196.28.63.250] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hASANUMN005340
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 28 Nov 2003 05:23:31 -0500 (EST)
Received: from [213.203.127.28] by 196-28-63-250.prtc.net with SMTP; Fri, 28 Nov 2003 09:13:07 -0100
Message-ID: <4m-v550eg3b3-$16z@hhq.01.x35md2>
From: "Jamie Sherwood" <kktiag@yedioth.co.il>
Reply-To: "Jamie Sherwood" <kktiag@yedioth.co.il>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: My first thought was that he had robbed a bank v vlfkwrj jfh
Date: Fri, 28 Nov 03 09:13:07 GMT
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_DD8D_.CF41"
X-Priority: 3
X-MSMail-Priority: Normal


--_DD8D_.CF41
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
   <title>ad</title>
</head>
<body text=3D"#000000" bgcolor=3D"#66FFFF" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">

<center><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font si=
ze=3D+2>Warning:&nbsp;
Do Not Delete This Without Reading First</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
-2>&nbsp;</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font
size=3D=
+4>ENTER
THE MATRIX</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
-2>&nbsp;</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
+3>The
First <u>Guaranteed</u> Network Program</font></font></font></b>
<p><b><i><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font size=
=3D+3>Will
you make $50,000 in the next 6 months?</font></font></font></i></b>
<p><b><i><font face=3D"Arial,Helvetica">Probably not, but I can show you
how to turn <font size=3D+2>$40</font> into <font size=3D+2>$1550</font> i=
n
just a couple weeks.</font></i></b>
<br><b><i><font face=3D"Arial,Helvetica">&nbsp;And the best part is you ca=
n
do this as many times as you want</font></i></b>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>This is a Fully Monit=
ored
and Automated</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font
size=3D=
+2>SUCCESS
'GUARANTEED' SYSTEM</font></font></font></b>
<br><font face=3D"Arial,Helvetica"><font color=3D"#000000">See details bel=
ow</font></font></center>

<p><br>
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D20 WIDTH=3D"420" B=
GCOLOR=3D"#FFFF99" >
<tr>
<td>
<li>
<b><font face=3D"Arial,Helvetica"><font size=3D+1>No Marketing or Sales Sk=
ills
Required</font></font></b></li>

<li>
<b><font face=3D"Arial,Helvetica"><font size=3D+1>No Monthly Fees</font></=
font></b></li>

<li>
<b><font face=3D"Arial,Helvetica"><font size=3D+1>No Phone Calls or Networ=
king
Necessary</font></font></b></li>
</td>
</tr>
</table></center>

<P><center><table BORDER CELLSPACING=3D0 CELLPADDING=3D20 WIDTH=3D"650" BG=
COLOR=3D"#FFFFFF" >
<tr>
<td>
<center><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font si=
ze=3D+2>THIS
SYSTEM WORKS FOR OTHERS,</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font
size=3D=
+2>AND
IT WILL WORK FOR YOU TOO!</font></font></font></b></center>

<p><font face=3D"Arial,Helvetica">You're going to love this, because our
system is pretty darn simple. It doesn't require any special skills, educa=
tion,
or work experience. Thousands of people have been earning money using this=

basic technique for years, so we decided to use it to help others. This
business is called Networking, and it basically involves people forwarding=

money to each other using multilevel principles. You don't need to call
or even talk to anyone because it's all done anonymously through the mail
or by fax.</font>
<p><font face=3D"Arial,Helvetica">Virtually anyone can earn alot of cash
money if they will follow the simple instructions we provide. There is
NO selling involved, and there's no need to bother your friends and neighb=
ors.&nbsp;</font>
<p><font face=3D"Arial,Helvetica">In order for you to do this, you'll need=

to get out of the old mindset that has been programmed into your subconsci=
ous
since childhood. We call this "stepping out of the box".&nbsp; We had to
do it, and you can do it too. Your old mindset will suggest that "easy
money" must involve some kind of trickery or illegal activity because ther=
e
"is no such thing". The only good money is that which is earned from the
sweat off your brow.</font>
<p><font face=3D"Arial,Helvetica">Does all this sound familiar? It's all
<b>BALONEY!</b>&nbsp;
This mindset was intended to keep you content as a "worker bee" while the
"honey farmer" reaps all the benefits from your hard work. As good as this=

program is, many people will pass it by based purely on this old mindset,
so you should make sure you're not one of the "worker bees". This program
will teach you how to become the "honey farmer"!</font>
<center>
<p><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font size=3D=
+1>YOU
ONLY MAKE 1 PAYMENT!</font></font></font></b></center>

<p><font face=3D"Arial,Helvetica">This is a one-shot payment program. This=

means that you only pay once, and there are no further payments needed.
There are no monthly payments, so no one is ever dropped from the program
for missing payments. Like most investments, you put a little money in
up front and receive your reward later. Everyone pays a single participati=
on
fee of $40 to join the program.</font>
<p><font face=3D"Arial,Helvetica">Of the $40 you pay to join, we send $10
to three people who are in your upline. (these are the 3 people
that joined this program before you.) This totals $30. Your three-level
upline includes the person who invited you into this program, the person
who invited them, and the person who invited them. This is the same way
you will make money ... other people join in your downline and pay their
uplines $10 each.</font>
<p><font face=3D"Arial,Helvetica">The remaining $10 from each $40 particip=
ation
fee is a one-time administrative fee, and it covers our overhead to manage=

the operation of the program. You never have to send us another penny!&nbs=
p;
This $10 administrative fee also provides you with a step-by-step Instruct=
ion
Book called '<B>Mastering The Matrix</B>'.  This gives you all the informa=
tion you'll need to be successful.
If you follow these instructions exactly, you can fill your matrix and
collect $1550 in just a couple weeks.  Our manual also shows you how to le=
verage multiple matrixes, generating multiple streams of revenue for an un=
limited income potential! Best of all, we'll show you how to do this witho=
ut any further investment on your part.</font>
<p><font face=3D"Arial,Helvetica">We'll also provide you with many sources=

that provide mailing lists and mailing services&nbsp; to help you get movi=
ng
quickly, if you so desire. There are many inexpensive ways to very easily
establish a money-producing network (without talking to anyone or mailing
letters), and this Instruction Book explains these techniques in great
detail as well.</font>
<p><font face=3D"Arial,Helvetica">Our program is called <b>The Matrix,</b>=

it is a 5X3 forced matrix program.&nbsp; In 'traditional' networking progr=
ams,
everyone sponsors as many people as they can, and everyone is pretty much
on their own (uni-level matrix).</font>
<p><font face=3D"Arial,Helvetica">In a forced matrix, however, each person=

can still sponsor as many people as they wish; but after sponsoring a spec=
ific
number of people, the additional people sponsored "overflow" to be placed
under the people in this person's lower levels. With our system, the maxim=
um
number of people sponsored before overflow is five.&nbsp; Your total Matri=
x
will consist of 155 people (5+25+125).</font>
<p><font face=3D"Arial,Helvetica">The primary reason for using a forced ma=
trix
is to automatically help those they sponsor, and it really works great
because it forces your downline to grow rapidly in a downward direction
<b>where
the bigger payoffs are!</b></font>
<p><font face=3D"Arial,Helvetica">You only need to recruit 5 members to co=
mplete
the first level of your downline, and you=FFFFFF92re done.&nbsp; You earn
$10 fo=
r
each of these, so after deducting the $40 fee you paid to join, you are
already $10 ahead! And best of all, the system runs on autopilot from ther=
e.&nbsp;
Those 5 new members recruit five new members each for 25 members in your
second level, and those 25 recruit 5 members each for 125 in your third
level.&nbsp; This brings your total to 155 downline members in your comple=
ted
matrix.&nbsp; You receive <b>$10</b> for each of them, giving you a <b>$15=
50</b>
return on your <b>$40</b> investment.&nbsp; That=FFFFFF92s a <b>3875=
%</b> return
on your money and a matrix of this size can be completed in just a couple
weeks, not months or years like other programs.&nbsp;</font>
<p><font face=3D"Arial,Helvetica">Each week we send you a Payment Report
(along with your cash payment) that shows - in detail - how much cash mone=
y
you have coming to you. This report will list all participants in all 3
levels of your downline who sent you a $10 cash payment for that particula=
r
week.&nbsp; You don=FFFFFF92t have to wait till your matrix is full before
you
get paid.&nbsp; As each person joins your Matrix, you collect <b>$10</b>.&=
nbsp;
This is paid out to you weekly until your matrix is filled, and you have
received a total of <b>$1550</b>.</font>
<p><font face=3D"Arial,Helvetica">Additionally, you can obtain complete pr=
intouts
of your entire downline (called your "Personal Genealogy Report") in sever=
al
different ways. One way to obtain a copy of your Personal Genealogy Report=

is using the Internet to see your entire downline in real time as it stand=
s
on any particular day. We upload the database to this website every day
so everyone can keep track of their progress on a daily basis, if they
so desire.</font>
<center>
<p><b><u><font face=3D"Arial,Helvetica">OUR FULLY AUTOMATED SYSTEM DOES IT=

ALL FOR YOU!</font></u></b></center>

<p><font face=3D"Arial,Helvetica">With <b>The Matrix</b> you get all the
expense and workload out of the way one time and that's it!&nbsp; Not ever=
yone
will see it this way and they are short on vision. They will join other
programs only because it may cost them a few dollars less to get started,
or they fall for the <b><i><font color=3D"#FF0000">Make $50,000 in just 6
months hype.</font></i></b>&nbsp; In the long run they end up paying a
lot more and lose out on making the big money that our members do.</font>
<center>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+4>Get Started Right Now=
!</font></font></b>
<br>
<hr WIDTH=3D"80%"></center>

<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>1. Print This Page</f=
ont></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>2. Fill out the form=

below</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>3. Mail or Fax back =
to
us along with your $40 payment&nbsp;</font></font></b>
<center>
<p><font face=3D"Arial,Helvetica">&nbsp;<b><font color=3D"#FF0000"><font s=
ize=3D+2>Two
Ways To Join!</font></font></b></font></center>

<center><table BORDER=3D2 CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D2
WIDTH=3D=
"100%" BGCOLOR=3D"#FFFFCC" >
<tr>
<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"50%">
<center><b><font face=3D"Arial,Helvetica">Join By Mail Instructions:</font=
></b>
<p><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">BayMarketing<=
/font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">(Sponsor ID:=
1005)&nbsp;</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">P.O. Box 319=
&nbsp;</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">Kure Beach, =
NC
28449</font></font></b>
<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>Include Payment of $4=
0
in the form of:</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Check, Cash or Money=

Order</font></font></b></center>
</td>

<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"50%">
<center><b><font face=3D"Arial,Helvetica">Join By Fax Instructions:&nbsp;<=
/font></b>
<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>Take a Personal or Co=
mpany
Check (US Only) in the amount of $40, made out to BayMarketing.&nbsp; Tape=

it to this page (below your contact information) and fax to:</font></font>=
</b>
<p><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">1-443-238-149=
8</font></font></b></center>
</td>
</tr>
</table></center>

<center>
<p><b><font face=3D"Arial,Helvetica">Sponsor ID: 1005</font></b></center>

<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D2 WIDTH=3D"60=
0" >
<tr>
<td WIDTH=3D"40%"><b><font face=3D"Arial,Helvetica">First Name</font></b><=
/td>

<td WIDTH=3D"60%"><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>=

</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Last Name</font></b></td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Mailing Address (line 1)</font></b><=
/td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Mailing Address (line 2)</font></b><=
/td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">City, State Zip</font></b></td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Country</font></b></td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Phone Number <font size=3D-1>(with a=
rea
code)</font></font></b></td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Email Address <font size=3D-1>(requi=
red)</font></font></b></td>

<td>&nbsp;</td>
</tr>
</table></center>

<center><b><font face=3D"Arial,Helvetica"><font size=3D-1>Your set-up info=
rmation
will be sent to your email address upon receipt of your order</font></font=
></b>
<br>&nbsp;
<br>&nbsp;
<p><font face=3D"Arial,Helvetica">[Attach Check by Fax Here]</font></cente=
r>

<p><br>
<br>
<br>
<br>
<p>
<hr WIDTH=3D"80%">
<center><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font si=
ze=3D-1>THE
MONITORS OFFICE CONTACTS EVERY NEW MEMBER, INCLUDING YOU. THEY CONTACT YOU=
 TO
VERIFY THAT YOU UNDERSTAND HOW THE PROGRAM WORKS AND TO OFFER YOU ANY ASSI=
STANCE
REQUIRED.&nbsp; NO OTHER PROGRAM SPENDS THE TIME OR EXPENSE TO</font></fon=
t></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font
size=3D=
-1>WELCOME
EVERY NEW MEMBER ONBOARD LIKE THIS ONE DOES</font></font></font></b></cent=
er>

<hr WIDTH=3D"80%">
<br>&nbsp;
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D10 COLS=3D1 WIDTH=3D"9=
0%" BGCOLOR=3D"#FFFFCC" >
<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>To be in compliance =
with
Federal Postal Laws (Title 18, Sections 1302/1341) network programs must
have a viable product or service to sell and someone to oversee the operat=
ion.</font></font></b>
<p><font face=3D"Arial,Helvetica"><font size=3D-1><b>The Service: </b>We p=
rovide
a fully automated, monitored program.&nbsp; We maintain a database of all
members, ensuring that our members adhere to-the rules.&nbsp; We provide
marketing and sales services as well as timely processing of our members
applications</font></font>
<p><font face=3D"Arial,Helvetica"><font size=3D-1><b>The Products: </b>Eac=
h
new member receves a step by step Instruction Book (Mastering the Matrix) =
that walks them through
the successful completion of this program.&nbsp; If you follow these easy
step by step instructions, <B>you will make Money.</B> The skills you lear=
n in Mastering the Matrix will work with any network program you ever part=
icipate in.  This book alone is worth more than the entrance fee into this=
 program</font></font></td>
</tr>
</table></center>
</td>
</tr>
</table></center>

<P><center><table BORDER CELLSPACING=3D0 CELLPADDING=3D10 COLS=3D1
WIDTH=3D=
"650" >
<tr>
<td BGCOLOR=3D"#FFFFFF">
<center><b><i><font face=3D"Arial,Helvetica"><font size=3D+2>OUR SUCCESS G=
UARANTEE</font></font></i></b>
<hr WIDTH=3D"80%"></center>
<font face=3D"Arial,Helvetica"><font size=3D-1>If you followed the step by=

step directions in our Instruction Book for success, and you still haven't=

picked up your 5 first level members. (<i>I can't imagine</i>)&nbsp; We
worked out a special deal with the marketing company below.&nbsp; They
will email your ad out to one million people for a highly reduced rate
and guarantee your performance.&nbsp; If after this mailing, you still
haven't filled your (5) first level members, they will continue to mail
your ad at no additional cost
<b>UNTIL YOU DO!</b> This is a special limited
time offer available only to the recipients of this email ad</font></font>=
</td>
</tr>
</table></center>

<P><center><table BORDER CELLSPACING=3D0 CELLPADDING=3D0 COLS=3D1 WIDTH=3D=
"650" BGCOLOR=3D"#FFFFCC" >
<tr>
<td>
<center><font face=3D"Arial,Helvetica">Bulk Email Marketing Services provi=
ded
by Rapidmail 2003</font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+3><font color=3D"#FF00=
00">EXPLODE
</font>Y<font color=3D"#000000">our
Profits</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+2>With 24/7 Dedicated =
Bulk
Email Servers!</font></font></b>
<br>
<hr WIDTH=3D"80%">
<br><font face=3D"Arial,Helvetica"><font size=3D+3>Bulk Email can EXPLODE =
your
Profits!</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Get a Dedicated Bulk =
Email
Server sending out your ad</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>24 hours a day, 7 da=
ys
a week!</font></font></b>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+3>Call 1-800-591-7751&n=
bsp;
ext:101</font></font></b></center>
</td>
</tr>
</table></center>
<A HREF=3D"http://www.herbalplus.us/out.html">Click Here to be removed</A>=

<br>&nbsp;
</body>
</html>
sgmo gxs
ymhmdfwrkxpa lo 
   u  xly y bxhupjjdxmdarm
snzehbgcg b
r

--_DD8D_.CF41--


From 50tvvmum@yahoo.com Sat Nov 29 12:51:36 2003
Return-Path: <50tvvmum@yahoo.com>
Received: from mg034026.user.veloxzone.com.br (MG034026.user.veloxzone.com.br [200.165.34.26])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hATHpCMN008693;
	Sat, 29 Nov 2003 12:51:19 -0500 (EST)
Message-ID: <m0wi995y7p97aa$9teq-k869@h6t.mz>
From: "Tanisha Lester" <50tvvmum@yahoo.com>
Reply-To: "Tanisha Lester" <50tvvmum@yahoo.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: STOP-PAYING For Your PAY-PER-VIEW, Movie Channels, Mature Channels...axl
Date: Sat, 29 Nov 2003 23:01:37 +0500
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="A_B6_3_BD4A.B.D"


--A_B6_3_BD4A.B.D
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Cable TV Subscribers

Get Our Cable TV Filter and Stop-Paying For Your Pay-Per-View, Mature Chan=
nels, Movie Channels, Sporting Events...


Find Out More - www.esavingsplus.com?refid=3D10010000859429816


Don't worry, it's perfectly-legal.  


Check out our legal page on the site: www.esavingsplus.com?refid=3D1001000=
0859429816







No more advertisments -  http://www.esavingsplus.com?unsub=3D1001000085942=
9816

























kvnm qvjojhlyg
gkrnipory pqtthlt
oci

--A_B6_3_BD4A.B.D--


From 9qwqoyiyom@yahoo.com Sun Nov 30 08:59:52 2003
Return-Path: <9qwqoyiyom@yahoo.com>
Received: from 160.36.58.108 (200-245-17-79.papalegua.com.br [200.245.17.79] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hAUDxmMN002389;
	Sun, 30 Nov 2003 08:59:49 -0500 (EST)
Message-ID: <o78t5tve5a243m1sk3kuk5l5kcd9n@nt35q.wi12>
From: "Salvatore Sheppard" <9qwqoyiyom@yahoo.com>
Reply-To: "Salvatore Sheppard" <9qwqoyiyom@yahoo.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: FINANCIAL Independence Is Calling You...andreas
Date: Sun, 30 Nov 2003 11:05:57 -0300
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="BAA_EA29811AB6__.1"


--BAA_EA29811AB6__.1
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Got your attention?

Let me show you the way Financial Independence: www.saax.org?axel=3D49 









No more advertisements, thanks - www.5jzd.org/out5s/pre-rem2e.asp




























vykq gpn
 pickdvjd zr vljapmwkj yq  duedduq

--BAA_EA29811AB6__.1--


From n246zh@yahoo.com Tue Dec  2 14:11:29 2003
Return-Path: <n246zh@yahoo.com>
Received: from adsl-68-122-75-233.dsl.pltn13.pacbell.net (adsl-68-122-75-233.dsl.pltn13.pacbell.net [68.122.75.233])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hB2JBEMN014030
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Tue, 2 Dec 2003 14:11:21 -0500 (EST)
Received: from (HELO 6mgmzx) [244.11.159.101] by adsl-68-122-75-233.dsl.pltn13.pacbell.net with ESMTP id <794282-55200>; Tue, 02 Dec 2003 20:07:58 +0100
Message-ID: <k9l4-$9$0$2426-908-pi$f6-880@8925r.m9prj>
From: "Mitch Odonnell" <n246zh@yahoo.com>
Reply-To: "Mitch Odonnell" <n246zh@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: US STOCK MARKET - HTDS Medical Research---CANCER Trials.....gram
Date: Tue, 02 Dec 2003 20:07:58 +0100
X-Mailer: AOL 7.0 for Windows US sub 118
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="._.C604E.BD8D5C84D.4."
X-Priority: 3


--._.C604E.BD8D5C84D.4.
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

US Stock Market - Stock Profile of the Week

Symbol: HTDS
Market: PK
Sector: MEDICAL RESEARCH


BARCHART Rates HTDS an 80% BUY - http://quotes.barchart.com/texpert.asp?sy=
m=3DHTDS


Before we begin our profile we have very exciting, breaking news...

Tubercin Passes Toxicity Trials - Ready To Proceed To Live Cancer Trials


BREAKING NEWS - DELRAY BEACH, Fla.--(BUSINESS WIRE)--Hard to Treat Disease=
s Incorporated (Pink Sheets:HTDS) announces that Tubercin=AE has passed th=
e toxicity tests required to proceed to the live cancer trials. Testing Tu=
bercin=AE on live Melanoma, Lung and Breast cancer cells will begin immedi=
ately.  The President and CEO, Mr. Colm J. King, met with the spokesperson=
 of the medical group at their offices in Oklahoma City. Mr. King was advi=
sed that the tests were conducted under strict FDA (Federal Drug Administr=
ation) guidelines. Full test results will be available at the corporate of=
fices as soon as the reports and findings are printed. 

"These are the most promising results to date regarding Tubercin=AE and we=
're looking forward to additional positive results in the near future," st=
ated Mr. King. "These tests prove that Tubercin=AE is non-toxic and is the=
 first step on the way to human clinical trials as well as the first posit=
ive breakthrough conducted in the United States with an independent medica=
l group for Tubercin=AE." 

Operating out of Delray Beach, Florida, Hard to Treat Diseases Incorporate=
d ("HTTD") holds the international marketing rights, except South Korea, t=
o Tubercin=AE, a patented immunostimulant developed for combating Cancer u=
nder medical patent (US Patent 6,274,356). The unique properties unlike ot=
her cancer products are clearly stated in the abstract summary of the pate=
nt... "A carbohydrate complex, which is a mixture of low molecular-weight =
polysaccharides of an arabinomannan structure extracted from Mycobacterium=
 tuberculosis, is highly effective in treating various cancer patients wit=
hout incurring any adverse side effects." 



STOCK PROFILE OF THE WEEK

HTDS is now at an emerging and potentially explosive stage.  As stated in =
their press release, Tubercin is now ready to proceed (after tests conduct=
ed under strict FDA guidelines) to human clinical trials.  While they have=
 jumped one very big hurdle, they are still in the early stages of develop=
ment and now is a great time for investors to take heed.



TUBERCIN

Over the past ten years, epoch making anticancer agents have continuously =
been introduced, but the mortality of cancer patients have been rising in =
the U.S. and the European countries not to mention Japan and Korea. The de=
cisive measure to cope with cancer is surgery.
  

When the cancer cells spread throughout the body instead of remaining on t=
he original spot, the treatment should take into consideration chemotherap=
y, radiation therapy and immunotherapy. The drawback of such therapies, ho=
wever, is they incur damages not only on cancer cells, but also on the nor=
mal cells. 
  

Chemotherapy and radiation therapy are not suitable for application on wea=
kened patients, especially those above 70. Historically, various forms of =
immunotherapy have been performed, falling short of therapeutic expectatio=
n. When Bacille calmetteguerin is used as an active no-specific immunother=
apeutic agent, however, the patient's prognosis turns better through a sim=
ulative action on immune system of the cancer case. 
  

Professor T.H. Chung of Korea extracted carbohydrate complex Tubercin from=
 microbacterium tuberculosis to be used as immunostimulant. This was meant=
 to activate the T-lymphocyte of the cancer patient to produce lymphokine.=
 This process strengthened and promoted immuno surveillance activities in =
deficient state and alleviated the pain and prolonged the life of cancer p=
atients.
  

Of late the pharmaceutical industry in advanced countries started to put o=
n the market so called cancer vaccines (active specific immunotherapy). Th=
e vaccines, bacterial extracts, as adjuvants, with autologous and or allog=
enic cancer cells to generate antibodies to cancer cells, facilitating the=
 killer T-cells to recognize and destroy cancer cells.
  

The laboratory work to modify autologous or allogenic cancer cells are not=
 ordinary and simple. When our lab work augments the active specific immun=
otherapeutic agents, the Tubercin will be one of the best adjuvants. Meanw=
hile, the main point of AIDS is its virus killing T-cells and Tubercin hel=
ps maintain healthy T-cells. Consequently, we focus our effort on the appl=
ication of Tubercin to AIDS.
  

TUBERCIN is derived from micro bacterium tuberculosis. As an immunostimula=
nt, TUBERCIN strengthens the human body's own immune system and assists th=
e body in seeking out and combating cancer cells. HTTD is potentially able=
 to develop TUBERCIN into a low-cost product to treat cancer patients on a=
n international scale. Salient treatment, through the administration of TU=
BERCIN, could positively affect thousands of lives in North America. In ad=
dition, Europe and Asia have millions of lives at risk each year because o=
f viral diseases such as cancer.
  

TUBERCIN IS A FINISHED PRODUCT. Tubercin as an inmunostimulant has been ad=
ministered to human patients in stages three and four of terminal cancer. =
There have been no indications of any adverse side effects in human trials=
 There has been encouraging results of patients with TUBERCIN in the last=
 fourteen years. Various forms of cancer were involved and many of the pat=
ients survived.
  

A review of clinical studies indicate TUBERCIN has no side effects and cou=
ld possibly be administered in conjunction with other such modalities for =
the treatment of cancer without any adverse effects. The scientific presum=
ption would be the distinct possibility of a strengthened immunity system =
and the administration of treatment such as chemotherapy at the later stag=
es of tumor growth would not be impeded by the weakened condition of the t=
erminal cancer patient. To this end the Company has been assisted by outsi=
de consultants reviewing the research data and human trials involving TUBE=
RCIN to see specifically whereby incidents of dual treatment produced favo=
rable results in terms of moving toward indication of prolongation of the =
life of the cancer patient.
  

There is recognition that morphine is an trusted pain killer, but in total=
ity it cannot be said that it has no side effects. In the maintaining of p=
atient care, there is the strong possibility that TUBERCIN could be also c=
onsidered as a candidate for a pain management. The Company's scientists d=
escribe TUBERCIN as having the high propensity of deadening the nerve endi=
ngs in specific areas of the body where cancer has caused erosion and cons=
equently much pain.



PATENTS

Presently, HTTD has the patent rights for Korea, Japan and the United Stat=
es. The Korean patent was issued on October 29, 1998 (Registration No. 173=
362). The Japanese patent was issued on June 12, 1998 (Registration No. 27=
90447). The United States patent was issued on August 14, 2001 (Registrati=
on No.6,274,356). Currently, patents are pending for Canada and Europe (th=
e United Kingdom, France, Germany, Italy and Spain).  



CANCER IN OUR TIME

In the 20th century, the number of cancer patients has been on the increas=
e. Although many anti-cancer agents were developed and an enormous study o=
n its essence continued, the mortality by cancer still is increasing. Mank=
ind may be chronically threatened with cancer in the 21st century. Nine mi=
llion new case of cancer occur annually and five million people die from b=
reast cancer, reports the World Health Organization. Dramatic increases in=
 life expectancy and change in lifestyle are estimated to increase the num=
ber of new cancer cases to 20 million annually by 2020 and cancer deaths t=
o more than 10 million. 

About 552,200 Americans - more than 1,500 people a day - are excepted to d=
ie of cancer this year. In the United States, one of every four deaths is =
attributed to cancer. Cancer is the second-leading cause of death in the U=
nited States. Exceeded only by heart disease. About 5 million lives have b=
een lost to cancer since 1990 and about 13 million new cases have been dia=
gnosed. In 2000, more then 1.2 million new cancer cases are expected to be=
 diagnosed. The number of cancer cases will continue to grow, spurred by t=
he aging population. By 2009, this patient group could total 8.4 million. =
In 1997, about 6.3 million people worldwide died from some form of cancer,=
 and most major international cancer agencies expect this number to double=
 by 2022.








Please note that HTDS had absolutley nothing to do with this report and is=
 not a participant in any way.









No more advertisements: http://doubleopt.biz/optout.html









Stock Market Today is an independent research firm. This report is based o=
n Stock Market Today's independent analysis but also relies on information=
 supplied by sources believed to be reliable. This report may not be the o=
pinion of HTDS management. Stock Market Today has also been retained to re=
search and issue reports on HTDS. Stock Market Today may from time to time=
 purchase or sell HTDS common shares in the open market without notice. Th=
e information contained in this report shall not constitute, an offer to s=
ell or solicitation of any offer to purchase any security. It is intended =
for information only. Some statements may contain so-called "forward-looki=
ng statements". Many factors could cause actual results to differ. Investo=
rs should consult with their Investment Advisor concerning HTDS. Copyright=
 2003 =A9 Stock Market Today Ltd. All Rights Reserved. This newsletter was=
 distributed by MMS, Inc. MMS was paid eight hundred and fifty thousand sh=
ares HTDS stock to distribute this report. MMS is not affiiated with Stock=
 Market Today and is not responsible for newsletter content.





























hcs pc q cgbf
kepvstd y wzptnjvvn zxzricu qzxrolqzt

--._.C604E.BD8D5C84D.4.--


From fvd260eeuq@msn.com Tue Dec  2 17:03:26 2003
Return-Path: <fvd260eeuq@msn.com>
Received: from pcp02512373pcs.halyvl01.nj.comcast.net (pcp02512373pcs.halyvl01.nj.comcast.net [68.44.61.29])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hB2M3HMN018809;
	Tue, 2 Dec 2003 17:03:20 -0500 (EST)
Received: from [28.196.57.211]
	by pcp02512373pcs.halyvl01.nj.comcast.net;
	Wed, 03 Dec 2003 02:55:52 +0500
Message-ID: <g3p9zn-528$6zz4j272$-$sw@p30tr0li>
From: "Brice Olsen" <fvd260eeuq@msn.com>
Reply-To: "Brice Olsen" <fvd260eeuq@msn.com>
To: <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Mom, stay at home and work uowkpeknotxur x hesw
Date: Wed, 03 Dec 03 02:55:52 GMT
X-Mailer: Microsoft Outlook IMO, Build 9.0.2416 (9.0.2910.0)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="72_E_1C6ACC4"
X-Priority: 3
X-MSMail-Priority: Normal


--72_E_1C6ACC4
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Are interested in Working Full time at home?


If so just take one moment to see how you can start today.

http://www.ecom-universe.net/splash1/FF.htm

- No cold calling - No sales calls
- Put your computer to work
- No Boring Meetings to Attend.
- A Simple Turnkey System.
- You Can Earn Money Quickly.
- You will GET RESIDUAL INCOME Over And Over.
- Plus Great Support and Training.

This system really works..thousands are cashing in and you can to.

If this is something you have been wanting to do just take the test drive.=


http://www.ecom-universe.net/splash1/FF.htm

P.S. If I sent this to you by mistake just shoot me back an email and I wi=
ll take you off the list...but please remember we only make money if you d=
o and we NEED to make this work for you...let us know how we can help.

Best Regards,

Steve S.ivqdw u
altdgivsrwjhpxow

--72_E_1C6ACC4--


From hehp817o@china.org.cn Wed Dec  3 11:59:22 2003
Return-Path: <hehp817o@china.org.cn>
Received: from 160.36.58.108 ([211.49.57.222])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hB3Gx3MN015642;
	Wed, 3 Dec 2003 11:59:12 -0500 (EST)
Received: from (HELO bv1x) [95.67.136.115] by 160.36.58.108 with ESMTP id 98013065; Wed, 03 Dec 2003 22:53:53 +0600
Message-ID: <7qh9r$l-1k$4p@2yfkkng4ic5>
From: "Rachelle Cross" <hehp817o@china.org.cn>
Reply-To: "Rachelle Cross" <hehp817o@china.org.cn>
To: <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Special invitation - Join us tonight bsebarj yqcrvvqao
Date: Wed, 03 Dec 03 22:53:53 GMT
X-Mailer: Microsoft Outlook Express 6.00.2462.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=".FDBBC4_.18FD_A_A"
X-Priority: 3
X-MSMail-Priority: Normal


--.FDBBC4_.18FD_A_A
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Are interested in Working Full time at home?


If so just take one moment to see how you can start today.

http://www.ecom-universe.net/splash1/FF.htm

- No cold calling - No sales calls
- Put your computer to work
- No Boring Meetings to Attend.
- A Simple Turnkey System.
- You Can Earn Money Quickly.
- You will GET RESIDUAL INCOME Over And Over.
- Plus Great Support and Training.

This system really works..thousands are cashing in and you can to.

If this is something you have been wanting to do just take the test drive.=


http://www.ecom-universe.net/splash1/FF.htm

P.S. If I sent this to you by mistake just shoot me back an email and I wi=
ll take you off the list...but please remember we only make money if you d=
o and we NEED to make this work for you...let us know how we can help.

Best Regards,

Steve S.kxchckngckl
igyqopkyylnwtbkemev vk

v 
abcg b  wppgsoacfyrmbnqfl

--.FDBBC4_.18FD_A_A--


From p497ax@yahoo.com Thu Dec  4 11:33:15 2003
Return-Path: <p497ax@yahoo.com>
Received: from 200-193-230-032.gnace7001.dsl.brasiltelecom.net.br (200-193-230-032.gnace7001.dsl.brasiltelecom.net.br [200.193.230.32])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hB4GXAMN027061
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 4 Dec 2003 11:33:13 -0500 (EST)
Received: from (HELO rat0ee) [16.179.119.81] by 200-193-230-032.gnace7001.dsl.brasiltelecom.net.br SMTP id r844Ki31Vjqffn; Thu, 04 Dec 2003 22:27:45 +0600
Message-ID: <j-lat58$46lb7$u@b8e.i.5xb>
From: "Devin Heath" <p497ax@yahoo.com>
Reply-To: "Devin Heath" <p497ax@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: AFTER-HOURS TRADING - Breaking News...kame
Date: Thu, 04 Dec 2003 22:27:45 +0600
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="A139C.DF_E.C"
X-Priority: 3


--A139C.DF_E.C
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

AFTER-HOURS TRADING - BREAKING NEWS

Get Quote - http://quote.money.cnn.com/quote/quote?symbols=3Dhtds

Hard to Treat Diseases Incorporated - HTDS - Announces: Receipt of Tuberci=
n Toxicity Study and Formation of Scientific Advisory Panel - Wednesday De=
cember 3, 8:04 pm ET 

DELRAY BEACH, Fla.--(BUSINESS WIRE)--Dec. 3, 2003--Hard to Treat Diseases =
Incorporated (Pink Sheets: HTDS) announces today that the spokesperson for=
 the independent medical group conducting the testing for HTTD (HTDS) has =
forwarded the formal Testing Results of Tubercin=AE's Toxicity Trials to H=
TTD.

Tubercin of five different concentrations was administered to five groups =
of mice. A pathologist at the University of Oklahoma Health Science Center=
 performed autopsies. The mice were randomized and only the control mouse =
was known to the pathologist, as stated in the cover letter of the Patholo=
gy Report.

The report concludes, "All tissues evaluated, visceral organs and the brai=
n were essentially normal in appearance." "The importance of this report i=
s even better than I expected," stated the spokesperson for the medical gr=
oup. "As the testing continues and if the results are similar to those of =
Chemotherapy and or radiation with no harmful side effects, Tubercin has e=
normous potential for the treatment of cancer and the immune system."

The President and CEO of HTTD, Mr. Colm J. King is in the process of formi=
ng a Scientific Advisory Panel with leading Oncologists and Immunologists =
from prestigious institutions in the U.S. The panel will review the report=
s and results of Tubercin=AE's findings and will report back to Mr. King w=
ith the ongoing reports in layman language for the shareholders.

"We are continuing to receive promising results regarding Tubercin=AE and =
we're looking forward to additional positive results in the near future," =
stated Mr. King. "These tests prove that Tubercin=AE is non-toxic and is t=
he first step on the way to human clinical trials as well as the first pos=
itive breakthrough conducted in the United States with an independent medi=
cal group for Tubercin=AE. 

Operating out of Delray Beach, Florida, Hard to Treat Diseases Incorporate=
d ("HTTD") holds the international marketing rights, except South Korea, t=
o Tubercin=AE, a patented immunostimulant developed for combating Cancer u=
nder medical patent (US Patent 6,274,356). The unique properties unlike ot=
her cancer products are clearly stated in the abstract summary of the pate=
nt... "A carbohydrate complex, which is a mixture of low molecular-weight =
polysaccharides of an arabinomannan structure extracted from Mycobacterium=
 tuberculosis, is highly effective in treating various cancer patients wit=
hout incurring any adverse side effects." 






Statements in this press release that are not historical facts are forward=
-looking statements within the meaning of the Securities Act of 1933, as a=
mended. Those statements include statements regarding the intent, belief o=
r current expectations of the Company and its management. Such statements =
reflect management's current views, are based on certain assumptions and i=
nvolve risks and uncertainties. Actual results, events, or performance may=
 differ materially from the above forward-looking statements due to a numb=
er of important factors, and will be dependent upon a variety of factors, =
including, but not limited to, our ability to obtain additional financing =
and access funds from our existing financing arrangements that will allow =
us to continue our current and future operations and whether demand for ou=
r product and testing service in domestic and international markets will c=
ontinue to expand. The Company undertakes no obligation to publicly update=
 these forward-looking statements to reflect events or circumstances that =
occur after the date hereof or to reflect any change in the Company's expe=
ctations with regard to these forward-looking statements or the occurrence=
 of unanticipated events.



























uvbe 

--A139C.DF_E.C--


From nnshvit@watel.qc.ca Thu Dec  4 21:21:24 2003
Return-Path: <nnshvit@watel.qc.ca>
Received: from host026196.redesdelsur.com (host026196.redesdelsur.com [200.69.26.196] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hB52LFMN010027
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 4 Dec 2003 21:21:17 -0500 (EST)
Received: from [40.128.227.110] by host026196.redesdelsur.com with SMTP; Fri, 05 Dec 2003 07:12:56 +0500
Message-ID: <a$h405w2y-437-3-d$a06$dor9@ng413.9kxl>
From: "Trudy Bourgeois" <nnshvit@watel.qc.ca>
Reply-To: "Trudy Bourgeois" <nnshvit@watel.qc.ca>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: This IS a legitimate BUSINESS udpkgwljjj
Date: Fri, 05 Dec 03 07:12:56 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2627
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="C5BE.AEE0B"
X-Priority: 3
X-MSMail-Priority: Normal


--C5BE.AEE0B
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
</head>
<body text=3D"#000000" bgcolor=3D"#009900" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
<center><table CELLSPACING=3D0 WIDTH=3D"690" BGCOLOR=3D"#FFFFFF" class=3D"=
center" >
<tr>
<td class=3D"backImg">&nbsp;
<center>
<br><b><font face=3D"Arial">DO NOT DELETE THIS - <u>READ FIRST</u> - IT WI=
LL
CHANGE YOUR LIFE!</font></b>
<p><font face=3D"Arial"><font size=3D+2>This <b>Really Works</b>!</font></=
font>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>Give=
 Your
Future Five Minutes And Read This Email</font></font></font></u></b>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>It W=
ill
Change Your Life!</font></font></font></u></b>
<p><b><i><font face=3D"Arial">A One Time Investment Of $25 Plus This Simpl=
e
Technology</font></i></b>
<br><b><i><font face=3D"Arial">Could Make You Financially Secure For Life!=
</font></i></b></center>

<blockquote>
<center><font face=3D"Arial">Just Because <b>This&nbsp; Is Easy</b> doesn'=
t
mean it's not <b>Honest</b>, or <b>Real Business</b>.&nbsp; Keep&nbsp;</fo=
nt>
<br><font face=3D"Arial"><b>Working Hard</b> or Learn to <b>Work Smart</b>=
.
What do you think Successful People Do?</font></center>

<blockquote><font face=3D"Arial">This is a completely documented method to=

Get Wealthy and Anyone regardless of Age, Race, State of Health, Country
of origin, or Financial Standing can participate. No Education or Special
Experience is needed. Within the next two weeks you could be well on your
way to a $500,000.00 income. Imagine being able to make over a half millio=
n
dollars every 4 to 5 months from your home.</font></blockquote>

<center><b><font face=3D"Arial">THANK'S TO THE COMPUTER AGE AND THE INTERN=
ET</font></b>
<p><b><font face=3D"Arial"><font size=3D+1>AS SEEN ON NATIONAL TV:</font><=
/font></b></center>

<center><b><font face=3D"Arial">PARENTS OF 15 - YEAR OLD - FIND $71,000 CA=
SH
HIDDEN IN HIS CLOSET!</font></b></center>

<blockquote><font face=3D"Arial">Does this headline look familiar? Of cour=
se
it does. You most likely have just seen this story recently featured on
a major nightly news program (USA). And reported elsewhere in the world.
His mother was cleaning and putting laundry away when she came across a
large brown paper bag that was suspiciously buried beneath some clothes
and a skateboard in the back of her 15-year-old sons closet. Nothing could=

have prepared her for the shock she got when she opened the bag and found
it was full of cash. Five-Dollar Bills, Twenties, Fifties and Hundreds
- all neatly rubber-banded in labelled piles.</font>
<p><font face=3D"Arial">"My first thought was that he had robbed a bank",
says the 41-year-old woman, "There was over $71,000 Dollars in that bag
-- that's more than my husband earns in a year".</font>
<p><font face=3D"Arial">The woman immediately called her husband at the ca=
r-dealership
where he worked to tell him what she had discovered. He came home right
away, and they drove together to the boys school, and picked him up. Littl=
e
did they suspect that where the money came from, was more shocking than
actually finding it in the closet.</font>
<p><font face=3D"Arial">As it turns out, the boy had been sending out, via=

E-mail, a type of "Report" to E-mail addresses that he obtained off the
Internet. Everyday after school for the past 2 months, he had been doing
this right on his computer in his bedroom.</font>
<p><font face=3D"Arial">"I just got the E-mail one day and I figured what
the heck, I put my name on it like the instructions said and I started
sending it out", says the clever 15-year-old.</font>
<p><font face=3D"Arial">The E-mail letter listed 5 addresses and contained=

instructions to send one $5 dollar bill to each person on the list, then
delete the address at the bottom and move the others addresses Down , and
finally to add your name to the top of the list.</font>
<p><font face=3D"Arial">The letter goes on to state that you would receive=

Several Thousand Dollars in Five-Dollar Bills within 2 weeks if you sent
out the letter with your name at the top of the 5-address list. "I get
junk E-mail all the time, and really did not think it was going to work",
the boy continues.</font>
<p><font face=3D"Arial">Within the first few days of sending out the E-mai=
l,
the Post Office Box that his parents had gotten him for his video-game
magazine subscriptions began to fill up with not with magazines, but envel=
opes
containing $5 Bills.</font>
<p><font face=3D"Arial">"About a week later I rode [my bike] down to the
post office and my box had 1 magazine and about 300 envelops stuffed in
it. There was also a yellow slip that said I had to go up to the [post
office] counter. I thought I was in trouble or something (laughs)". He
goes on, "I went up to the counter and they had a whole box of more mail
for me. I had to ride back home and empty out my backpack because I could
not carry it all". Over the next few weeks, the boy continued sending out
the E-mail."The money just kept coming in and I just kept sorting it and
stashing it in the closet, barely had time for my homework".He had also
been riding his bike to several of the banks in his area and exchanging
the $5 bills for twenties, fifties and hundreds.</font>
<p><font face=3D"Arial">"I didn't want the banks to get suspicious so I ke=
pt
riding to different banks with like five thousand at a time in my backpack=
.
I would usually tell the lady at the bank counter that my dad had sent
me in to exchange the money and he was outside waiting for me.One time
the lady gave me a really strange look and told me that she would not be
able to do it for me and my dad would have to come in and do it, but I
just rode to the next bank down the street (laughs)." Surprisingly, the
boy did not have any reason to be afraid.The reporting news team examined
and investigated the so-called "chain-letter" the boy was sending out and
found that it was not a chain-letter at all.In fact, it was completely
legal according to US Postal and Lottery Laws, Title 18, Section 1302 and
1341, or Title 18, Section 3005 in the US code, also in the code of federa=
l
regulations, Volume 16, Sections 255 and 436, which state a product or
service must be exchanged for money received.</font>
<p><font face=3D"Arial">Every five-dollar bill that he received contained
a little note that read, "Please send me report number XYX".This simple
note made the letter legal because he was exchanging a service (A Report
on how-to) for a five-dollar fee.</font>
<p><font face=3D"Arial">[This is the end of the media release. If you woul=
d
like to understand how the system works and get your $71,000 plus - please=

continue reading. What appears below is what the 15 year old was sending
out on the net - YOU CAN USE IT TOO - just follow the simple instructions]=
</font>
<br>&nbsp;
<br>&nbsp;
<p><b><font face=3D"Arial">BE AN INTERNET MILLIONAIRE LIKE OTHERS&nbsp; WI=
THIN
A YEAR!!!</font></b>
<p><font face=3D"Arial"><b>Before you say ''Bull'', please read the follow=
ing.</b>
This is the letter you have been hearing about on the news lately. Due
to the popularity of this letter on the Internet, a national weekly news
program recently devoted an entire show to the investigation of this progr=
am
described below, to see if it really can make people money. The show also
investigated whether or not the program was legal.</font>
<p><font face=3D"Arial">Their findings proved once and for all that there
are ''absolutely NO Laws prohibiting the participation in the program and
if people can "follow the simple instruction" they are bound to make some
mega bucks with only $25 out of pocket cost''.</font>
<p><font face=3D"Arial">DUE TO THE RECENT INCREASE OF POPULARITY &amp; RES=
PECT
THIS PROGRAM HAS ATTAINED, IT IS CURRENTLY WORKING BETTER THAN EVER.</font=
>
<p><font face=3D"Arial">This is what one had to say:&nbsp;</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">''Thanks to th=
is
profitable opportunity". I was approached many times before but each time
I passed on it. I am so glad I finally joined just to see what one could
expect in return for the minimal effort and money required. To my astonish=
ment,
I received a total $ 610,470.00 in 21 weeks, with money still coming in''.=
</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>Pam =
Hedland</font></font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>For=
t Lee,
New Jersey.</font></font></font></i></b></blockquote>
</blockquote>

<hr width=3D"600" noshade>
<blockquote><font face=3D"Arial">Another said:</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"This program =
has
been around for a long time but I never believed in it. But one day when
I received this again in the mail I decided to gamble my $25 on it. I foll=
owed
the simple instructions and Wa-laa ..... 3 weeks later the money started
to come in. First month I only made $240.00 but the next 2 months after
that I made a total of $290,000.00. So far, in the past 8 months by re-ent=
ering
the program, I have made over $710,000.00 and I am playing it again. The
key to success in this program is to follow the simple steps and NOT chang=
e
anything."</font></font></i></blockquote>

<p><br><font face=3D"Arial">More testimonials later but first...</font></b=
lockquote>
</blockquote>

<center>
<p><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENCE</font>=
</b></center>

<p>
<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to
make at least $500,000 every 4 to 5 months easily and</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">comfortably, please re=
ad
the following...THEN READ IT AGAIN and AGAIN !!!</font></font></b></center=
>

<hr width=3D"85%">
<center>
<p><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fon=
t></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>

<blockquote>
<blockquote><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>=

<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font></blockquote>
</blockquote>

<center>
<p><br><b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>=

<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You will need all 5 reports so that you
can save them on your computer and resell them.</font>
<center>
<p><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>

<p><font face=3D"Arial">Within a few days <b>you will receive, via e-mail,=

each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<p><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will loose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!&nbsp;</u></b=
></font></blockquote>

<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b>
<p><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such and=

you will be VERY profitable in a short period of time</font></font></i></b=
></center>
</blockquote>

<blockquote>
<blockquote><font face=3D"Arial">After you have ordered all 5 reports, tak=
e
this advertisement and REMOVE the name &amp; address of the person in REPO=
RT
# 5. This person has made it through the cycle and is no doubt counting
their fortune. Email them and ask that's what I always did.</font><font fa=
ce=3D"Arial">Move
the name &amp; address in REPORT # 4 down TO REPORT # 5.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 3 down TO REPORT # 4.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 2 down TO REPORT # 3.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 1 down TO REPORT # 2</font><font
face=3D=
"Arial">Insert
YOUR name &amp; address in the REPORT # 1 Position.</font></blockquote>

<center>
<p><br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &a=
mp;
address <b>ACCURATELY</b></font>
<br><font face=3D"Arial">(Just cut and paste! This is critical to <b>YOUR
</b>success.</font></center>
</blockquote>

<center><font face=3D"Arial">Take this entire letter, with the modified li=
st
of names, and save it on your computer.</font>
<p><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cente=
r>

<blockquote>
<blockquote><font face=3D"Arial"><b>Save this on a disk as well just in ca=
se
if you loose any data</b>. To assist you with marketing your business on
the internet, the 5 reports you purchase will provide you with invaluable
marketing information which includes how to send bulk e-mails legally,
where to find thousands of free classified ads and much more. There are
2 Primary methods to get this venture going:</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY=
</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Let's say that you decide to start small,=

just to see how it goes, and we will assume You and those involved send
out only 5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NU=
MBERS
DO NOT LIE</font></font></font></b></center>

<blockquote>
<blockquote><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-=
1>GET
A PENCIL &amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO
MATTER HOW YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did
it was $55,000 in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 2: BY PLACING FREE ADS ON THE INT=
ERNET</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Advertising on the net is very, very inex=
pensive
and there are hundreds of FREE places to advertise. Placing a lot of free
ads on the Internet will easily get a larger response. We strongly suggest=

you start with Method # 1 and add METHOD #2 as you go along. For every
$5 you receive, all you must do is e-mail them the Report they ordered.
That's it. Always provide same day service on all orders.</font>
<p><font face=3D"Arial">This will guarantee that the e-mail they send out,=

with your name and address on it, will be prompt because they can not adve=
rtise
until they receive the report.</font>
<p><font face=3D"Arial">The reason for the "cash" is not because this is
illegal or somehow "wrong". It is simply about time. Time for checks or
credit cards to be cleared or approved, etc. Concealing it is simply so
no one can SEE there is money in the envelope and steal it before it gets
to you.</font></blockquote>

<center><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME=

ONLY</b>.</font></center>

<blockquote><b><font face=3D"Arial">Notes:</font></b>
<p><font face=3D"Arial">Always send $5 cash (U.S. CURRENCY) for each Repor=
t.
Checks NOT accepted. Make sure the cash is concealed by wrapping it in
at least 2 sheets of paper or foil will also work. On one of those sheets
of paper, write the NUMBER &amp; the NAME of the Report you are ordering,
YOUR E-MAIL ADDRESS and your name and postal address.</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></=
font></b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<br>&nbsp;
<center><table WIDTH=3D"80%" class=3D"center" >
<tr>
<td WIDTH=3D"30%" BGCOLOR=3D"#009900" class=3D"left">&nbsp;</td>

<td>
<br><b><font face=3D"Arial">REPORT #1:&nbsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<blockquote><b><font face=3D"Arial,Helvetica"><font size=3D-1>G. Ellis</fo=
nt></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>PO Box 6920</font></=
font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Eagle Pass, TX 78853=
</font></font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>R.Chernick</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 771661</font></font><=
/b>
<br><b><font face=3D"Arial"><font size=3D-1>C.S Fla 33077-1661</font></fon=
t></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>G.M. Boland</font></fo=
nt></b>
<br><b><font face=3D"Arial"><font size=3D-1>353 Jonestown Road</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>Suite # 125</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Salem, N.C. 27104</font></font=
></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>M. Eiseman</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 451971</font></font><=
/b>
<br><b><font face=3D"Arial"><font size=3D-1>Sunrise Fla 33345-1971</font><=
/font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:&nbsp;</f=
ont></font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>R. Gendelman</font></f=
ont></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 8573</font></font></b=
>
<br><b><font face=3D"Arial"><font size=3D-1>Tel Aviv</font></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Israel 61085</font></font></b>=
</blockquote>
</td>
</tr>
</table></center>

<blockquote>
<blockquote>
<center><b><font face=3D"Arial"><font size=3D+0>There are currently more t=
han
570,000,000 people online worldwide!</font></font></b></center>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$=
$$$$$
YOUR SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>

<blockquote><font face=3D"Arial">Follow these guidelines to guarantee your=

success:</font>
<p><font face=3D"Arial">If you do not receive at least 10 orders for Repor=
t
#1 within 2 weeks, continue sending e-mails until you do.</font>
<p><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks af=
ter
that you should receive 100 orders or more for REPORT # 2. If you did not,=

continue advertising or sending e-mails until you do.</font>
<p><font face=3D"Arial">**Once you have received 100 or more orders for Re=
port#
2, YOU CAN RELAX, because the system is already working for you, and the
cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Every time
your name is moved down on the list, you are placed in front of a Differen=
t
report.</font>
<p><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching wh=
ich
report people are ordering from you. IF YOU WANT TO GENERATE MORE INCOME
SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN. There
is NO LIMIT to the income you can generate from this business!!!</font></b=
lockquote>
</blockquote>

<center><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF=

THIS PROGRAM:</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You have just received information that
can give you financial freedom for the rest of your life, with NO RISK
and JUST A LITTLE BIT OF EFFORT. You can make more money in the next few
weeks and months than you have ever imagined. Follow the program EXACTLY
AS INSTRUCTED. Do not change it in any way. It works exceedingly well as
it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to Cole Schulte (me) I send out
least 5 million a month, there are bulk emails companies you can hire and
they do all the work for you...) Remember though, the more you send out
the more potential customers you will reach. So my friend, I have given
you the ideas, information, materials and opportunity to become financiall=
y
independent. IT IS UP TO YOU NOW!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">MORE TESTIMONIALS</font></b></center>

<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"My name is Mi=
tchell.
My wife, Jody and I live in Chicago. I am an accountant with a major U.S.C=
orporation
and I make pretty good money. When I received this program I grumbled to
Jody about receiving 'junk mail'. I made fun of the whole thing, spouting
my knowledge of the population and percentages involved. I 'knew' it would=
n't
work. Jody totally ignored my supposed intelligence and few days later
she jumped in with both feet. I made merciless fun of her, and was ready
to lay the old 'I told you so' on her when the thing didn't work. Well,
the laugh was on me! Within 3 weeks she had received 50 responses. Within
the next 45 days she had received total $ 147,200.00 ........ all cash!
I was shocked. I have joined Jody in her 'hobby'."</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Mitchell Wolf M.D.,<=
/font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Chicago, Illinois</=
font></font></i></b></blockquote>
</blockquote>

<center>
<hr width=3D"85%"></center>

<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"Not being the=

gambling type, it took me several weeks to make up my mind to participate
in this plan. But conservative as I am, I decided that the initial investm=
ent
was so little that there was just no way that I wouldn't get enough orders=

to at least get my money back. I was surprised when I found my medium size=

post office box crammed with orders. I made $319,210.00 in the first 12
weeks. The nice thing about this deal is that it does not matter where
people live. There simply isn't a better investment with a faster return
and so big".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Dan Sondstrom,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Alberta, Canada</fo=
nt></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"I had receive=
d
this program before. I deleted it, but later I wondered if I should have
given it a try. Of course, I had no idea who to contact to get another
copy, so I had to wait until I was e-mailed again by someone else........1=
1
months passed then it luckily came again...... I did not delete this one!
I made more than $490,000 on my first try and all the money came within
22 weeks".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Susan De Suza,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">New York, N.Y.</fon=
t></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"It really is =
a
great opportunity to make relatively easy money with little cost to you.
I followed the simple instructions carefully and within 10 days the money
started to come in. My first month I made $ 20,560.00 and by the end of
third month my total cash count was $ 362,840.00. Life is beautiful, Thanx=

to the internet".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Fred Dellaca,</font>=
</font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Westport, New Zeala=
nd</font></font></i></b></blockquote>

<hr width=3D"85%"></blockquote>

<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<p><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></font=
></b></center>
</blockquote>

<center><i><font face=3D"Arial"><font size=3D-1>If you have any questions =
as
to the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<p>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>This =
message
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

<div class=3D"ItalicBold"></div>

</body>
</html>
b af  rmi


jgz by

--C5BE.AEE0B--


From hmn8tgddmd@msn.com Tue Dec  9 22:08:33 2003
Return-Path: <hmn8tgddmd@msn.com>
Received: from 69-144-222-222.client.bresnan.net (69-144-222-222.client.bresnan.net [69.144.222.222])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hBA38JMN010925;
	Tue, 9 Dec 2003 22:08:22 -0500 (EST)
Received: from [2.127.121.57] by 69-144-222-222.client.bresnan.net with SMTP; Mon, 05 May 2003 13:36:38 +0600
Message-ID: <pl9gn448b4$39w7-1hvz---9xo-1@qy1vqmp>
From: "Leonor Perdue" <hmn8tgddmd@msn.com>
Reply-To: "Leonor Perdue" <hmn8tgddmd@msn.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Subject: Best 0nline CASIN0 Awards nwnptj qzqt qmdl
Date: Mon, 05 May 2003 13:36:38 GMT
X-Mailer: Microsoft Outlook Express 5.00.2919.6700
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="A5A615._7CBBEE_D"
X-Priority: 3
X-MSMail-Priority: Normal


--A5A615._7CBBEE_D
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<HTML>
<HEAD>
<TITLE></TITLE>
<META name=3D"description" content=3D"">
<META name=3D"keywords" content=3D"">
<META name=3D"generator" content=3D"CuteHTML">
</HEAD>
<BODY BGCOLOR=3D"#FFFFFF" TEXT=3D"#000000" LINK=3D"#0000FF" VLINK=3D"#8000=
80">

<!-- Start Evidence Eliminator Text Table Code -->

<div align=3D"center">
<table border=3D"1" cellpadding=3D"0" cellspacing=3D"0" width=3D"630"
bordercolor=3D"#0000FF" align=3D'center'>
<tr><td><table border=3D"0" width=3D"630" bgcolor=3D"#FFFFFF"
cellpadding=3D=
"8"
cellspacing=3D"0" align=3D'center'>
<tr><td width=3D"88"><p align=3D"center">
<a
href=3D"http://ww%77.%65v%69%64%65%6E%63e%2D%65%6C%69%6D%69%6Ea=
%74%6F%72%2E%63%6F%6D/d2w/e.d2w?a=3DA1924&tr=3Dm&rq=3D956672&cl
ick=3Dmark"
onMouseOver=3D"parent.status=3D'Evidence Eliminator';return true"
onMouseOut=3D"parent.status=3D'';return true">
<img border=3D"0" src=3D"http://ww%77%2E%77%65b%64%69%6Cz%2Ec=
%6Fm/images/boxshotsmall.gif" width=3D"88" height=3D"120"><br>
<font face=3D"Arial" size=3D"2" color=3D"#0000FF">The Safe &amp; Easy
Solution</font>
</a></p></td><td><p align=3D"left">
<a
href=3D"http://ww%77.%65v%69%64%65%6E%63e%2D%65%6C%69%6D%69%6Ea=
%74%6F%72%2E%63%6F%6D/d2w/e.d2w?a=3DA1924&tr=3Dm&rq=3D956672&cl
ick=3Dmark"
onMouseOver=3D"parent.status=3D'Evidence Eliminator';return true"
onMouseOut=3D"parent.status=3D'';return true"><b><u>
<font face=3D"Arial" color=3D"#FF0000" size=3D"4"><i>Reckon you can clean =
your own
hard disk?</i></font>
<font face=3D"Arial" size=3D"2" color=3D"#0000FF"><br><br>
Deleting "Internet Cache and History" will NOT protect you.
Formatting a disk does NOT delete the contents. Pressing Delete does NOT
delete pictures.
<br><br>Everything you EVER DID is STILL STORED IN YOUR PC.
<br><br><font size=3D"3">CLICK HERE TO CLEAN YOUR PC PROPERLY
</font></font></u></b></a></p></td></tr></table></td></tr></table></div>

<!-- End Evidence Eliminator Text Table Code -->
</FONT></FONT></U></B></A></P></TD></TR></TBODY></TABLE></TD></TR></TBODY>=
</
TAB
>
<p align=3D"left">&nbsp;</p>
<p align=3D"center"><a href=3D"http://www%2E%77eb%64%65%61%6Cz=
%2Ec%6F%6D/unlist.html">Click Here</a> if you no 
longer wish to receive our offers.</p>
</DIV></BLOCKQUOTE></BODY></HTML>h ez rp
uls
hef
znrehgyy
imhosqnkz xnprxwz

--A5A615._7CBBEE_D--


From 741ouzmuu@hotmail.com Thu Dec 11 04:25:38 2003
Return-Path: <741ouzmuu@hotmail.com>
Received: from c-67-168-146-56.client.comcast.net (c-67-168-146-56.client.comcast.net [67.168.146.56])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hBB9PaMN022092;
	Thu, 11 Dec 2003 04:25:36 -0500 (EST)
Received: from [213.143.229.24]
	by c-67-168-146-56.client.comcast.net with ESMTP id 72689270;
	Thu, 11 Dec 2003 11:24:40 +0200
Message-ID: <5$3i-1$$6pnh1p@7ff.oz81.uw0q1>
From: "Gino Hutton" <741ouzmuu@hotmail.com>
Reply-To: "Gino Hutton" <741ouzmuu@hotmail.com>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Re: Your requested information b e
Date: Thu, 11 Dec 03 11:24:40 GMT
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="D54E6_06D8E._7A"
X-Priority: 3
X-MSMail-Priority: Normal


--D54E6_06D8E._7A
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

html>

<head>
<meta http-equiv=3D"Content-Language" content=3D"en-us">
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dwindows-=
1252">
<meta name=3D"GENERATOR" content=3D"Microsoft FrontPage 4.0">
<meta name=3D"ProgId" content=3D"FrontPage.Editor.Document">
<title>Hi</title>
</head>


<p>Hi,</p>
<pre>We guarantee that your site will receive a minimum </pre>
<pre>of 10 - 25 listings with TOP 10 Rankings on major </pre>
<pre>search engines. <a href=3D"http://www.marketingbooster.com">http://ww=
w.marketingbooster.com</a> </pre>
<p>Thanks,</p>
<p>Steve S.</p>

<P><BR>
<p align=3D"center">&nbsp;</p>

<p align=3D"center"><font size=3D"2">To be removed from our mailing list p=
lease
 send a blank email to us by <a href=3D"mailto:similar9999@cs.com">clickin=
g here.</a></font></p>

</html>
xxrlxpsny r w
 rnkbs 
szl  f tmoj

--D54E6_06D8E._7A--


From zzkuyu@adelphia.net Tue Dec 23 23:20:20 2003
Return-Path: <zzkuyu@adelphia.net>
Received: from CPE0008a10fa569-CM00e06f1fba84.cpe.net.cable.rogers.com (CPE0008a10fa569-CM00e06f1fba84.cpe.net.cable.rogers.com [63.139.62.247])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hBO4K5MN024155;
	Tue, 23 Dec 2003 23:20:09 -0500 (EST)
Received: from [162.234.38.17]
	by CPE0008a10fa569-CM00e06f1fba84.cpe.net.cable.rogers.com
	for <blast-funct-archive@netlib2.cs.utk.edu>; Mon, 19 May 2003 10:52:49 +0200
Message-ID: <rju4-$$om1w49k-nz20w0fkf@jrh.xmwqffj632>
From: "Marquita Sheehan" <zzkuyu@adelphia.net>
Reply-To: "Marquita Sheehan" <zzkuyu@adelphia.net>
To: blast-funct-archive@netlib2.cs.utk.edu
Subject: Extreme Video Footage..  ( adult)  mwzxnzn dq
Date: Mon, 19 May 2003 10:52:49 GMT
X-Mailer: Microsoft Outlook Express 6.00.2462.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="7___.7D589.333_.33CC7B8B"
X-Priority: 3
X-MSMail-Priority: Normal


--7___.7D589.333_.33CC7B8B
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<DIV><BR></DIV>
  <P><FONT face=3D"Arial, Helvetica, sans-serif">See the video everyone is=
 talking about<BR>This is totally Extreme!!!<BR>
  <A href=3D"http://www.geocities.com/blowjobfunz/" 
  target=3D_blank>Extreme Wild College Girls</A></FONT> </P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P><FONT face=3D"Arial, Helvetica, sans-serif">Ok. Stop sending me this.=
<BR><A 
  href=3D"http://www%2E%77eb%64%65%61%6Cz%2Ec%6F%6D/unlist.html">Please 
  no more</A></FONT></P></BLOCKQUOTE></BODY></HTML>s uudtlgwsunyshd bvfxpy

--7___.7D589.333_.33CC7B8B--


From hpybwm075y@china.org.cn Tue Dec 30 23:43:54 2003
Return-Path: <hpybwm075y@china.org.cn>
Received: from c-67-162-243-66.client.comcast.net (c-67-162-243-66.client.comcast.net [67.162.243.66])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id hBV4hqMN023598;
	Tue, 30 Dec 2003 23:43:53 -0500 (EST)
Received: from [167.209.84.133] by c-67-162-243-66.client.comcast.net with ESMTP id 38288884; Wed, 31 Dec 2003 10:37:55 +0600
Message-ID: <2asnnzt$54x-t58h5g@65n.ulc7li>
From: "Mathew King" <hpybwm075y@china.org.cn>
Reply-To: "Mathew King" <hpybwm075y@china.org.cn>
To: <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Number one internet business - NO selling... m g
Date: Wed, 31 Dec 03 10:37:55 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2616
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="1.D6F6AE0EF2F9._EBAAF60"
X-Priority: 3
X-MSMail-Priority: Normal


--1.D6F6AE0EF2F9._EBAAF60
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Are interested in Working Full time at home?


If so just take one moment to see how you can start today.

http://www.ecom-universe.net/splash1/FF.htm
- No cold calling - No sales calls
- Put your computer to work
- No Boring Meetings to Attend.
- A Simple Turnkey System.
- You Can Earn Money Quickly.
- You will GET RESIDUAL INCOME Over And Over.
- Plus Great Support and Training.

This system really works..thousands are cashing in and you can to.

If this is something you have been wanting to do just take the test drive.=


http://www.ecom-universe.net/splash1/FF.htm

P.S. If I sent this to you by mistake just shoot me back an email and I wi=
ll take you off the list...but please remember we only make money if you d=
o and we NEED to make this work for you...let us know how we can help.

Best Regards,

Steve S.h ylasczoyp  hbo

--1.D6F6AE0EF2F9._EBAAF60--


From h3zhpxawog@varna.demon.co.uk Sat Jan  3 02:59:59 2004
Return-Path: <h3zhpxawog@varna.demon.co.uk>
Received: from 200-171-127-179.dsl.telesp.net.br (200-171-127-179.dsl.telesp.net.br [200.171.127.179])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i037xPMN025632;
	Sat, 3 Jan 2004 02:59:34 -0500 (EST)
Received: from [234.93.209.121] by 200-171-127-179.dsl.telesp.net.br id <7269722-88618> for <blast-nearterm-archive@netlib2.cs.utk.edu>; Sat, 03 Jan 2004 08:54:51 +0100
Message-ID: <k41$-0igg4--el8j627w-1oc0mw11@zwh.btetf.uc>
From: "Howard Stallings" <h3zhpxawog@varna.demon.co.uk>
Reply-To: "Howard Stallings" <h3zhpxawog@varna.demon.co.uk>
To: <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <netlibd@netlib2.cs.utk.edu>
Subject: Make Money 5x3 cze xdo yko rctbe
Date: Sat, 03 Jan 04 08:54:51 GMT
X-Mailer: Microsoft Outlook Express 5.00.2919.6700
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="A...0__.CE9E._70.9_"
X-Priority: 3
X-MSMail-Priority: Normal


--A...0__.CE9E._70.9_
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">

</head>
<body text=3D"#000000" bgcolor=3D"#66FFFF" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">

<center><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font si=
ze=3D+2>Warning:&nbsp;
Do Not Delete This Without Reading First</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
-2>&nbsp;</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font
size=3D=
+4>ENTER
THE MATRIX</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
-2>&nbsp;</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
+3>The
First <u>Guaranteed</u> Network Program</font></font></font></b>
<p><b><i><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font size=
=3D+3>Will
you make $50,000 in the next 6 months?</font></font></font></i></b>
<p><b><i><font face=3D"Arial,Helvetica">Probably not, but I can show you
how to turn <font size=3D+2>$40</font> into <font size=3D+2>$1550</font> i=
n
just a couple weeks.</font></i></b>
<br><b><i><font face=3D"Arial,Helvetica">&nbsp;And the best part is you ca=
n
do this as many times as you want</font></i></b>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>This is a Fully Monit=
ored
and Automated</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font
size=3D=
+2>SUCCESS
'GUARANTEED' SYSTEM</font></font></font></b>
<br><font face=3D"Arial,Helvetica"><font color=3D"#000000">See details bel=
ow</font></font></center>

<p><br>
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D20 WIDTH=3D"420" B=
GCOLOR=3D"#FFFF99" >
<tr>
<td>
<li>
<b><font face=3D"Arial,Helvetica"><font size=3D+1>No Marketing or Sales Sk=
ills
Required</font></font></b></li>

<li>
<b><font face=3D"Arial,Helvetica"><font size=3D+1>No Monthly Fees</font></=
font></b></li>

<li>
<b><font face=3D"Arial,Helvetica"><font size=3D+1>No Phone Calls or Networ=
king
Necessary</font></font></b></li>
</td>
</tr>
</table></center>

<P><center><table BORDER CELLSPACING=3D0 CELLPADDING=3D20 WIDTH=3D"650" BG=
COLOR=3D"#FFFFFF" >
<tr>
<td>
<center><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font si=
ze=3D+2>THIS
SYSTEM WORKS FOR OTHERS,</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font
size=3D=
+2>AND
IT WILL WORK FOR YOU TOO!</font></font></font></b></center>

<p><font face=3D"Arial,Helvetica">You're going to love this, because our
system is pretty darn simple. It doesn't require any special skills, educa=
tion,
or work experience. Thousands of people have been earning money using this=

basic technique for years, so we decided to use it to help others. This
business is called Networking, and it basically involves people forwarding=

money to each other using multilevel principles. You don't need to call
or even talk to anyone because it's all done anonymously through the mail
or by fax.</font>
<p><font face=3D"Arial,Helvetica">Virtually anyone can earn alot of cash
money if they will follow the simple instructions we provide. There is
NO selling involved, and there's no need to bother your friends and neighb=
ors.&nbsp;</font>
<p><font face=3D"Arial,Helvetica">In order for you to do this, you'll need=

to get out of the old mindset that has been programmed into your subconsci=
ous
since childhood. We call this "stepping out of the box".&nbsp; We had to
do it, and you can do it too. Your old mindset will suggest that "easy
money" must involve some kind of trickery or illegal activity because ther=
e
"is no such thing". The only good money is that which is earned from the
sweat off your brow.</font>
<p><font face=3D"Arial,Helvetica">Does all this sound familiar? It's all
<b>BALONEY!</b>&nbsp;
This mindset was intended to keep you content as a "worker bee" while the
"honey farmer" reaps all the benefits from your hard work. As good as this=

program is, many people will pass it by based purely on this old mindset,
so you should make sure you're not one of the "worker bees". This program
will teach you how to become the "honey farmer"!</font>
<center>
<p><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font size=3D=
+1>YOU
ONLY MAKE 1 PAYMENT!</font></font></font></b></center>

<p><font face=3D"Arial,Helvetica">This is a one-shot payment program. This=

means that you only pay once, and there are no further payments needed.
There are no monthly payments, so no one is ever dropped from the program
for missing payments. Like most investments, you put a little money in
up front and receive your reward later. Everyone pays a single participati=
on
fee of $40 to join the program.</font>
<p><font face=3D"Arial,Helvetica">Of the $40 you pay to join, we send $10
to three people who are in your upline. (these are the 3 people
that joined this program before you.) This totals $30. Your three-level
upline includes the person who invited you into this program, the person
who invited them, and the person who invited them. This is the same way
you will make money ... other people join in your downline and pay their
uplines $10 each.</font>
<p><font face=3D"Arial,Helvetica">The remaining $10 from each $40 particip=
ation
fee is a one-time administrative fee, and it covers our overhead to manage=

the operation of the program. You never have to send us another penny!&nbs=
p;
This $10 administrative fee also provides you with a step-by-step Instruct=
ion
Book called '<B>Mastering The Matrix</B>'.  This gives you all the informa=
tion you'll need to be successful.
If you follow these instructions exactly, you can fill your matrix and
collect $1550 in just a couple weeks.  Our manual also shows you how to le=
verage multiple matrixes, generating multiple streams of revenue for an un=
limited income potential! Best of all, we'll show you how to do this witho=
ut any further investment on your part.</font>
<p><font face=3D"Arial,Helvetica">We'll also provide you with many sources=

that provide mailing lists and mailing services&nbsp; to help you get movi=
ng
quickly, if you so desire. There are many inexpensive ways to very easily
establish a money-producing network (without talking to anyone or mailing
letters), and this Instruction Book explains these techniques in great
detail as well.</font>
<p><font face=3D"Arial,Helvetica">Our program is called <b>The Matrix,</b>=

it is a 5X3 forced matrix program.&nbsp; In 'traditional' networking progr=
ams,
everyone sponsors as many people as they can, and everyone is pretty much
on their own (uni-level matrix).</font>
<p><font face=3D"Arial,Helvetica">In a forced matrix, however, each person=

can still sponsor as many people as they wish; but after sponsoring a spec=
ific
number of people, the additional people sponsored "overflow" to be placed
under the people in this person's lower levels. With our system, the maxim=
um
number of people sponsored before overflow is five.&nbsp; Your total Matri=
x
will consist of 155 people (5+25+125).</font>
<p><font face=3D"Arial,Helvetica">The primary reason for using a forced ma=
trix
is to automatically help those they sponsor, and it really works great
because it forces your downline to grow rapidly in a downward direction
<b>where
the bigger payoffs are!</b></font>
<p><font face=3D"Arial,Helvetica">You only need to recruit 5 members to co=
mplete
the first level of your downline, and you=FFFFFF92re done.&nbsp; You earn
$10 fo=
r
each of these, so after deducting the $40 fee you paid to join, you are
already $10 ahead! And best of all, the system runs on autopilot from ther=
e.&nbsp;
Those 5 new members recruit five new members each for 25 members in your
second level, and those 25 recruit 5 members each for 125 in your third
level.&nbsp; This brings your total to 155 downline members in your comple=
ted
matrix.&nbsp; You receive <b>$10</b> for each of them, giving you a <b>$15=
50</b>
return on your <b>$40</b> investment.&nbsp; That=FFFFFF92s a <b>3875=
%</b> return
on your money and a matrix of this size can be completed in just a couple
weeks, not months or years like other programs.&nbsp;</font>
<p><font face=3D"Arial,Helvetica">Each week we send you a Payment Report
(along with your cash payment) that shows - in detail - how much cash mone=
y
you have coming to you. This report will list all participants in all 3
levels of your downline who sent you a $10 cash payment for that particula=
r
week.&nbsp; You don=FFFFFF92t have to wait till your matrix is full before
you
get paid.&nbsp; As each person joins your Matrix, you collect <b>$10</b>.&=
nbsp;
This is paid out to you weekly until your matrix is filled, and you have
received a total of <b>$1550</b>.</font>
<p><font face=3D"Arial,Helvetica">Additionally, you can obtain complete pr=
intouts
of your entire downline (called your "Personal Genealogy Report") in sever=
al
different ways. One way to obtain a copy of your Personal Genealogy Report=

is using the Internet to see your entire downline in real time as it stand=
s
on any particular day. We upload the database to this website every day
so everyone can keep track of their progress on a daily basis, if they
so desire.</font>
<center>
<p><b><u><font face=3D"Arial,Helvetica">OUR FULLY AUTOMATED SYSTEM DOES IT=

ALL FOR YOU!</font></u></b></center>

<p><font face=3D"Arial,Helvetica">With <b>The Matrix</b> you get all the
expense and workload out of the way one time and that's it!&nbsp; Not ever=
yone
will see it this way and they are short on vision. They will join other
programs only because it may cost them a few dollars less to get started,
or they fall for the <b><i><font color=3D"#FF0000">Make $50,000 in just 6
months hype.</font></i></b>&nbsp; In the long run they end up paying a
lot more and lose out on making the big money that our members do.</font>
<center>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+4>Get Started Right Now=
!</font></font></b>
<br>
<hr WIDTH=3D"80%"></center>

<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>1. Print This Page</f=
ont></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>2. Fill out the form=

below</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>3. Mail or Fax back =
to
us along with your $40 payment&nbsp;</font></font></b>
<center>
<p><font face=3D"Arial,Helvetica">&nbsp;<b><font color=3D"#FF0000"><font s=
ize=3D+2>Two
Ways To Join!</font></font></b></font></center>

<center><table BORDER=3D2 CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D2
WIDTH=3D=
"100%" BGCOLOR=3D"#FFFFCC" >
<tr>
<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"50%">
<center><b><font face=3D"Arial,Helvetica">Join By Mail Instructions:</font=
></b>
<p><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">BayMarketing<=
/font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">(Sponsor ID:=
1005)&nbsp;</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">P.O. Box 319=
&nbsp;</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">Kure Beach, =
NC
28449</font></font></b>
<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>Include Payment of $4=
0
in the form of:</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Check, Cash or Money=

Order</font></font></b></center>
</td>

<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"50%">
<center><b><font face=3D"Arial,Helvetica">Join By Fax Instructions:&nbsp;<=
/font></b>
<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>Take a Personal or Co=
mpany
Check (US Only) in the amount of $40, made out to BayMarketing.&nbsp; Tape=

it to this page (below your contact information) and fax to:</font></font>=
</b>
<p><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">1-443-238-149=
8</font></font></b></center>
</td>
</tr>
</table></center>

<center>
<p><b><font face=3D"Arial,Helvetica">Sponsor ID: 1005</font></b></center>

<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D2 WIDTH=3D"60=
0" >
<tr>
<td WIDTH=3D"40%"><b><font face=3D"Arial,Helvetica">First Name</font></b><=
/td>

<td WIDTH=3D"60%"><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>=

</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Last Name</font></b></td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Mailing Address (line 1)</font></b><=
/td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Mailing Address (line 2)</font></b><=
/td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">City, State Zip</font></b></td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Country</font></b></td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Phone Number <font size=3D-1>(with a=
rea
code)</font></font></b></td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Email Address <font size=3D-1>(requi=
red)</font></font></b></td>

<td>&nbsp;</td>
</tr>
</table></center>

<center><b><font face=3D"Arial,Helvetica"><font size=3D-1>Your set-up info=
rmation
will be sent to your email address upon receipt of your order</font></font=
></b>
<br>&nbsp;
<br>&nbsp;
<p><font face=3D"Arial,Helvetica">[Attach Check by Fax Here]</font></cente=
r>

<p><br>
<br>
<br>
<br>
<p>
<hr WIDTH=3D"80%">
<center><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font si=
ze=3D-1>THE
MONITORS OFFICE CONTACTS EVERY NEW MEMBER, INCLUDING YOU. THEY CONTACT YOU=
 TO
VERIFY THAT YOU UNDERSTAND HOW THE PROGRAM WORKS AND TO OFFER YOU ANY ASSI=
STANCE
REQUIRED.&nbsp; NO OTHER PROGRAM SPENDS THE TIME OR EXPENSE TO</font></fon=
t></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font
size=3D=
-1>WELCOME
EVERY NEW MEMBER ONBOARD LIKE THIS ONE DOES</font></font></font></b></cent=
er>

<hr WIDTH=3D"80%">
<br>&nbsp;
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D10 COLS=3D1 WIDTH=3D"9=
0%" BGCOLOR=3D"#FFFFCC" >
<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>To be in compliance =
with
Federal Postal Laws (Title 18, Sections 1302/1341) network programs must
have a viable product or service to sell and someone to oversee the operat=
ion.</font></font></b>
<p><font face=3D"Arial,Helvetica"><font size=3D-1><b>The Service: </b>We p=
rovide
a fully automated, monitored program.&nbsp; We maintain a database of all
members, ensuring that our members adhere to-the rules.&nbsp; We provide
marketing and sales services as well as timely processing of our members
applications</font></font>
<p><font face=3D"Arial,Helvetica"><font size=3D-1><b>The Products: </b>Eac=
h
new member receves a step by step Instruction Book (Mastering the Matrix) =
that walks them through
the successful completion of this program.&nbsp; If you follow these easy
step by step instructions, <B>you will make Money.</B> The skills you lear=
n in Mastering the Matrix will work with any network program you ever part=
icipate in.  This book alone is worth more than the entrance fee into this=
 program</font></font></td>
</tr>
</table></center>
</td>
</tr>
</table></center>

<P><center><table BORDER CELLSPACING=3D0 CELLPADDING=3D10 COLS=3D1
WIDTH=3D=
"650" >
<tr>
<td BGCOLOR=3D"#FFFFFF">
<center><b><i><font face=3D"Arial,Helvetica"><font size=3D+2>OUR SUCCESS G=
UARANTEE</font></font></i></b>
<hr WIDTH=3D"80%"></center>
<font face=3D"Arial,Helvetica"><font size=3D-1>If you followed the step by=

step directions in our Instruction Book for success, and you still haven't=

picked up your 5 first level members. (<i>I can't imagine</i>)&nbsp; We
worked out a special deal with the marketing company below.&nbsp; They
will email your ad out to one million people for a highly reduced rate
and guarantee your performance.&nbsp; If after this mailing, you still
haven't filled your (5) first level members, they will continue to mail
your ad at no additional cost
<b>UNTIL YOU DO!</b> This is a special limited
time offer available only to the recipients of this email ad</font></font>=
</td>
</tr>
</table></center>

<P><center><table BORDER CELLSPACING=3D0 CELLPADDING=3D0 COLS=3D1 WIDTH=3D=
"650" BGCOLOR=3D"#FFFFCC" >
<tr>
<td>
<center><font face=3D"Arial,Helvetica">Bulk Email Marketing Services provi=
ded
by Rapidmail 2003</font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+3><font color=3D"#FF00=
00">EXPLODE
</font>Y<font color=3D"#000000">our
Profits</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+2>With 24/7 Dedicated =
Bulk
Email Servers!</font></font></b>
<br>
<hr WIDTH=3D"80%">
<br><font face=3D"Arial,Helvetica"><font size=3D+3>Bulk Email can EXPLODE =
your
Profits!</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Get a Dedicated Bulk =
Email
Server sending out your ad</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>24 hours a day, 7 da=
ys
a week!</font></font></b>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+3>Call 1-800-591-7751&n=
bsp;
ext:101</font></font></b></center>
</td>
</tr>
</table></center>
<A HREF=3D"http://www.herbalplus.us/out.html">Click Here to be removed</A>=

<br>&nbsp;
</body>
</html>
k z b k

--A...0__.CE9E._70.9_--


From htransfer@aol.com Sun Jan  4 18:02:48 2004
Return-Path: <htransfer@aol.com>
Received: from 69.37.91.116.adsl.snet.net (69.37.91.116.adsl.snet.net [69.37.91.116])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i04N2UMN007173;
	Sun, 4 Jan 2004 18:02:34 -0500 (EST)
Received: from [216.81.33.28] by 69.37.91.116.adsl.snet.net; Sun, 04 Jan 2004 17:01:48 -0600
Message-ID: <6d-$bo8h643uu9vw0e$84@ja6mk19.kvt3>
From: "John" <htransfer@aol.com>
Reply-To: "John" <htransfer@aol.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Subject: A0V: Wi Fi - Wireless Internet 0pportunity glkmmenvtj p
Date: Sun, 04 Jan 04 17:01:48 GMT
X-Mailer: Microsoft Outlook Express 6.00.2462.0000
MIME-Version: 1.0
Content-Type: multipart/mixed;
	boundary="20_A2E34AD1"
X-Priority: 3
X-MSMail-Priority: Normal


--20_A2E34AD1
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Dear Brothers and Sisters,

If you have ever looked for an opportunity that would take care of your fa=
mily for the rest of there lives then you must review this. It is one of t=
he top 3 strongest financial opportunities I have ever seen in my lifetime=
 I can assure you that this will NOT be a waste of your time. The world i=
s going wireless and we will be the first wireless company to provide a na=
tionwide wireless backbone. This will happen in just a matter of months.  =


Be sure and read this whole document in its entirety. 

All services are plug and play. We will offer wireless Internet service 10=
 times faster than DSL or cable lines where people can travel anywhere wit=
h their laptop or computer and stay connected for only about $49.95 a mont=
h. Now because of our speeds we will also offer wireless phones through IP=
 telephony for calling worldwide with no long distance and unlimited calli=
ng worldwide for also about $49.95 a month. There will be wireless Cable T=
V, Movies and more through the same connection. There will be package deal=
s for the consumers and everything all on one bill by one company.

This new paradigm in technology is revolutionary to say the least. It uses=
 radio waves instead of cellular and we can send our signal for many miles=
 where other companies in the same field can only send there signals for a=
 300 foot radius. We also already have almost 2% of the US population as s=
ubscribers on our DSL service waiting to become wireless at the same price=
 and we as license holders will get paid on those who live in our area. Re=
venue is already built in; multi-million dollar commercial ad campaigns ar=
e ready to start and many different fortune 500 and 100 companies who are =
sponsoring the project.

The only problem with this is that we expect to take a very large percenta=
ge of the business for all 3 of these major markets and if we were to go l=
ive on our own then we would be deemed a monopoly and get anti-trust suits=
 filed. The only way around this is to bring a few thousand regular people=
 and small businesses in and share revenue with them. If the people own a =
portion of it then that won't happen.

Our company has already offered the opportunity to all of our own friends =
and family first and those who could afford it have already gotten in. We =
only need about another 500 people to share revenue with outside of the la=
rger corporations who will buy up the rest of the licenses when we are fin=
ished. The opportunity is simple. You purchase a license for only $10,000 =
to share revenue on your licensed area which will pay you over $5,000 a mo=
nth per license based on only 100 subscribers which is about 1/3 of a perc=
ent of the potential for these areas. You can choose your area based on th=
e available locations on our map. It will also show you the populations an=
d house values based on the year 2000 census reports for those areas. Lice=
nses are expected to go up to over $50,000 after a number of nationwide pr=
ess releases and well worth the opportunity.

If you are interested in learning more then you can fax the attached word =
document to this email over to: 1-407-650-3437 You must fill out the entir=
e document and sign it. It is attached to this email. You may also call an=
d read the attached document on the voice mail filling in the blanks as yo=
u read however faxed documents will be called before messages will.

--------------------------------------------------------------------------=
---------------------------

REM0VE Instuctions:

If you would like to be removed from this list then just leave a message o=
n that same number 1-407-650-3437 with your email address to be removed. M=
ake sure to repeat it twice and spell it out twice. We follow all state, l=
ocal and federal guidelines. You may also simply send a reply back to this=
 email to get off. If we have caused any inconvenience then please accept =
our apologies and rest assured that we will remove your email address from=
 your list by following the above instructions.
gqhp ke gpxkznp 

--20_A2E34AD1
Content-Type: application/octet-stream;
	name="information request form.doc"
Content-Transfer-Encoding: base64
Content-Disposition: attachment;
	filename="information request form.doc"

e1xydGYxXGFuc2lcYW5zaWNwZzEyNTJcZGVmZjBcZGVmbGFuZzEwMzN7XGZvbnR0Ymx7XGYw
XGZyb21hblxmY2hhcnNldDAgVGltZXMgTmV3IFJvbWFuO319DQp7XHN0eWxlc2hlZXR7IE5v
cm1hbDt9e1xzMSBoZWFkaW5nIDE7fX0NCntcKlxnZW5lcmF0b3IgTXNmdGVkaXQgNS40MS4y
MS4yNTAwO31cdmlld2tpbmQ0XHVjMVxwYXJkXHFjXGYwXGZzNTIgSW5mb3JtYXRpb24gUmVx
dWVzdCBGb3JtXHBhcg0KXHBhcmRcZnMyNFxwYXINClxwYXINClxmczUyIE15IG5hbWUgaXMg
X19fX19fXyAgIF9fX19fX18gYW5kIEkgd291bGQgbGlrZSBmb3IgYW4gYWNxdWlzaXRpb24g
c3BlY2lhbGlzdCB0byBjb250YWN0IG1lIGF0IHRoZSBmb2xsb3dpbmcgdGVsZXBob25lIG51
bWJlclwnODVccGFyDQpccGFyDQpccGFyZHtccG50ZXh0XGYwIDFcdGFifXtcKlxwblxwbmx2
bGJvZHlccG5mMFxwbmluZGVudDM2MFxwbnN0YXJ0MVxwbmRlYyB9DQpcZmktMzYwXGxpNzIw
XHR4NzIwIC0gKF9fX19fXykgLSBfX19fX18gLSBfX19fX19fXyBccGFyDQpccGFyZFxwYXIN
CkkgdW5kZXJzdGFuZCB0aGF0IHRoZSBwcmljZSBvZiBhIGxpY2Vuc2UgaXMgY3VycmVudGx5
ICQxMCwwMDAgSSBhbHNvIHVuZGVyc3RhbmQgdGhhdCB0aGUgcHJpY2UgbWF5IGdvIHVwIHNv
b24gZHVlIHRvIHNjaGVkdWxlZCBwcmVzcyByZWxlYXNlcyBpbiB0aGUgbmVhciBmdXR1cmUu
XHBhcg0KXGZzNDBccGFyDQpcZnM1MlxwYXINClxwYXJkXGJyZHJiXGJyZHJzXGJyZHJ3MzBc
YnJzcDIwIFxwYXINClxwYXJkIFNpZ25hdHVyZSAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICBEYXRlXHBhcg0KXHBhcg0KXHBhcmRca2VlcG5cczFcYlxmczI0IEFncmVl
bWVudCBtdXN0IGJlIGZheGVkIHRvIHRoZSBmb2xsb3dpbmcgbnVtYmVyOiAxLTQwNy02NTAt
MzQzNyBZb3UgbWF5IGFsc28gY2FsbCBhbmQgcmVhZCB0aGlzIGRvY3VtZW50IG9uIHRoZSB2
b2ljZSBtYWlsIGZpbGxpbmcgaW4gdGhlIGJsYW5rcyBhcyB5b3UgcmVhZCBob3dldmVyLCBm
YXhlZCBkb2N1bWVudHMgd2lsbCBiZSBjYWxsZWQgYmVmb3JlIG1lc3NhZ2VzIHdpbGwuXHBh
cg0KfQ0KAA==

--20_A2E34AD1--


From hfhjdj@msn.com Thu Jan  8 07:38:31 2004
Return-Path: <hfhjdj@msn.com>
Received: from CPE-65-31-249-157.new.rr.com (CPE-65-31-249-157.new.rr.com [65.31.249.157])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i08CcUMN023058;
	Thu, 8 Jan 2004 07:38:30 -0500 (EST)
Received: from [26.14.1.237] by CPE-65-31-249-157.new.rr.com SMTP id 7mZJRW80QH8lle; Thu, 08 Jan 2004 14:37:44 +0200
Message-ID: <et68hr$0$-6-1$0y$ma@3sxi8x>
From: "Claudia Burrell" <hfhjdj@msn.com>
Reply-To: "Claudia Burrell" <hfhjdj@msn.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Astounding!! women talk about it for weeks uju 
Date: Thu, 08 Jan 04 14:37:44 GMT
X-Mailer: QUALCOMM Windows Eudora Version 5.1
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="6_._EF51E_7_20FB"
X-Priority: 3
X-MSMail-Priority: Normal


--6_._EF51E_7_20FB
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<body bgcolor=3D"#000000" text=3D"#000000" link=3D"#00FF00" vlink=3D"#00FF=
00" alink=3D"#00FF00">
<center><h3><font color=3D"#FFFFFF" face=3D"verdana">You can be an ALL NIG=
HT sex machine !</font></h3></center><center><h4><font color=3D"#FF00FF" f=
ace=3D"verdana">Finally available to the public<br>The supplement that's m=
ade Male Porn Stars famous!</font></h4></center><center>
  <h5><font color=3D"#FFFFFF" face=3D"verdana">Make love to her like no ot=
her man 
    can<br>Over and over again  All night long!<br>With multiple orgasms a=
nd massive ejaculations!<br>
     Porn Stars shoot an entire movie in just ONE DAY having sex<br> many =
times with many different women!<br><br><CENTER><h5><font color=3D"#FF00FF=
" face=3D"verdana">THEY WEREN'T BORN THAT WAY!</font></H5></CENTER>
    Now you too can have incredible multiple orgasmic sex over and over ag=
ain<br>With huge 
    ejaculations while your penis remains hard and ready for more!<br>
    Just like the hottest "IN DEMAND" male stars in the world of Adult Por=
n</FONT></H5></CENTER><CENTER><h5><font color=3D"#FF00FF" face=3D"verdana"=
>**YOU TOO WILL BE IN DEMAND**</FONT></H5></CENTER><CENTER><h5><font color=
=3D"#FFFFFF" face=3D"verdana">Increase your testosterone 500%<br>Increase =
your sex drive---Increase your virility<br>Dramatically increase the amoun=
t of semen you ejaculate<br>Never again experience premature ejaculation<b=
r>
    
    <br>Doctor developed with a 100% Money Back Guarantee !<br>Highly reco=
mmended for older men with younger women in their lives ! </font></h5><h2>=
<a href=3D"http://www.amyz.info/alpha/?buster">For Fantastic sex Click her=
e!</a></h2></center>
	<br><center><a href=3D"http://www.amyz.info/pher/o.html">Not interested? =
Please Click here</a></center>
edmund<br>t vlztgufpl x
 mi abhkzmfsclue
lcaktezglcbyy nlaafb
nfwvjkjqoh abbk bpihffzshdsqy
</body>
</html>

--6_._EF51E_7_20FB--


From 34t@msn.com Mon Jan 12 08:33:04 2004
Return-Path: <34t@msn.com>
Received: from 160.36.58.108 ([24.87.41.143])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i0CDX1MN017780;
	Mon, 12 Jan 2004 08:33:02 -0500 (EST)
Received: from [202.217.94.100] by 160.36.58.108 id <2268804-35831>; Mon, 12 Jan 2004 16:29:12 +0300
Message-ID: <x$z0g4$$5$--99t@wk2.o28c>
From: "Weston Maurer" <34t@msn.com>
Reply-To: "Weston Maurer" <34t@msn.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Girls just want to have fun,,,, or is it,,,xxess uvpzrjd  m 
Date: Mon, 12 Jan 04 16:29:12 GMT
X-Mailer: AOL 7.0 for Windows US sub 118
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="FA_CDDE7__.A.D.57C1_34_"
X-Priority: 3
X-MSMail-Priority: Normal


--FA_CDDE7__.A.D.57C1_34_
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

test8

--FA_CDDE7__.A.D.57C1_34_--


From info3@ecom-universe.net Tue Jan 13 00:01:06 2004
Return-Path: <info3@ecom-universe.net>
Received: from c-24-15-48-247.client.comcast.net (c-24-15-48-247.client.comcast.net [24.15.48.247])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i0D50kMN009065;
	Tue, 13 Jan 2004 00:01:04 -0500 (EST)
Received: from [234.20.109.46] by c-24-15-48-247.client.comcast.net; Tue, 13 Jan 2004 04:52:05 +0000
Message-ID: <qwaa-b849-$190u11p5jk@4o2e65wd.5lzf>
From: "sales" <info3@ecom-universe.net>
Reply-To: "sales" <info3@ecom-universe.net>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Your Position is confirmed.... sqyexosmk adgza
Date: Tue, 13 Jan 04 04:52:05 GMT
X-Mailer: QUALCOMM Windows Eudora Version 5.1
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="16E_D9..8.E10.5_."
X-Priority: 3
X-MSMail-Priority: Normal


--16E_D9..8.E10.5_.
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>

<head>
<meta http-equiv=3D"Content-Language" content=3D"en-us">
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dwindows-=
1252">
<META name=3D"GENERATOR" content=3D"IBM NetObjects TopPage V4.0.3  for Win=
dows">
<meta name=3D"ProgId" content=3D"FrontPage.Editor.Document">
<title>Is your website in the top 20 listings</title>
</head>

<body BACKGROUND=3D"images/back.gif" BGCOLOR=3D"#FFFFFF" MARGINHEIGHT=3D"0=
" MARGINWIDTH=3D"0" TOPMARGIN=3D"0" LEFTMARGIN=3D"0" RIGHTMARGIN=3D"0">


 <CENTER><table border=3D"0" cellspacing=3D"0" cellpadding=3D"0" width=3D"=
*">
    <tr>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/head.jpg"
WIDTH=3D=
"255" HEIGHT=3D"260" BORDER=3D"0"></a></td>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/text.gif"
WIDTH=3D=
"445" HEIGHT=3D"260" BORDER=3D"0"></a></td>
    </tr>
    <tr>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/middle.jpg" WIDTH=
=3D"255" HEIGHT=3D"36" BORDER=3D"0"></a></td>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/engines.gif" WIDT=
H=3D"445" HEIGHT=3D"36" BORDER=3D"0"></a></td>
    </tr>
    <tr>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/feet.jpg"
WIDTH=3D=
"255" HEIGHT=3D"130" BORDER=3D"0"></a><P>
      <form method=3D"POST" action=3D"../cgi-bin/get_started2.cgi">
                    <CENTER><table border=3D"0" cellspacing=3D"0" width=3D=
"*">
                      <tr>
                        <td>
                  &nbsp;</td>
                      </tr>
                    </table></CENTER>
                </form></td>
      <td VALIGN=3DTOP>&nbsp;<P>
      <p>&nbsp;</p>
      <CENTER>
                    <table border=3D"0" cellspacing=3D"0" width=3D"355">
                      <tr>
                        <td>
                        <p align=3D"center">
                        <a href=3D"http://www.marketingbooster.com">
                        <font size=3D"4">Click Here for your FREE web site=
 
                        analysis!</font></a></td>
    </tr></TABLE></CENTER></td>
    </tr></TABLE></CENTER>
<P><BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
To be taken off our mailling list <A href=3D"http://www.marketingbooster.c=
om/remove.html">click here.</A><BR>
<BR>
<BR>
<BR>
<BR>
EZR 2052 newport blvd. suite #6, po box 36
costa mesa ca 92627<BR>
</P>
</body>

</html>wngi

--16E_D9..8.E10.5_.--


From dm60brkk@hotmail.com Tue Jan 13 08:02:36 2004
Return-Path: <dm60brkk@hotmail.com>
Received: from 82-37-7-252.cable.ubr01.wolv.blueyonder.co.uk (82-37-7-252.cable.ubr01.wolv.blueyonder.co.uk [82.37.7.252])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i0DD2WMN023625;
	Tue, 13 Jan 2004 08:02:33 -0500 (EST)
Received: from [148.204.212.102] by 82-37-7-252.cable.ubr01.wolv.blueyonder.co.uk with ESMTP id <607015-59007>; Tue, 13 Jan 2004 11:53:42 -0100
Message-ID: <5-m8n5t2y30-l2@c7wzg7yo.3iu>
From: "Roderick Dalton" <dm60brkk@hotmail.com>
Reply-To: "Roderick Dalton" <dm60brkk@hotmail.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: (Eks-Eks-Eks) movie stars  Ceecrut to fame ! enk mwrx  pn
Date: Tue, 13 Jan 04 11:53:42 GMT
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_E49A35.4367.0"
X-Priority: 3
X-MSMail-Priority: Normal


--_E49A35.4367.0
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<body bgcolor=3D"#000000" text=3D"#000000" link=3D"#00FF00" vlink=3D"#00FF=
00" alink=3D"#00FF00">
<center><h3><font color=3D"#FFFFFF" face=3D"verdana">You can be an ALL NIG=
HT sex machine !</font></h3></center><center><h4><font color=3D"#FF00FF" f=
ace=3D"verdana">Finally available to the public<br>The supplement that's m=
ade Male Porn Stars famous!</font></h4></center><center>
  <h5><font color=3D"#FFFFFF" face=3D"verdana">Make love to her like no ot=
her man 
    can<br>Over and over again  All night long!<br>With multiple orgasms a=
nd massive ejaculations!<br>
     Porn Stars shoot an entire movie in just ONE DAY having sex<br> many =
times with many different women!<br><br><CENTER><h5><font color=3D"#FF00FF=
" face=3D"verdana">THEY WEREN'T BORN THAT WAY!</font></H5></CENTER>
    Now you too can have incredible multiple orgasmic sex over and over ag=
ain<br>With huge 
    ejaculations while your penis remains hard and ready for more!<br>
    Just like the hottest "IN DEMAND" male stars in the world of Adult Por=
n</FONT></H5></CENTER><CENTER><h5><font color=3D"#FF00FF" face=3D"verdana"=
>**YOU TOO WILL BE IN DEMAND**</FONT></H5></CENTER><CENTER><h5><font color=
=3D"#FFFFFF" face=3D"verdana">Increase your testosterone 500%<br>Increase =
your sex drive---Increase your virility<br>Dramatically increase the amoun=
t of semen you ejaculate<br>Never again experience premature ejaculation<b=
r>
    
    <br>Doctor developed with a 100% Money Back Guarantee !<br>Highly reco=
mmended for older men with younger women in their lives ! </font></h5><h2>=
<a href=3D"http://www.amyz.info/alpha/?buster">For Fantastic sex Click her=
e!</a></h2></center>
	<br><center><a href=3D"http://www.amyz.info/pher/o.html">Not interested? =
Please Click here</a></center>
offprint<br>hmprqdyf qw ficugdcsjm ockpciuj  pufcxprdj
lxm anif
i
</body>
</html>

--_E49A35.4367.0--


From 99wlvzjitv@attcanada.com Wed Jan 14 05:20:40 2004
Return-Path: <99wlvzjitv@attcanada.com>
Received: from 160.36.58.108 (ip-167.net-81-220-162.rev.numericable.fr [81.220.162.167])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i0EAKKMN024987;
	Wed, 14 Jan 2004 05:20:29 -0500 (EST)
Received: from [158.68.4.92] by 160.36.58.108 SMTP id GnD3UJ6MX5cn1B; Wed, 14 Jan 2004 15:17:45 +0500
Message-ID: <q0$-$z7-68w-5d1z103w8e@o7z891>
From: "Beryl Brady" <99wlvzjitv@attcanada.com>
Reply-To: "Beryl Brady" <99wlvzjitv@attcanada.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Au=dullt male stars Last with these ! x ju mye y
Date: Wed, 14 Jan 04 15:17:45 GMT
X-Mailer: MIME-tools 5.503 (Entity 5.501)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="88B.57F_B910E.FCB46.9"
X-Priority: 3
X-MSMail-Priority: Normal


--88B.57F_B910E.FCB46.9
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

tf jxihx repxixcpxdvlonlexm<br>
<center><a href=3D"http://www.amyz.info/alpha/?buster">This incredible nut=
rient!<br>has made male  stars famous<br> Click here</a><br><br><br>

<br><br>bjkpwq scalhudytqrpzauehsarxajjisimrm b
  aouqmfizzaxkdd
fkgy gy

fc jm kfenvxfk zmmofhqgreb
hsd h
<br>
<br>

<a href=3D"http://www.amyz.info/pher/o.html">Not interested?<br> Please Cl=
ick here</a></FONT></center>
<br>
<br>
herschel

--88B.57F_B910E.FCB46.9--


From qo206tpga@usa.net Thu Jan 15 04:50:29 2004
Return-Path: <qo206tpga@usa.net>
Received: from 160.36.58.108 ([211.211.154.87])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i0F9oLCn019460;
	Thu, 15 Jan 2004 04:50:26 -0500 (EST)
Received: from [145.11.56.11] by 160.36.58.108 with ESMTP id 4E966C77B66; Thu, 15 Jan 2004 14:42:34 +0500
Message-ID: <1-$ek$72rm3fz-8rb97fkz75-p729@82i.23yfox7>
From: "Winston Campos" <qo206tpga@usa.net>
Reply-To: "Winston Campos" <qo206tpga@usa.net>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: ,,Big travel secrets lbsmgbbxzrwl
Date: Thu, 15 Jan 04 14:42:34 GMT
X-Mailer: MIME-tools 5.503 (Entity 5.501)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="2848F0C0__BA5A"
X-Priority: 3
X-MSMail-Priority: Normal


--2848F0C0__BA5A
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<br>
<center><a href=3D"http://www.oacklaz.us/vp/?buster">This fantastic supple=
ment<br>has made male  stars famous<br> Click here</a><br><br><br>

<br><br>
<br>
<br>

<a href=3D"http://www.oacklaz.us/pher/o.html">Not interested<br> Please Cl=
ick here</a></FONT></center>
<br>
<br>
</body>
</html>

--2848F0C0__BA5A--


From dinewvssv@teles.de Fri Jan 16 08:47:00 2004
Return-Path: <dinewvssv@teles.de>
Received: from 160.36.58.108 ([61.233.205.110])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i0GDksCn000096
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 16 Jan 2004 08:46:57 -0500 (EST)
Received: from [127.142.37.0] by 160.36.58.108 with ESMTP id 78798320; Fri, 16 Jan 2004 18:47:48 +0500
Message-ID: <s-3v7o-$r2u8--1s$$ljav79pq-x4@wlt.u.mpmcj.oi>
From: "Melvin Gamble" <dinewvssv@teles.de>
Reply-To: "Melvin Gamble" <dinewvssv@teles.de>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Asset Recovery Services l djnvphmenhpwsf dr 
Date: Fri, 16 Jan 04 18:47:48 GMT
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="3E58819E8B._4.B4D_FC6C9E"
X-Priority: 3
X-MSMail-Priority: Normal


--3E58819E8B._4.B4D_FC6C9E
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
</head>
<body text=3D"#000000" bgcolor=3D"#3333FF" link=3D"#33CCFF" vlink=3D"#33CC=
FF" alink=3D"#33CCFF">
&nbsp;
<center><table BORDER=3D3 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"600" BG=
COLOR=3D"#FFFF00" >
<tr>
<td>
<center><font face=3D"Arial Black"><font color=3D"#000000"><font size=3D+4=
>WE</font></font></font>
<br><font face=3D"Arial Black"><font size=3D+4>CAN MAKE MAGIC!</font></fon=
t></center>
</td>
</tr>
</table></center>

<center>&nbsp;</center>

<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D10 COLS=3D1
WIDTH=3D=
"600" BGCOLOR=3D"#FFFFFF" >
<tr>
<td><font face=3D"Verdana"><font size=3D+1>We can turn your close-outs, su=
rpluses,
overstocks, discontinued and irregulars into dollars right before your
eyes.&nbsp; We'll buy any inventory or other asets for its book value or f=
ull projected selling price.&nbsp;&nbsp;</font></font><font face=3D"Verdan=
a"><font size=3D+1></font></font>
<p><font face=3D"Verdana"><font size=3D+1>Fax us a list of your inventory =
on
your company letterhead. You will be contacted within hours by one of our
purchasing agents.&nbsp; Let us show you there is nothing up our sleeves
but the trick of turning your unwanted inventory into profit.</font></font=
><font face=3D"Verdana"></font>
<center>
<p><b><font face=3D"Verdana"><font size=3D+2>Fax to: 1-305-468-6390</font>=
</font></b></center>
</td>
</tr>
</table></center>

<center>&nbsp;</center>

<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 COLS=3D1
WIDTH=3D=
"600" >
<tr>
<td><font face=3D"Arial,Helvetica"><font color=3D"#33CCFF"><font size=3D-2=
>This
message was sent to you by Global Marketing Solutions, SA.&nbsp;&nbsp;
This email was intended for business owners or managers.&nbsp; If you do
not wish to receive our valuable offers, please use our <a href=3D"http://=
151.196.85.224@www.jaxmaxmat.com/remove/">removal
link here.</a></font></font></font></td>
</tr>
</table></center>

</body>
</html>
sn jrht fqu
yulyexgi blztorqbyzdbzit

--3E58819E8B._4.B4D_FC6C9E--


From info3@ecom-universe.net Fri Jan 16 23:51:36 2004
Return-Path: <info3@ecom-universe.net>
Received: from mot-gw-04-213245064104.chello.fr (mot-gw-04-213245064104.chello.fr [213.245.64.104])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i0H4pUCn018348;
	Fri, 16 Jan 2004 23:51:32 -0500 (EST)
Received: from [80.188.81.28] by mot-gw-04-213245064104.chello.fr with ESMTP id 31FCBFCB2E5 for <blast-nearterm-archive@netlib2.cs.utk.edu>; Fri, 16 Jan 2004 21:51:31 -0700
Message-ID: <n$89j9e$fyt95mj$8yj@1a8te>
From: "sales" <info3@ecom-universe.net>
Reply-To: "sales" <info3@ecom-universe.net>
To: <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: RE: For your information........... n   xjel
Date: Fri, 16 Jan 04 21:51:31 GMT
X-Mailer: The Bat! (v1.52f) Business
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="7E9F9DC_.ACC_C_"
X-Priority: 3
X-MSMail-Priority: Normal


--7E9F9DC_.ACC_C_
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>

<head>
<meta http-equiv=3D"Content-Language" content=3D"en-us">
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dwindows-=
1252">
<META name=3D"GENERATOR" content=3D"IBM NetObjects TopPage V4.0.3  for Win=
dows">
<meta name=3D"ProgId" content=3D"FrontPage.Editor.Document">
<title>Is your website in the top 20 listings</title>
</head>

<body BACKGROUND=3D"images/back.gif" BGCOLOR=3D"#FFFFFF" MARGINHEIGHT=3D"0=
" MARGINWIDTH=3D"0" TOPMARGIN=3D"0" LEFTMARGIN=3D"0" RIGHTMARGIN=3D"0">


 <CENTER><table border=3D"0" cellspacing=3D"0" cellpadding=3D"0" width=3D"=
*">
    <tr>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/head.jpg"
WIDTH=3D=
"255" HEIGHT=3D"260" BORDER=3D"0"></a></td>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/text.gif"
WIDTH=3D=
"445" HEIGHT=3D"260" BORDER=3D"0"></a></td>
    </tr>
    <tr>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/middle.jpg" WIDTH=
=3D"255" HEIGHT=3D"36" BORDER=3D"0"></a></td>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/engines.gif" WIDT=
H=3D"445" HEIGHT=3D"36" BORDER=3D"0"></a></td>
    </tr>
    <tr>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/feet.jpg"
WIDTH=3D=
"255" HEIGHT=3D"130" BORDER=3D"0"></a><P>
      <form method=3D"POST" action=3D"../cgi-bin/get_started2.cgi">
                    <CENTER><table border=3D"0" cellspacing=3D"0" width=3D=
"*">
                      <tr>
                        <td>
                  &nbsp;</td>
                      </tr>
                    </table></CENTER>
                </form></td>
      <td VALIGN=3DTOP>&nbsp;<P>
      <p>&nbsp;</p>
      <CENTER>
                    <table border=3D"0" cellspacing=3D"0" width=3D"355">
                      <tr>
                        <td>
                        <p align=3D"center">
                        <a href=3D"http://www.marketingbooster.com">
                        <font size=3D"4">Click Here for your FREE web site=
 
                        analysis!</font></a></td>
    </tr></TABLE></CENTER></td>
    </tr></TABLE></CENTER>
<P><BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
To be taken off our mailling list <A href=3D"http://www.marketingbooster.c=
om/remove.html">click here.</A><BR>
<BR>
<BR>
<BR>
<BR>
EZR 2052 newport blvd. suite #6, po box 36
costa mesa ca 92627<BR>
</P>
</body>

</html>s vykrpicsm  okxpp i iig ui
tc im sj g wzxudxbs izgacc
sigwpw lpjr z izyvnzk jcp
  sed 

--7E9F9DC_.ACC_C_--


From 79koaxivc@cs.com Sat Jan 17 02:35:51 2004
Return-Path: <79koaxivc@cs.com>
Received: from 160.36.58.108 ([61.11.13.210])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i0H7ZYCn022398;
	Sat, 17 Jan 2004 02:35:43 -0500 (EST)
Received: from [82.74.132.58]
	by 160.36.58.108 with SMTP;
	Thu, 12 Jun 2003 15:02:34 +0300
Message-ID: <tb$fet2s6$1$2f7y81@l10a.7f.sy>
From: "Damien Albright" <79koaxivc@cs.com>
Reply-To: "Damien Albright" <79koaxivc@cs.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Subject: Is your Computer running slow??
Date: Thu, 12 Jun 2003 15:02:34 GMT
X-Mailer: v1.4
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_D2BE7.E1A_.C7"
X-Priority: 3
X-MSMail-Priority: Normal


--_D2BE7.E1A_.C7
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<DIV>&nbsp; <FONT color=3D#ff0000><STRONG>Important Notification About You=
r PCs 
  Recent Internet Activity:</STRONG></FONT><BR><BR>You may have recently n=
oticed 
  that your computer's connection to the Internet has been much slower tha=
n 
  usual. If you, or someone else that uses your PC, have been downloading =

  Internet files such as music, games, or movies, then adware and spyware =

  programs may have been added to your computer's hard drive without your =
direct 
  knowledge.<BR><BR><FONT color=3D#9933cc><STRONG>To check for any adware =
or 
  spyware applications press on the link below. There is no cost for this =

  scan:<STRONG></FONT><BR><STRONG><BR><A 
  href=3D"http://www.directurls.com?c=3D6">Click Here For A FREE PC 
  Scan</A></STRONG><BR>
  <P></P></FONT>If after completing the complimentary scan it is brought t=
o your 
  attention that your computer's hard drive is infected with adware, spywa=
re, or 
  both, then it may be in your computer's best interest to remove the adwa=
re and 
  spyware applications. <FONT color=3D#9933cc><STRONG><A 
  href=3D"http://www.directurls.com?c=3D6">Begin the 
  scan:</A></STRONG> </DIV></FONT></STRONG></STRONG>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <TABLE width=3D600 bgColor=3Dwhite border=3D1>
  <TBODY>
  <TR>
    <TD><SPAN class=3Dstyle1><FONT face=3D"Arial, Helvetica, sans-serif" s=
ize=3D1>
      <OL>This email complies with the Federal Can-Spam Act effective on 1=
/1/2004  
        <BR><BR>
	  <LI>We remove all requests within 30 days
        <LI>List Sender and Address:<BR>
		Webdealz<BR>
		14252 Culver Dr. #A<BR>
		Irvine, CA 92604 
        <LI><A 
        href=3D"http://www.webdilz.com/unlist.html">Click here to be remov=
ed</A> 
      </LI></OL></FONT></SPAN>
<DIV><SPAN class=3D374393223-07012004><FONT face=3DArial color=3D#0000ff s=
ize=3D2>To not 
receive future offers/promotions from SpyWareNuker please press on the bel=
ow 
link and scroll to the bottom of the page:<BR><A 
href=3D"http://www.directurls.com?c=3D8
">http://www.directurls.com?c=3D8
</A></FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV><SPAN class=3D374393223-07012004><FONT face=3DArial color=3D#0000ff s=
ize=3D2>100 E. 
San Marcos Blvd.<BR>San Marcos, CA 92069</FONT></SPAN></DIV></TD></TR>
</TBODY></TABLE>

--_D2BE7.E1A_.C7--


From fxlbp87c@cs.com Sun Jan 18 16:03:48 2004
Return-Path: <fxlbp87c@cs.com>
Received: from p213.54.178.169.tisdip.tiscali.de (p213.54.178.169.tisdip.tiscali.de [213.54.178.169])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i0IL3hCn013077;
	Sun, 18 Jan 2004 16:03:44 -0500 (EST)
Received: from [157.89.153.222] by p213.54.178.169.tisdip.tiscali.de with SMTP for <blast-funct-archive@netlib2.cs.utk.edu>; Fri, 13 Jun 2003 21:35:15 -0400
Message-ID: <1u98jx-5f6b-2-v@wcx8.z.9d5a6d>
From: "Elvis Lassiter" <fxlbp87c@cs.com>
Reply-To: "Elvis Lassiter" <fxlbp87c@cs.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Subject: Is your Computer running slow??
Date: Fri, 13 Jun 2003 21:35:15 GMT
X-Mailer: nicemailerv1.2
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=".A8.22C.72."
X-Priority: 3
X-MSMail-Priority: Normal


--.A8.22C.72.
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<DIV>&nbsp; <FONT color=3D#ff0000><STRONG>Important Notification About You=
r PCs 
  Recent Internet Activity:</STRONG></FONT><BR><BR>You may have recently n=
oticed 
  that your computer's connection to the Internet has been much slower tha=
n 
  usual. If you, or someone else that uses your PC, have been downloading =

  Internet files such as music, games, or movies, then adware and spyware =

  programs may have been added to your computer's hard drive without your =
direct 
  knowledge.<BR><BR><FONT color=3D#9933cc><STRONG>To check for any adware =
or 
  spyware applications press on the link below. There is no cost for this =

  scan:<STRONG></FONT><BR><STRONG><BR><A 
  href=3D"http://www.directurls.com?c=3D6">Click Here For A FREE PC 
  Scan</A></STRONG><BR>
  <P></P></FONT>If after completing the complimentary scan it is brought t=
o your 
  attention that your computer's hard drive is infected with adware, spywa=
re, or 
  both, then it may be in your computer's best interest to remove the adwa=
re and 
  spyware applications. <FONT color=3D#9933cc><STRONG><A 
  href=3D"http://www.directurls.com?c=3D6">Begin the 
  scan:</A></STRONG> </DIV></FONT></STRONG></STRONG>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <P>&nbsp;</P>
  <TABLE width=3D600 bgColor=3Dwhite border=3D1>
  <TBODY>
  <TR>
    <TD><SPAN class=3Dstyle1><FONT face=3D"Arial, Helvetica, sans-serif" s=
ize=3D1>
      <OL>This email complies with the Federal Can-Spam Act effective on 1=
/1/2004  
        <BR><BR>
	  <LI>We remove all requests within 30 days
        <LI>List Sender and Address:<BR>
		Webdealz<BR>
		14252 Culver Dr. #A<BR>
		Irvine, CA 92604 
        <LI><A 
        href=3D"http://www.webdilz.com/unlist.html">Click here to be remov=
ed</A> 
      </LI></OL></FONT></SPAN>
<DIV><SPAN class=3D374393223-07012004><FONT face=3DArial color=3D#0000ff s=
ize=3D2>To not 
receive future offers/promotions from SpyWareNuker please press on the bel=
ow 
link and scroll to the bottom of the page:<BR><A 
href=3D"http://www.directurls.com?c=3D8
">http://www.directurls.com?c=3D8
</A></FONT></SPAN></DIV>
<DIV>&nbsp;</DIV>
<DIV>&nbsp;</DIV>
<DIV><SPAN class=3D374393223-07012004><FONT face=3DArial color=3D#0000ff s=
ize=3D2>100 E. 
San Marcos Blvd.<BR>San Marcos, CA 92069</FONT></SPAN></DIV></TD></TR>
</TBODY></TABLE>

--.A8.22C.72.--


From uvaj9c@fiorellini.it Wed Jan 21 19:39:00 2004
Return-Path: <uvaj9c@fiorellini.it>
Received: from 160.36.58.108 ([213.25.170.247])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i0M0coCn025784
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 21 Jan 2004 19:38:54 -0500 (EST)
Received: from [215.72.40.77] by 160.36.58.108 with ESMTP id <209904-64681>; Wed, 21 Jan 2004 21:34:31 -0300
Message-ID: <r733-l$rm6t42-r2$2$j4mi5f5j-6g6@8ch4bk.33>
From: "Cleo Grover" <uvaj9c@fiorellini.it>
Reply-To: "Cleo Grover" <uvaj9c@fiorellini.it>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Give Your Future Five Minutes  nn rp
Date: Wed, 21 Jan 04 21:34:31 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2616
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="F_A63E8C60C15_3BA"
X-Priority: 3
X-MSMail-Priority: Normal


--F_A63E8C60C15_3BA
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
</head>
<body text=3D"#000000" bgcolor=3D"#009900" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
&nbsp;
<center><table CELLSPACING=3D0 WIDTH=3D"690" BGCOLOR=3D"#FFFFFF" class=3D"=
center" >
<tr>
<td class=3D"backImg">&nbsp;
<center>
<br><b><font face=3D"Arial">DO NOT DELETE THIS - <u>READ FIRST</u> - IT WI=
LL
CHANGE YOUR LIFE!</font></b>
<p><font face=3D"Arial"><font size=3D+2>This <b>Really Works</b>!</font></=
font>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>Give=
 Your
Future Five Minutes And Read This Email</font></font></font></u></b>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>It W=
ill
Change Your Life!</font></font></font></u></b>
<p><b><i><font face=3D"Arial">A One Time Investment Of $25 Plus This Simpl=
e
Technology</font></i></b>
<br><b><i><font face=3D"Arial">Could Make You Financially Secure For Life!=
</font></i></b></center>

<blockquote>
<center><font face=3D"Arial">Just Because <b>This&nbsp; Is Easy</b> doesn'=
t
mean it's not <b>Honest</b>, or <b>Real Business</b>.&nbsp; Keep&nbsp;</fo=
nt>
<br><font face=3D"Arial"><b>Working Hard</b> or Learn to <b>Work Smart</b>=
.
What do you think Successful People Do?</font></center>

<blockquote><font face=3D"Arial">This is a completely documented method to=

Get Wealthy and Anyone regardless of Age, Race, State of Health, Country
of origin, or Financial Standing can participate. No Education or Special
Experience is needed. Within the next two weeks you could be well on your
way to a $500,000.00 income. Imagine being able to make over a half millio=
n
dollars every 4 to 5 months from your home.</font></blockquote>

<center><b><font face=3D"Arial">THANK'S TO THE COMPUTER AGE AND THE INTERN=
ET</font></b>
<p><b><font face=3D"Arial"><font size=3D+1>AS SEEN ON NATIONAL TV:</font><=
/font></b></center>

<center><b><font face=3D"Arial">PARENTS OF 15 - YEAR OLD - FIND $71,000 CA=
SH
HIDDEN IN HIS CLOSET!</font></b></center>

<blockquote><font face=3D"Arial">Does this headline look familiar? Of cour=
se
it does. You most likely have just seen this story recently featured on
a major nightly news program (USA). And reported elsewhere in the world.
His mother was cleaning and putting laundry away when she came across a
large brown paper bag that was suspiciously buried beneath some clothes
and a skateboard in the back of her 15-year-old sons closet. Nothing could=

have prepared her for the shock she got when she opened the bag and found
it was full of cash. Five-Dollar Bills, Twenties, Fifties and Hundreds
- all neatly rubber-banded in labelled piles.</font>
<p><font face=3D"Arial">"My first thought was that he had robbed a bank",
says the 41-year-old woman, "There was over $71,000 Dollars in that bag
-- that's more than my husband earns in a year".</font>
<p><font face=3D"Arial">The woman immediately called her husband at the ca=
r-dealership
where he worked to tell him what she had discovered. He came home right
away, and they drove together to the boys school, and picked him up. Littl=
e
did they suspect that where the money came from, was more shocking than
actually finding it in the closet.</font>
<p><font face=3D"Arial">As it turns out, the boy had been sending out, via=

E-mail, a type of "Report" to E-mail addresses that he obtained off the
Internet. Everyday after school for the past 2 months, he had been doing
this right on his computer in his bedroom.</font>
<p><font face=3D"Arial">"I just got the E-mail one day and I figured what
the heck, I put my name on it like the instructions said and I started
sending it out", says the clever 15-year-old.</font>
<p><font face=3D"Arial">The E-mail letter listed 5 addresses and contained=

instructions to send one $5 dollar bill to each person on the list, then
delete the address at the bottom and move the others addresses Down , and
finally to add your name to the top of the list.</font>
<p><font face=3D"Arial">The letter goes on to state that you would receive=

Several Thousand Dollars in Five-Dollar Bills within 2 weeks if you sent
out the letter with your name at the top of the 5-address list. "I get
junk E-mail all the time, and really did not think it was going to work",
the boy continues.</font>
<p><font face=3D"Arial">Within the first few days of sending out the E-mai=
l,
the Post Office Box that his parents had gotten him for his video-game
magazine subscriptions began to fill up with not with magazines, but envel=
opes
containing $5 Bills.</font>
<p><font face=3D"Arial">"About a week later I rode [my bike] down to the
post office and my box had 1 magazine and about 300 envelops stuffed in
it. There was also a yellow slip that said I had to go up to the [post
office] counter. I thought I was in trouble or something (laughs)". He
goes on, "I went up to the counter and they had a whole box of more mail
for me. I had to ride back home and empty out my backpack because I could
not carry it all". Over the next few weeks, the boy continued sending out
the E-mail."The money just kept coming in and I just kept sorting it and
stashing it in the closet, barely had time for my homework".He had also
been riding his bike to several of the banks in his area and exchanging
the $5 bills for twenties, fifties and hundreds.</font>
<p><font face=3D"Arial">"I didn't want the banks to get suspicious so I ke=
pt
riding to different banks with like five thousand at a time in my backpack=
.
I would usually tell the lady at the bank counter that my dad had sent
me in to exchange the money and he was outside waiting for me.One time
the lady gave me a really strange look and told me that she would not be
able to do it for me and my dad would have to come in and do it, but I
just rode to the next bank down the street (laughs)." Surprisingly, the
boy did not have any reason to be afraid.The reporting news team examined
and investigated the so-called "chain-letter" the boy was sending out and
found that it was not a chain-letter at all.In fact, it was completely
legal according to US Postal and Lottery Laws, Title 18, Section 1302 and
1341, or Title 18, Section 3005 in the US code, also in the code of federa=
l
regulations, Volume 16, Sections 255 and 436, which state a product or
service must be exchanged for money received.</font>
<p><font face=3D"Arial">Every five-dollar bill that he received contained
a little note that read, "Please send me report number XYX".This simple
note made the letter legal because he was exchanging a service (A Report
on how-to) for a five-dollar fee.</font>
<p><font face=3D"Arial">[This is the end of the media release. If you woul=
d
like to understand how the system works and get your $71,000 plus - please=

continue reading. What appears below is what the 15 year old was sending
out on the net - YOU CAN USE IT TOO - just follow the simple instructions]=
</font>
<br>&nbsp;
<br>&nbsp;
<p><b><font face=3D"Arial">BE AN INTERNET MILLIONAIRE LIKE OTHERS&nbsp; WI=
THIN
A YEAR!!!</font></b>
<p><font face=3D"Arial"><b>Before you say ''Bull'', please read the follow=
ing.</b>
This is the letter you have been hearing about on the news lately. Due
to the popularity of this letter on the Internet, a national weekly news
program recently devoted an entire show to the investigation of this progr=
am
described below, to see if it really can make people money. The show also
investigated whether or not the program was legal.</font>
<p><font face=3D"Arial">Their findings proved once and for all that there
are ''absolutely NO Laws prohibiting the participation in the program and
if people can "follow the simple instruction" they are bound to make some
mega bucks with only $25 out of pocket cost''.</font>
<p><font face=3D"Arial">DUE TO THE RECENT INCREASE OF POPULARITY &amp; RES=
PECT
THIS PROGRAM HAS ATTAINED, IT IS CURRENTLY WORKING BETTER THAN EVER.</font=
>
<p><font face=3D"Arial">This is what one had to say:&nbsp;</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">''Thanks to th=
is
profitable opportunity". I was approached many times before but each time
I passed on it. I am so glad I finally joined just to see what one could
expect in return for the minimal effort and money required. To my astonish=
ment,
I received a total $ 610,470.00 in 21 weeks, with money still coming in''.=
</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>Pam =
Hedland</font></font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>For=
t Lee,
New Jersey.</font></font></font></i></b></blockquote>
</blockquote>

<hr width=3D"600" noshade>
<blockquote><font face=3D"Arial">Another said:</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"This program =
has
been around for a long time but I never believed in it. But one day when
I received this again in the mail I decided to gamble my $25 on it. I foll=
owed
the simple instructions and Wa-laa ..... 3 weeks later the money started
to come in. First month I only made $240.00 but the next 2 months after
that I made a total of $290,000.00. So far, in the past 8 months by re-ent=
ering
the program, I have made over $710,000.00 and I am playing it again. The
key to success in this program is to follow the simple steps and NOT chang=
e
anything."</font></font></i></blockquote>

<p><br><font face=3D"Arial">More testimonials later but first...</font></b=
lockquote>
</blockquote>

<center>
<p><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENCE</font>=
</b></center>

<p>
<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to
make at least $500,000 every 4 to 5 months easily and</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">comfortably, please re=
ad
the following...THEN READ IT AGAIN and AGAIN !!!</font></font></b></center=
>

<hr width=3D"85%">
<center>
<p><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fon=
t></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>

<blockquote>
<blockquote><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>=

<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font></blockquote>
</blockquote>

<center>
<p><br><b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>=

<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You will need all 5 reports so that you
can save them on your computer and resell them.</font>
<center>
<p><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>

<p><font face=3D"Arial">Within a few days <b>you will receive, via e-mail,=

each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<p><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will loose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!&nbsp;</u></b=
></font></blockquote>

<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b>
<p><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such and=

you will be VERY profitable in a short period of time</font></font></i></b=
></center>
</blockquote>

<blockquote>
<blockquote><font face=3D"Arial">After you have ordered all 5 reports, tak=
e
this advertisement and REMOVE the name &amp; address of the person in REPO=
RT
# 5. This person has made it through the cycle and is no doubt counting
their fortune. Email them and ask that's what I always did.</font><font fa=
ce=3D"Arial">Move
the name &amp; address in REPORT # 4 down TO REPORT # 5.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 3 down TO REPORT # 4.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 2 down TO REPORT # 3.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 1 down TO REPORT # 2</font><font
face=3D=
"Arial">Insert
YOUR name &amp; address in the REPORT # 1 Position.</font></blockquote>

<center>
<p><br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &a=
mp;
address <b>ACCURATELY</b></font>
<br><font face=3D"Arial">(Just cut and paste! This is critical to <b>YOUR
</b>success.</font></center>
</blockquote>

<center><font face=3D"Arial">Take this entire letter, with the modified li=
st
of names, and save it on your computer.</font>
<p><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cente=
r>

<blockquote>
<blockquote><font face=3D"Arial"><b>Save this on a disk as well just in ca=
se
if you loose any data</b>. To assist you with marketing your business on
the internet, the 5 reports you purchase will provide you with invaluable
marketing information which includes how to send bulk e-mails legally,
where to find thousands of free classified ads and much more. There are
2 Primary methods to get this venture going:</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY=
</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Let's say that you decide to start small,=

just to see how it goes, and we will assume You and those involved send
out only 5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NU=
MBERS
DO NOT LIE</font></font></font></b></center>

<blockquote>
<blockquote><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-=
1>GET
A PENCIL &amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO
MATTER HOW YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did
it was $55,000 in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 2: BY PLACING FREE ADS ON THE INT=
ERNET</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Advertising on the net is very, very inex=
pensive
and there are hundreds of FREE places to advertise. Placing a lot of free
ads on the Internet will easily get a larger response. We strongly suggest=

you start with Method # 1 and add METHOD #2 as you go along. For every
$5 you receive, all you must do is e-mail them the Report they ordered.
That's it. Always provide same day service on all orders.</font>
<p><font face=3D"Arial">This will guarantee that the e-mail they send out,=

with your name and address on it, will be prompt because they can not adve=
rtise
until they receive the report.</font>
<p><font face=3D"Arial">The reason for the "cash" is not because this is
illegal or somehow "wrong". It is simply about time. Time for checks or
credit cards to be cleared or approved, etc. Concealing it is simply so
no one can SEE there is money in the envelope and steal it before it gets
to you.</font></blockquote>

<center><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME=

ONLY</b>.</font></center>

<blockquote><b><font face=3D"Arial">Notes:</font></b>
<p><font face=3D"Arial">Always send $5 cash (U.S. CURRENCY) for each Repor=
t.
Checks NOT accepted. Make sure the cash is concealed by wrapping it in
at least 2 sheets of paper or foil will also work. On one of those sheets
of paper, write the NUMBER &amp; the NAME of the Report you are ordering,
YOUR E-MAIL ADDRESS and your name and postal address.</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></=
font></b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<br>&nbsp;
<center><table WIDTH=3D"80%" class=3D"center" >
<tr>
<td WIDTH=3D"30%" BGCOLOR=3D"#009900" class=3D"left">&nbsp;</td>

<td>
<br><b><font face=3D"Arial">REPORT #1:&nbsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<blockquote><b><font face=3D"Arial,Helvetica"><font size=3D-1>Ashlee C</fo=
nt></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>P.O. Box 397093</fon=
t></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Cambridge, MA 02139<=
/font></font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>Frank G.</font></font>=
</b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 185</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>Middlefield, Ohio 44062-9998</=
font></font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>J. Haviaras</font></fo=
nt></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 22449</font></font></=
b>
<br><b><font face=3D"Arial"><font size=3D-1>lake buena vista, fl 32830</fo=
nt></font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>c. bernerd</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 319</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>Kure Beach, NC 28449</font></f=
ont></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:&nbsp;</f=
ont></font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>mike w.</font></font><=
/b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 297</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>kure beach,nc 28449</font></fo=
nt></b></blockquote>
</td>
</tr>
</table></center>

<blockquote>
<blockquote>
<center><b><font face=3D"Arial"><font size=3D+0>There are currently more t=
han
570,000,000 people online worldwide!</font></font></b></center>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$=
$$$$$
YOUR SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>

<blockquote><font face=3D"Arial">Follow these guidelines to guarantee your=

success:</font>
<p><font face=3D"Arial">If you do not receive at least 10 orders for Repor=
t
#1 within 2 weeks, continue sending e-mails until you do.</font>
<p><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks af=
ter
that you should receive 100 orders or more for REPORT # 2. If you did not,=

continue advertising or sending e-mails until you do.</font>
<p><font face=3D"Arial">**Once you have received 100 or more orders for Re=
port#
2, YOU CAN RELAX, because the system is already working for you, and the
cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Every time
your name is moved down on the list, you are placed in front of a Differen=
t
report.</font>
<p><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching wh=
ich
report people are ordering from you. IF YOU WANT TO GENERATE MORE INCOME
SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN. There
is NO LIMIT to the income you can generate from this business!!!</font></b=
lockquote>
</blockquote>

<center><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF=

THIS PROGRAM:</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You have just received information that
can give you financial freedom for the rest of your life, with NO RISK
and JUST A LITTLE BIT OF EFFORT. You can make more money in the next few
weeks and months than you have ever imagined. Follow the program EXACTLY
AS INSTRUCTED. Do not change it in any way. It works exceedingly well as
it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to Cole Schulte (me) I send out
least 5 million a month, there are bulk emails companies you can hire and
they do all the work for you...) Remember though, the more you send out
the more potential customers you will reach. So my friend, I have given
you the ideas, information, materials and opportunity to become financiall=
y
independent. IT IS UP TO YOU NOW!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">MORE TESTIMONIALS</font></b></center>

<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"My name is Mi=
tchell.
My wife, Jody and I live in Chicago. I am an accountant with a major U.S.C=
orporation
and I make pretty good money. When I received this program I grumbled to
Jody about receiving 'junk mail'. I made fun of the whole thing, spouting
my knowledge of the population and percentages involved. I 'knew' it would=
n't
work. Jody totally ignored my supposed intelligence and few days later
she jumped in with both feet. I made merciless fun of her, and was ready
to lay the old 'I told you so' on her when the thing didn't work. Well,
the laugh was on me! Within 3 weeks she had received 50 responses. Within
the next 45 days she had received total $ 147,200.00 ........ all cash!
I was shocked. I have joined Jody in her 'hobby'."</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Mitchell Wolf M.D.,<=
/font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Chicago, Illinois</=
font></font></i></b></blockquote>
</blockquote>

<center>
<hr width=3D"85%"></center>

<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"Not being the=

gambling type, it took me several weeks to make up my mind to participate
in this plan. But conservative as I am, I decided that the initial investm=
ent
was so little that there was just no way that I wouldn't get enough orders=

to at least get my money back. I was surprised when I found my medium size=

post office box crammed with orders. I made $319,210.00 in the first 12
weeks. The nice thing about this deal is that it does not matter where
people live. There simply isn't a better investment with a faster return
and so big".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Dan Sondstrom,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Alberta, Canada</fo=
nt></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"I had receive=
d
this program before. I deleted it, but later I wondered if I should have
given it a try. Of course, I had no idea who to contact to get another
copy, so I had to wait until I was e-mailed again by someone else........1=
1
months passed then it luckily came again...... I did not delete this one!
I made more than $490,000 on my first try and all the money came within
22 weeks".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Susan De Suza,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">New York, N.Y.</fon=
t></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"It really is =
a
great opportunity to make relatively easy money with little cost to you.
I followed the simple instructions carefully and within 10 days the money
started to come in. My first month I made $ 20,560.00 and by the end of
third month my total cash count was $ 362,840.00. Life is beautiful, Thanx=

to the internet".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Fred Dellaca,</font>=
</font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Westport, New Zeala=
nd</font></font></i></b></blockquote>

<hr width=3D"85%"></blockquote>

<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<p><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></font=
></b></center>
</blockquote>

<center><i><font face=3D"Arial"><font size=3D-1>If you have any questions =
as
to the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<p>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>This =
message
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

<div class=3D"ItalicBold"></div>

</body>
</html>
nbdjvxov yjkutekvukun z ttu fxio gbu wxv a

--F_A63E8C60C15_3BA--


From 3ltzrys@wrenchgreen.freeserve.co.uk Thu Jan 22 11:01:28 2004
Return-Path: <3ltzrys@wrenchgreen.freeserve.co.uk>
Received: from 160.36.58.108 ([61.233.205.110])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i0MG1ECn021593
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 22 Jan 2004 11:01:20 -0500 (EST)
Received: from [233.152.188.138] by 160.36.58.108; Thu, 22 Jan 2004 14:53:56 -0100
Message-ID: <r-5t$8x00o$ju-s@vck.j3.5i.ua>
From: "Rob Koch" <3ltzrys@wrenchgreen.freeserve.co.uk>
Reply-To: "Rob Koch" <3ltzrys@wrenchgreen.freeserve.co.uk>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: BE AN INTERNET MILLIONAIRE LIKE OTHERS  WITHIN A YEAR!!! agnzd mclb
Date: Thu, 22 Jan 04 14:53:56 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2616
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="3__7E_FDAE8E"
X-Priority: 3
X-MSMail-Priority: Normal


--3__7E_FDAE8E
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
</head>
<body text=3D"#000000" bgcolor=3D"#009900" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
&nbsp;
<center><table CELLSPACING=3D0 WIDTH=3D"690" BGCOLOR=3D"#FFFFFF" class=3D"=
center" >
<tr>
<td class=3D"backImg">&nbsp;
<center>
<br><b><font face=3D"Arial">DO NOT DELETE THIS - <u>READ FIRST</u> - IT WI=
LL
CHANGE YOUR LIFE!</font></b>
<p><font face=3D"Arial"><font size=3D+2>This <b>Really Works</b>!</font></=
font>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>Give=
 Your
Future Five Minutes And Read This Email</font></font></font></u></b>
<p><b><u><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>It W=
ill
Change Your Life!</font></font></font></u></b>
<p><b><i><font face=3D"Arial">A One Time Investment Of $25 Plus This Simpl=
e
Technology</font></i></b>
<br><b><i><font face=3D"Arial">Could Make You Financially Secure For Life!=
</font></i></b></center>

<blockquote>
<center><font face=3D"Arial">Just Because <b>This&nbsp; Is Easy</b> doesn'=
t
mean it's not <b>Honest</b>, or <b>Real Business</b>.&nbsp; Keep&nbsp;</fo=
nt>
<br><font face=3D"Arial"><b>Working Hard</b> or Learn to <b>Work Smart</b>=
.
What do you think Successful People Do?</font></center>

<blockquote><font face=3D"Arial">This is a completely documented method to=

Get Wealthy and Anyone regardless of Age, Race, State of Health, Country
of origin, or Financial Standing can participate. No Education or Special
Experience is needed. Within the next two weeks you could be well on your
way to a $500,000.00 income. Imagine being able to make over a half millio=
n
dollars every 4 to 5 months from your home.</font></blockquote>

<center><b><font face=3D"Arial">THANK'S TO THE COMPUTER AGE AND THE INTERN=
ET</font></b>
<p><b><font face=3D"Arial"><font size=3D+1>AS SEEN ON NATIONAL TV:</font><=
/font></b></center>

<center><b><font face=3D"Arial">PARENTS OF 15 - YEAR OLD - FIND $71,000 CA=
SH
HIDDEN IN HIS CLOSET!</font></b></center>

<blockquote><font face=3D"Arial">Does this headline look familiar? Of cour=
se
it does. You most likely have just seen this story recently featured on
a major nightly news program (USA). And reported elsewhere in the world.
His mother was cleaning and putting laundry away when she came across a
large brown paper bag that was suspiciously buried beneath some clothes
and a skateboard in the back of her 15-year-old sons closet. Nothing could=

have prepared her for the shock she got when she opened the bag and found
it was full of cash. Five-Dollar Bills, Twenties, Fifties and Hundreds
- all neatly rubber-banded in labelled piles.</font>
<p><font face=3D"Arial">"My first thought was that he had robbed a bank",
says the 41-year-old woman, "There was over $71,000 Dollars in that bag
-- that's more than my husband earns in a year".</font>
<p><font face=3D"Arial">The woman immediately called her husband at the ca=
r-dealership
where he worked to tell him what she had discovered. He came home right
away, and they drove together to the boys school, and picked him up. Littl=
e
did they suspect that where the money came from, was more shocking than
actually finding it in the closet.</font>
<p><font face=3D"Arial">As it turns out, the boy had been sending out, via=

E-mail, a type of "Report" to E-mail addresses that he obtained off the
Internet. Everyday after school for the past 2 months, he had been doing
this right on his computer in his bedroom.</font>
<p><font face=3D"Arial">"I just got the E-mail one day and I figured what
the heck, I put my name on it like the instructions said and I started
sending it out", says the clever 15-year-old.</font>
<p><font face=3D"Arial">The E-mail letter listed 5 addresses and contained=

instructions to send one $5 dollar bill to each person on the list, then
delete the address at the bottom and move the others addresses Down , and
finally to add your name to the top of the list.</font>
<p><font face=3D"Arial">The letter goes on to state that you would receive=

Several Thousand Dollars in Five-Dollar Bills within 2 weeks if you sent
out the letter with your name at the top of the 5-address list. "I get
junk E-mail all the time, and really did not think it was going to work",
the boy continues.</font>
<p><font face=3D"Arial">Within the first few days of sending out the E-mai=
l,
the Post Office Box that his parents had gotten him for his video-game
magazine subscriptions began to fill up with not with magazines, but envel=
opes
containing $5 Bills.</font>
<p><font face=3D"Arial">"About a week later I rode [my bike] down to the
post office and my box had 1 magazine and about 300 envelops stuffed in
it. There was also a yellow slip that said I had to go up to the [post
office] counter. I thought I was in trouble or something (laughs)". He
goes on, "I went up to the counter and they had a whole box of more mail
for me. I had to ride back home and empty out my backpack because I could
not carry it all". Over the next few weeks, the boy continued sending out
the E-mail."The money just kept coming in and I just kept sorting it and
stashing it in the closet, barely had time for my homework".He had also
been riding his bike to several of the banks in his area and exchanging
the $5 bills for twenties, fifties and hundreds.</font>
<p><font face=3D"Arial">"I didn't want the banks to get suspicious so I ke=
pt
riding to different banks with like five thousand at a time in my backpack=
.
I would usually tell the lady at the bank counter that my dad had sent
me in to exchange the money and he was outside waiting for me.One time
the lady gave me a really strange look and told me that she would not be
able to do it for me and my dad would have to come in and do it, but I
just rode to the next bank down the street (laughs)." Surprisingly, the
boy did not have any reason to be afraid.The reporting news team examined
and investigated the so-called "chain-letter" the boy was sending out and
found that it was not a chain-letter at all.In fact, it was completely
legal according to US Postal and Lottery Laws, Title 18, Section 1302 and
1341, or Title 18, Section 3005 in the US code, also in the code of federa=
l
regulations, Volume 16, Sections 255 and 436, which state a product or
service must be exchanged for money received.</font>
<p><font face=3D"Arial">Every five-dollar bill that he received contained
a little note that read, "Please send me report number XYX".This simple
note made the letter legal because he was exchanging a service (A Report
on how-to) for a five-dollar fee.</font>
<p><font face=3D"Arial">[This is the end of the media release. If you woul=
d
like to understand how the system works and get your $71,000 plus - please=

continue reading. What appears below is what the 15 year old was sending
out on the net - YOU CAN USE IT TOO - just follow the simple instructions]=
</font>
<br>&nbsp;
<br>&nbsp;
<p><b><font face=3D"Arial">BE AN INTERNET MILLIONAIRE LIKE OTHERS&nbsp; WI=
THIN
A YEAR!!!</font></b>
<p><font face=3D"Arial"><b>Before you say ''Bull'', please read the follow=
ing.</b>
This is the letter you have been hearing about on the news lately. Due
to the popularity of this letter on the Internet, a national weekly news
program recently devoted an entire show to the investigation of this progr=
am
described below, to see if it really can make people money. The show also
investigated whether or not the program was legal.</font>
<p><font face=3D"Arial">Their findings proved once and for all that there
are ''absolutely NO Laws prohibiting the participation in the program and
if people can "follow the simple instruction" they are bound to make some
mega bucks with only $25 out of pocket cost''.</font>
<p><font face=3D"Arial">DUE TO THE RECENT INCREASE OF POPULARITY &amp; RES=
PECT
THIS PROGRAM HAS ATTAINED, IT IS CURRENTLY WORKING BETTER THAN EVER.</font=
>
<p><font face=3D"Arial">This is what one had to say:&nbsp;</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">''Thanks to th=
is
profitable opportunity". I was approached many times before but each time
I passed on it. I am so glad I finally joined just to see what one could
expect in return for the minimal effort and money required. To my astonish=
ment,
I received a total $ 610,470.00 in 21 weeks, with money still coming in''.=
</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>Pam =
Hedland</font></font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF"><font size=3D-1>For=
t Lee,
New Jersey.</font></font></font></i></b></blockquote>
</blockquote>

<hr width=3D"600" noshade>
<blockquote><font face=3D"Arial">Another said:</font>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"This program =
has
been around for a long time but I never believed in it. But one day when
I received this again in the mail I decided to gamble my $25 on it. I foll=
owed
the simple instructions and Wa-laa ..... 3 weeks later the money started
to come in. First month I only made $240.00 but the next 2 months after
that I made a total of $290,000.00. So far, in the past 8 months by re-ent=
ering
the program, I have made over $710,000.00 and I am playing it again. The
key to success in this program is to follow the simple steps and NOT chang=
e
anything."</font></font></i></blockquote>

<p><br><font face=3D"Arial">More testimonials later but first...</font></b=
lockquote>
</blockquote>

<center>
<p><b><font face=3D"Arial">PRINT THIS NOW FOR YOUR FUTURE REFERENCE</font>=
</b></center>

<p>
<hr width=3D"85%">
<center><b><font face=3D"Arial"><font color=3D"#FF0000">If you would like =
to
make at least $500,000 every 4 to 5 months easily and</font></font></b>
<br><b><font face=3D"Arial"><font color=3D"#FF0000">comfortably, please re=
ad
the following...THEN READ IT AGAIN and AGAIN !!!</font></font></b></center=
>

<hr width=3D"85%">
<center>
<p><b><font face=3D"Arial">FOLLOW THE SIMPLE INSTRUCTIONS BELOW&nbsp;</fon=
t></b>
<br><b><font face=3D"Arial">AND YOUR FINANCIAL DREAMS WILL COME TRUE!</fon=
t></b></center>

<blockquote>
<blockquote><b><i><u><font face=3D"Arial">INSTRUCTIONS:</font></u></i></b>=

<p><font face=3D"Arial"><font size=3D-1>For each report, send $5 CASH, THE=

NAME &amp; NUMBER OF THE REPORT YOU ARE ORDERING and YOUR E-MAIL ADDRESS
to the person whose name appears ON THAT LIST next to the report. MAKE
SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case of
any mail problems</font>.</font></blockquote>
</blockquote>

<center>
<p><br><b><font face=3D"Arial">WHEN YOU PLACE YOUR ORDER,&nbsp;</font></b>=

<br><b><font face=3D"Arial">MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!&nbs=
p;</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You will need all 5 reports so that you
can save them on your computer and resell them.</font>
<center>
<p><b><font face=3D"Arial">YOUR TOTAL COST $5 X 5 =3D $25.00</font></b>
<br><font face=3D"Arial">(That's what I spend every time I take my girlfri=
end
to the movies)</font></center>

<p><font face=3D"Arial">Within a few days <b>you will receive, via e-mail,=

each of the 5 reports from these 5 different individuals.</b> Save them
on your computer so they will be accessible for you to send to the 1,000's=

of people who will order them from you. Also make a floppy of these report=
s
and keep it in your desk in case something happens to your computer.</font=
>
<br>&nbsp;
<p><b><font face=3D"Arial">IMPORTANT:</font></b>
<p><font face=3D"Arial"><b>DO NOT</b> alter the names of the people who ar=
e
listed next to each report, or their sequence on the list, in any way othe=
r
than what is instructed below in step '' 1 through 6 '' or you will loose
out on the majority of your profits. Once you understand the way this work=
s,
you will also see how it does not work if you change it. Remember, this
method has been tested, and <b>if you alter it, it will NOT work !!!</b>
People have tried to put their friends/relatives names on all five thinkin=
g
they could get all the money. But it does not work this way. Believe us,
some have tried to be greedy and then nothing happened. So Do Not try to
change anything other than what is instructed. Because if you do, it will
not work for you. Remember, <b><u>Honesty Reaps The Reward!!!&nbsp;</u></b=
></font></blockquote>

<center><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font
size=3D=
+1>This
IS a legitimate BUSINESS. You are offering&nbsp;</font></font></font></u><=
/i></b>
<br><b><i><u><font face=3D"Arial"><font color=3D"#3333FF"><font size=3D+1>=
a product
for sale and getting paid for it.&nbsp;</font></font></font></u></i></b>
<p><b><i><font face=3D"Arial"><font color=3D"#CC0000">Treat it as such and=

you will be VERY profitable in a short period of time</font></font></i></b=
></center>
</blockquote>

<blockquote>
<blockquote><font face=3D"Arial">After you have ordered all 5 reports, tak=
e
this advertisement and REMOVE the name &amp; address of the person in REPO=
RT
# 5. This person has made it through the cycle and is no doubt counting
their fortune. Email them and ask that's what I always did.</font><font fa=
ce=3D"Arial">Move
the name &amp; address in REPORT # 4 down TO REPORT # 5.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 3 down TO REPORT # 4.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 2 down TO REPORT # 3.</font><font
face=3D=
"Arial">Move
the name &amp; address in REPORT # 1 down TO REPORT # 2</font><font
face=3D=
"Arial">Insert
YOUR name &amp; address in the REPORT # 1 Position.</font></blockquote>

<center>
<p><br><font face=3D"Arial"><b>PLEASE MAKE SURE</b> you copy every name &a=
mp;
address <b>ACCURATELY</b></font>
<br><font face=3D"Arial">(Just cut and paste! This is critical to <b>YOUR
</b>success.</font></center>
</blockquote>

<center><font face=3D"Arial">Take this entire letter, with the modified li=
st
of names, and save it on your computer.</font>
<p><b><font face=3D"Arial">DO NOT MAKE ANY OTHER CHANGES</font></b></cente=
r>

<blockquote>
<blockquote><font face=3D"Arial"><b>Save this on a disk as well just in ca=
se
if you loose any data</b>. To assist you with marketing your business on
the internet, the 5 reports you purchase will provide you with invaluable
marketing information which includes how to send bulk e-mails legally,
where to find thousands of free classified ads and much more. There are
2 Primary methods to get this venture going:</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 1: BY SENDING BULK E-MAIL LEGALLY=
</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Let's say that you decide to start small,=

just to see how it goes, and we will assume You and those involved send
out only 5,000 e-mails each. Let's also assume</font>
<p><font face=3D"Arial">that the mailing receives only a 0.2% (2/10 of 1=
%)
response (the response could be much better but lets just say it is only
0.2%). Also many people will send out hundreds of thousands e-mails instea=
d
of only 5,000 each). Continuing with this example, you send out only 5,000=

e-mails.</font>
<p><font face=3D"Arial">With a 0.2% response, that is only 10 orders for
report # 1. Those 10 people responded by sending out 5,000 e-mail each
for a total of 50,000. Out of those 50,000 e-mails only 0.2% responded
with orders. That's=3D100 people responded and ordered Report # 2.</font>
<p><font face=3D"Arial">Those 100 people mail out 5,000 e-mails each for
a total of 500,000 e-mails. The 0.2% response to that is 1000 orders for
Report # 3.</font>
<p><font face=3D"Arial">Those 1000 people send 5,000 e-mail each for a tot=
al
of 5 million e-mail sent out. The 0.2% response is 10,000 orders for Repor=
t
# 4.</font>
<p><font face=3D"Arial">Those 10,000 people send out 5,000 e-mails each fo=
r
a total of 50,000,000 (50 million) e-mails. The 0.2% response to that is
100,000 orders for Report # 5.</font>
<p><font face=3D"Arial">THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.0=
0
(half a million dollars).</font>
<p><font face=3D"Arial">Your total income in this example is: 1... $50 +
2..... $500 + 3..... $5,000 + 4..... $50,000 + 5....$500,000 .... Grand
Total=3D$555,550.00</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+1>NU=
MBERS
DO NOT LIE</font></font></font></b></center>

<blockquote>
<blockquote><b><font face=3D"Arial"><font color=3D"#000000"><font size=3D-=
1>GET
A PENCIL &amp; PAPER AND FIGURE OUT THE WORST POSSIBLE RESPONSES AND NO
MATTER HOW YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF MONEY! (I did
it was $55,000 in four months)</font></font></font></b>
<p><font face=3D"Arial">REMEMBER, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING=

OUT OF 5,000 YOU MAILED TO. Dare to think for a moment what would happen
if everyone or half or even one 4th of those people mailed 100,000 e-mails=

each or more? There are 580.78 million people on the Internet worldwide
and counting, with thousands of more coming on line every day.&nbsp;</font=
>
<p><font face=3D"Arial">Believe me, there isn't any better way to make mon=
ey!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">METHOD # 2: BY PLACING FREE ADS ON THE INT=
ERNET</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">Advertising on the net is very, very inex=
pensive
and there are hundreds of FREE places to advertise. Placing a lot of free
ads on the Internet will easily get a larger response. We strongly suggest=

you start with Method # 1 and add METHOD #2 as you go along. For every
$5 you receive, all you must do is e-mail them the Report they ordered.
That's it. Always provide same day service on all orders.</font>
<p><font face=3D"Arial">This will guarantee that the e-mail they send out,=

with your name and address on it, will be prompt because they can not adve=
rtise
until they receive the report.</font>
<p><font face=3D"Arial">The reason for the "cash" is not because this is
illegal or somehow "wrong". It is simply about time. Time for checks or
credit cards to be cleared or approved, etc. Concealing it is simply so
no one can SEE there is money in the envelope and steal it before it gets
to you.</font></blockquote>

<center><font face=3D"Arial"><b>ORDER EACH REPORT BY ITS NUMBER &amp; NAME=

ONLY</b>.</font></center>

<blockquote><b><font face=3D"Arial">Notes:</font></b>
<p><font face=3D"Arial">Always send $5 cash (U.S. CURRENCY) for each Repor=
t.
Checks NOT accepted. Make sure the cash is concealed by wrapping it in
at least 2 sheets of paper or foil will also work. On one of those sheets
of paper, write the NUMBER &amp; the NAME of the Report you are ordering,
YOUR E-MAIL ADDRESS and your name and postal address.</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial"><font size=3D+1>AVAILABLE REPORTS</font></=
font></b>
<br><b><font face=3D"Arial">PLACE YOUR ORDER FOR THESE REPORTS NOW:</font>=
</b></center>

<br>&nbsp;
<center><table WIDTH=3D"80%" class=3D"center" >
<tr>
<td WIDTH=3D"30%" BGCOLOR=3D"#009900" class=3D"left">&nbsp;</td>

<td>
<br><b><font face=3D"Arial">REPORT #1:&nbsp;</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Advertisi=
ng
For Free On The Net"&nbsp;</font></font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Order Report #1 From=
:</font></font></b>
<blockquote><b><font face=3D"Arial,Helvetica"><font size=3D-1>R.L. Hauser<=
/font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>P.O. Box 954</font><=
/font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Lethbridge. ALTA</fo=
nt></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Canada T1J3Z8</font>=
</font></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #2:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"The Insider's Guide To Sending B=
ulk
E-mail On The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #2 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>F.M. Mowery</font></fo=
nt></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 880</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>Millsap, TX 76066</font></font=
></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #3:</font></b>
<br><font face=3D"Arial"><font color=3D"#000000"><font size=3D-1>"Secret T=
o Multilevel
Marketing On The Net"</font></font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #3 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>S. Johnson</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>2122 Allen Blvd. #24</font></f=
ont></b>
<br><b><font face=3D"Arial"><font size=3D-1>Middleton, WI 53562</font></fo=
nt></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #4:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Become A Millionaire Util=
izing
MLM &amp; The Net"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #4 From:</font></=
font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>M. England</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>518 Greystone Heights Rd.</fon=
t></font></b>
<br><b><font face=3D"Arial"><font size=3D-1>Gatlinburg, TN 37738</font></f=
ont></b></blockquote>

<hr width=3D"350">
<br><b><font face=3D"Arial">REPORT #5:</font></b>
<br><font face=3D"Arial"><font size=3D-1>"How To Safely Send 1 Million Ema=
ils
For Virtually No Money"</font></font>
<br><b><font face=3D"Arial"><font size=3D-1>Order Report #5 From:&nbsp;</f=
ont></font></b>
<blockquote><b><font face=3D"Arial"><font size=3D-1>C. Bernerd</font></fon=
t></b>
<br><b><font face=3D"Arial"><font size=3D-1>P.O. Box 319</font></font></b>=

<br><b><font face=3D"Arial"><font size=3D-1>Kure Beach, NC 28449</font></f=
ont></b></blockquote>
</td>
</tr>
</table></center>

<blockquote>
<blockquote>
<center><b><font face=3D"Arial"><font size=3D+0>There are currently more t=
han
570,000,000 people online worldwide!</font></font></b></center>
</blockquote>

<center><b><font face=3D"Arial"><font color=3D"#FF0000"><font size=3D+2>$$=
$$$$$
YOUR SUCCESS GUIDELINES $$$$$$$</font></font></font></b></center>

<blockquote><font face=3D"Arial">Follow these guidelines to guarantee your=

success:</font>
<p><font face=3D"Arial">If you do not receive at least 10 orders for Repor=
t
#1 within 2 weeks, continue sending e-mails until you do.</font>
<p><font face=3D"Arial">After you have received 10 orders, 2 to 3 weeks af=
ter
that you should receive 100 orders or more for REPORT # 2. If you did not,=

continue advertising or sending e-mails until you do.</font>
<p><font face=3D"Arial">**Once you have received 100 or more orders for Re=
port#
2, YOU CAN RELAX, because the system is already working for you, and the
cash will continue to roll in! THIS IS IMPORTANT TO REMEMBER: Every time
your name is moved down on the list, you are placed in front of a Differen=
t
report.</font>
<p><font face=3D"Arial">You can KEEP TRACK of your PROGRESS by watching wh=
ich
report people are ordering from you. IF YOU WANT TO GENERATE MORE INCOME
SEND ANOTHER BATCH OF E-MAILS AND START THE WHOLE PROCESS AGAIN. There
is NO LIMIT to the income you can generate from this business!!!</font></b=
lockquote>
</blockquote>

<center><b><font face=3D"Arial">FOLLOWING IS A NOTE FROM THE ORIGINATOR OF=

THIS PROGRAM:</font></b></center>

<blockquote>
<blockquote><font face=3D"Arial">You have just received information that
can give you financial freedom for the rest of your life, with NO RISK
and JUST A LITTLE BIT OF EFFORT. You can make more money in the next few
weeks and months than you have ever imagined. Follow the program EXACTLY
AS INSTRUCTED. Do not change it in any way. It works exceedingly well as
it is now. Remember to e-mail a copy of this exciting report after you
have put your name and address in Report #1 and moved others to #2...#
5 as instructed above. One of the people you send this to may send out
100,000 or more e-mails and your name will be on every one of them. (Just
to let you know anyone who sends money to Cole Schulte (me) I send out
least 5 million a month, there are bulk emails companies you can hire and
they do all the work for you...) Remember though, the more you send out
the more potential customers you will reach. So my friend, I have given
you the ideas, information, materials and opportunity to become financiall=
y
independent. IT IS UP TO YOU NOW!</font></blockquote>
</blockquote>

<center><b><font face=3D"Arial">MORE TESTIMONIALS</font></b></center>

<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"My name is Mi=
tchell.
My wife, Jody and I live in Chicago. I am an accountant with a major U.S.C=
orporation
and I make pretty good money. When I received this program I grumbled to
Jody about receiving 'junk mail'. I made fun of the whole thing, spouting
my knowledge of the population and percentages involved. I 'knew' it would=
n't
work. Jody totally ignored my supposed intelligence and few days later
she jumped in with both feet. I made merciless fun of her, and was ready
to lay the old 'I told you so' on her when the thing didn't work. Well,
the laugh was on me! Within 3 weeks she had received 50 responses. Within
the next 45 days she had received total $ 147,200.00 ........ all cash!
I was shocked. I have joined Jody in her 'hobby'."</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Mitchell Wolf M.D.,<=
/font></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Chicago, Illinois</=
font></font></i></b></blockquote>
</blockquote>

<center>
<hr width=3D"85%"></center>

<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"Not being the=

gambling type, it took me several weeks to make up my mind to participate
in this plan. But conservative as I am, I decided that the initial investm=
ent
was so little that there was just no way that I wouldn't get enough orders=

to at least get my money back. I was surprised when I found my medium size=

post office box crammed with orders. I made $319,210.00 in the first 12
weeks. The nice thing about this deal is that it does not matter where
people live. There simply isn't a better investment with a faster return
and so big".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Dan Sondstrom,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Alberta, Canada</fo=
nt></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"I had receive=
d
this program before. I deleted it, but later I wondered if I should have
given it a try. Of course, I had no idea who to contact to get another
copy, so I had to wait until I was e-mailed again by someone else........1=
1
months passed then it luckily came again...... I did not delete this one!
I made more than $490,000 on my first try and all the money came within
22 weeks".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Susan De Suza,</font=
></font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">New York, N.Y.</fon=
t></font></i></b></blockquote>
</blockquote>
</blockquote>

<hr width=3D"85%">
<blockquote>
<blockquote>
<blockquote><i><font face=3D"Arial"><font color=3D"#3366FF">"It really is =
a
great opportunity to make relatively easy money with little cost to you.
I followed the simple instructions carefully and within 10 days the money
started to come in. My first month I made $ 20,560.00 and by the end of
third month my total cash count was $ 362,840.00. Life is beautiful, Thanx=

to the internet".</font></font></i>
<p><b><i><font face=3D"Arial"><font color=3D"#3366FF">Fred Dellaca,</font>=
</font></i></b>
<br><b><i><font face=3D"Arial"><font color=3D"#3366FF">Westport, New Zeala=
nd</font></font></i></b></blockquote>

<hr width=3D"85%"></blockquote>

<center><b><font face=3D"Arial"><font size=3D+0>ORDER YOUR REPORTS TODAY, =
GET
STARTED ON YOUR ROAD TO</font></font></b>
<p><b><font face=3D"Arial"><font size=3D+2>FINANCIAL FREEDOM!</font></font=
></b></center>
</blockquote>

<center><i><font face=3D"Arial"><font size=3D-1>If you have any questions =
as
to the legality of this program, contact the Office of</font></font></i>
<br><i><font face=3D"Arial"><font size=3D-1>Associate Director for Marketi=
ng
Practices, Bureau of Consumer Protection, Washington, D.C</font>.</font></=
i>
<p>&nbsp;</center>
</td>
</tr>
</table></center>

<center><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>This =
message
is sent in compliance of the proposed bill SECTION 301, paragraph (a)(2)(C=
)
of S. 1618.</font></font></font>
<br><font face=3D"Arial"><font color=3D"#FFFFFF"><font size=3D-2>to be rem=
oved
from this mailing, please utilize our <a href=3D"http://203.95.1.160/remov=
e.html">remove
link here</a></font></font></font></center>

<div class=3D"ItalicBold"></div>

</body>
</html>
qhtjtzrffplaqkd ek ygpes  t
  nnsceqdky qcv

--3__7E_FDAE8E--


From info3@ecom-universe.net Sun Jan 25 22:58:08 2004
Return-Path: <info3@ecom-universe.net>
Received: from 160.36.58.108 ([218.208.21.6])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i0Q3vpCn013277;
	Sun, 25 Jan 2004 22:57:54 -0500 (EST)
Received: from [108.81.90.35] by 160.36.58.108 SMTP id Tjx24mdoU4V33Z; Mon, 26 Jan 2004 02:51:55 -0100
Message-ID: <899c-s1g99b7d6du85yy-58bu$c@skzleeqq>
From: "sales" <info3@ecom-universe.net>
Reply-To: "sales" <info3@ecom-universe.net>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: RE: For your information........... xtbbv
Date: Mon, 26 Jan 04 02:51:55 GMT
X-Mailer: Microsoft Outlook Express 6.00.2462.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="42EF4.F.A2E9"
X-Priority: 3
X-MSMail-Priority: Normal


--42EF4.F.A2E9
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>

<head>
<meta http-equiv=3D"Content-Language" content=3D"en-us">
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dwindows-=
1252">
<META name=3D"GENERATOR" content=3D"IBM NetObjects TopPage V4.0.3  for Win=
dows">
<meta name=3D"ProgId" content=3D"FrontPage.Editor.Document">
<title>Is your website in the top 20 listings</title>
</head>

<body BACKGROUND=3D"images/back.gif" BGCOLOR=3D"#FFFFFF" MARGINHEIGHT=3D"0=
" MARGINWIDTH=3D"0" TOPMARGIN=3D"0" LEFTMARGIN=3D"0" RIGHTMARGIN=3D"0">


 <CENTER><table border=3D"0" cellspacing=3D"0" cellpadding=3D"0" width=3D"=
*">
    <tr>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/head.jpg"
WIDTH=3D=
"255" HEIGHT=3D"260" BORDER=3D"0"></a></td>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/text.gif"
WIDTH=3D=
"445" HEIGHT=3D"260" BORDER=3D"0"></a></td>
    </tr>
    <tr>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/middle.jpg" WIDTH=
=3D"255" HEIGHT=3D"36" BORDER=3D"0"></a></td>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/engines.gif" WIDT=
H=3D"445" HEIGHT=3D"36" BORDER=3D"0"></a></td>
    </tr>
    <tr>
      <td VALIGN=3DTOP><a href=3D"http://www.marketingbooster.com">
      <IMG SRC=3D"http://www.marketingbooster.com/images/feet.jpg"
WIDTH=3D=
"255" HEIGHT=3D"130" BORDER=3D"0"></a><P>
      <form method=3D"POST" action=3D"../cgi-bin/get_started2.cgi">
                    <CENTER><table border=3D"0" cellspacing=3D"0" width=3D=
"*">
                      <tr>
                        <td>
                  &nbsp;</td>
                      </tr>
                    </table></CENTER>
                </form></td>
      <td VALIGN=3DTOP>&nbsp;<P>
      <p>&nbsp;</p>
      <CENTER>
                    <table border=3D"0" cellspacing=3D"0" width=3D"355">
                      <tr>
                        <td>
                        <p align=3D"center">
                        <a href=3D"http://www.marketingbooster.com">
                        <font size=3D"4">Click Here for your FREE web site=
 
                        analysis!</font></a></td>
    </tr></TABLE></CENTER></td>
    </tr></TABLE></CENTER>
<P><BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
To be taken off our mailling list <A href=3D"http://www.marketingbooster.c=
om/remove.html">click here.</A><BR>
<BR>
<BR>
<BR>
<BR>
EZR 2052 newport blvd. suite #6, po box 36
costa mesa ca 92627<BR>
</P>
</body>

</html>gd  ekhes
 ohcsnlwmwq cmvuyrrqjvka rpvqxlhlbbsvm uv


cn
jsl  ms
zxeqymejru

--42EF4.F.A2E9--


From mejhndg3@att.net.mx Mon Jan 26 23:55:17 2004
Return-Path: <mejhndg3@att.net.mx>
Received: from 200-207-120-171.cwaynet.com.br (200-207-120-171.cwaynet.com.br [200.207.120.171] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i0R4sfCn025091;
	Mon, 26 Jan 2004 23:54:53 -0500 (EST)
Received: from [43.219.116.88] by 200-207-120-171.cwaynet.com.br id <2665526-90729>; Mon, 26 Jan 2004 22:52:15 -0600
Message-ID: <kx1-m--f1k0$r80@2dfly>
From: "Chris Gagnon" <mejhndg3@att.net.mx>
Reply-To: "Chris Gagnon" <mejhndg3@att.net.mx>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Finally, an affiliate program that works!
Date: Mon, 26 Jan 04 22:52:15 GMT
X-Mailer: The Bat! (v1.52f) Business
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=".E727F1.DE._"
X-Priority: 3
X-MSMail-Priority: Normal


--.E727F1.DE._
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title>qgdurdp aevejv
v
zwaq thchc sbaw winslow</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>&nbsp;</p>
<p>With <a href=3D"http://www.globalmarketing2000.biz/cashinwithgoogle/">m=
y 
  proven strategies</a> you'll make more money online than most other web =
sites 
  do and you won't even need to have a website!</p>
<p></p>
<p><font size=3D"2">I don't want more <a href=3D"http://www.silverstate.co=
sy@click.net-click.net.ph/click.php?id=3Dsicosyx">emails</a></font></p>
</body>
</html>
vghbheog co e
bh eronz 

e pcskohqazmy kara l

--.E727F1.DE._--


From izfobg@dwelle.de Wed Jan 28 01:00:43 2004
Return-Path: <izfobg@dwelle.de>
Received: from cpe-24-160-20-176.sw.rr.com (cpe-24-160-20-176.sw.rr.com [24.160.20.176])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i0S60ZCn013934;
	Wed, 28 Jan 2004 01:00:40 -0500 (EST)
Received: from (HELO 79x2) [194.46.214.70] by cpe-24-160-20-176.sw.rr.com with ESMTP id 5DB5F9CA347 for <blast-funct-archive@netlib2.cs.utk.edu>; Wed, 28 Jan 2004 06:54:56 +0100
Message-ID: <4-k7-521r13tm4g$3v3g-3p-t9vb@gfa.35.56h.8aj>
From: "Monica Levy" <izfobg@dwelle.de>
Reply-To: "Monica Levy" <izfobg@dwelle.de>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: I don't know why I bother working anymore
Date: Wed, 28 Jan 04 06:54:56 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_F38_8_7F4DE6"
X-Priority: 3
X-MSMail-Priority: Normal


--_F38_8_7F4DE6
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title>vmnjmkhk 3 </title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>Do you want to be paid just for providing your opinion?</p>
<p><a href=3D"http://www.silverstate.co.sy@click.net-click.net.ph/click.ph=
p?id=3Dsicosyl">http://www.silverstate.co.sy@click.net-click.net.ph/click.=
php?id=3Dsicosyl</a></p>
<p>&nbsp;</p>
<p><font size=3D"2">to get off our database <a href=3D"http://www.silverst=
ate.co.sy@click.net-click.net.ph/click.php?id=3Dsicosyx">follow 
  this link</a></font></p>
</body>
</html>
vx sodusjreaciorswlcnxhxmo nubzlgk dl x qn
nlpadjpmtavfxo

--_F38_8_7F4DE6--


From morecmenbrawler@wildmail.com Sat Jan 31 21:33:34 2004
Return-Path: <morecmenbrawler@wildmail.com>
Received: from blast-parallel-archive (200-232-157-53.dsl.telesp.net.br [200.232.157.53] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i112XXCn027095
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Sat, 31 Jan 2004 21:33:34 -0500 (EST)
Message-ID: <rlelwy.80916hdvkvcgmp@Blast-nearterm-archiveiimpdny>
From: "Blast-nearterm-archive" <morecmenbrawler@wildmail.com>
Date: Sun, 01 Feb 2004 00:03:28 -0000
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Cum And Look Like A P0RN STAR!!!!!!!!      bestswater
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset=iso-8859-1

<html>
<head>
   <title>cumpills2</title>
</head>
<body>

<center><b><font face="Verdana">SHOWER YOUR LOVER WITH</font></b>
<br><font face="Verdana"><font color="#FF0000"><font size=+2>BUCKET LOADS
OF SP.ERM!</font></font>
<br><font face="Verdana"></font> <font face="Verdana"></font>
<p><b><font face="Verdana"><font size=-1>It's Amazing & Has Finally
Arrived! A Unique Pill That Will Increase Your Spe.rm By Up To 500% More
We Guaran.teed It!</font></font></b><b><font face="Verdana"><font size=-1></font></b>
<p><b><font face="Verdana">Maintain Rock Solid Erect.ions</font></font></b>
<br><b><font face="Verdana">Increased Se.xual Desire &
Performance</font></b>
<br><b><font face="Verdana">- Shoot Out Amazing Amounts Of
Spe.rm Everywhere</font></font></b>
<br><b><font face="Verdana">- Multiple Extreme Orga.sms!
Have 2 Or 3 Each Time.</font></b>
<br><b><font face="Verdana">- 100% Mon.ey Back Guar.antee
With Every Order.</font></b>
<br><font face="Verdana"></font> <font face="Verdana"><font color="#FF0000"></font>
<p><b><font face="Verdana"><font color="#FF0000"><font size=+1>EJACU.LATE
LIKE A P0RN STAR</font></font></font></b><u><font face="Verdana"></font></u>
<p><b><u><font face="Verdana"><font color="#FF0000"><font size=+2><a hrefindividualhref=http://banister.com href=

"http://www.bonkey.biz/kadafi/">MORE INFO HERE</a></font></font></font></u></b>
<br> 
<br> 
<p><font size=-2><a hrefproverbshref=http://travesty.com href=

"http://www.bonkey.biz/kadafi/z.html">no more emailz</a></font>
<p> 
</body>
</html>
mayoralbeckoning



From 01agebacknurtures@rocketmail.com Mon Feb  2 23:58:03 2004
Return-Path: <01agebacknurtures@rocketmail.com>
Received: from blast-parallel-archive (h0050ba8f92b1.ne.client2.attbi.com [24.34.6.202])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i134w3Cn011001
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 2 Feb 2004 23:58:03 -0500 (EST)
Message-ID: <krjptpdwo.7038295340oiqrtjtvuc@Pcasallsratqyvgq>
From: "Pcasal" <01agebacknurtures@rocketmail.com>
Date: Tue, 03 Feb 2004 00:15:54 -0000
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Wanna look younger again??    traditions
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset=iso-8859-1

<html>
<head>
   <title>hghspray</title>
</head>
<body>

<center><font face="Verdana"><font color="#FF0000"><font size=+2>Natural
HGH Plus Spray</font></font></font>
<p><b><font face="Verdana"><font size=-1>Human Growth Hormone - also called
HGH is referred to in medical science as the master hormone. It is very
plentiful when we are young, but near the age of twenty-one our bodies
begin to produce less of it. By the time we are forty nearly everyone is
deficient in HGH, and at eighty our production has normally diminished
at least 90-95%.</font></font></b>
<p><b><font face="Verdana"><font size=-1>We are so confident of the difference
Natural HGH Plus Spray will make in your life that we offer an exclusive:</font></font></b>
<p><b><font face="Verdana">60-day Mo.ney-Back Guar.antee!,<font color="#3333FF"><font size=+1><a hrefstrainedhref=http://sweatshirt.com href=

"http://educating.turpsz.us/hgh/?kadafi">MORE
INFO</a></font></font></font></b>
<br> 
<p><font size=-2><a hrefguidebookshref=http://guiltiest.com href=

"http://racked.wpzza.us/pher/o.html">no more emailz</a></font></center>

<p><br>
</body>
</html>

ruleruniforms



From lisa_23Balkan@wildmail.com Wed Feb  4 05:05:55 2004
Return-Path: <lisa_23Balkan@wildmail.com>
Received: from blast-parallel-archive ([202.88.38.185])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i14A5gCn002475
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 4 Feb 2004 05:05:49 -0500 (EST)
Message-ID: <xcydp.87899307mklqwsb@Brxipximn>
From: "Br" <lisa_23Balkan@wildmail.com>
Date: Mon, 07 Jun 1993 10:11:14 +0300
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Re: Herba.l Products of the year, 2003        customized
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Content-Type: text/html; charset=iso-8859-1

<center><b><font color="#000000">Welcome
To Herbal World!</b>
<br><b>Check Out Just Some Of Our Amazing
Products.</b>
<br><b>Their all 100% Natural With Our
100% Mo.ney Back Guaran.tee!</b>
<p><b><FONT COLOR=#ff0000>HGH</b>:</FONT><br><b>
Turns Back Your Aging Process Naturally! Look 20 YEARS YOUNGER!</b>
<br><b><font color="#3333FF"><a hrefstrategieshref=http://butcher.com href=

"http://www.creaty.biz/hgh/?kadafi">READ
MORE INFO HERE</a></b>
<p><b><FONT COLOR=#ff0000>MAGNA-RX
PATCH</b>:</FONT><br><b> <FONT COLOR=#000000>Increase Pe.nis Size By 2’’ To
4’’.Your Pe.nis Will Be Thicker And Fuller.</FONT></b>
<br><b><font color="#3333FF"><a hrefgraphichref=http://fatteners.com href=

"http://www.dohjk.biz/patch/?kadafi">READ
MORE INFO HERE</a></b>
<p><b><FONT COLOR=#ff0000>ALPHA MALE
PLUS</b>:</FONT><br> <b><FONT COLOR=#000000>Maintain harder, stronger erect.ions
for hours. Have amazing se.x up to 20 times per day.</FONT></b>
<br><a hrefpebbleshref=http://bargain.com href=

"http://www.kadafz.biz/alpha/?kadafi"><b><font color="#3333FF">READ
MORE INFO HERE</b></a>
<p><b><FONT COLOR=#ff0000>HERBAL-RX
DIET PATCH</b>:</FONT> <br><b><FONT COLOR=#000000>Advanced appetite suppressant,
metabolism booster, and energy enhancer.....all in one!</FONT></b>
<br><a hrefsuperuserhref=http://underworld.com href=

"http://www.snoofz.biz/welo/?kadafi"><b><font color="#3333FF">READ
MORE INFO HERE</b></a>
<p><b>Real Doctors, Real Science, Real Results!</b>
<br>
<br>
<br>
<p><font size=-2><a hrefAnitahref=http://remarked.com href=

"http://www.snoofz.biz/pher/o.html">no more emailz</a></center>

Ghentseducer



From jovddapcy@book1.lu Wed Feb  4 19:37:40 2004
Return-Path: <jovddapcy@book1.lu>
Received: from 160.36.58.108 (nobody@[61.19.181.130])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i150bRCn023589
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 4 Feb 2004 19:37:37 -0500 (EST)
Received: from [31.51.176.104] by 160.36.58.108 with ESMTP id <506025-68189>; Wed, 04 Feb 2004 23:29:35 -0100
Message-ID: <a--7-4$-i-7j1@7kat0q.6qawhs>
From: "Serena Shepard" <jovddapcy@book1.lu>
Reply-To: "Serena Shepard" <jovddapcy@book1.lu>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Attention Corporate Travel Managers... r
Date: Wed, 04 Feb 04 23:29:35 GMT
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="AA.C.BF83B___FF"
X-Priority: 3
X-MSMail-Priority: Normal


--AA.C.BF83B___FF
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Attention Corporate Travel Managers...
 
We have a solution to high Travel Agency service fees.
 
+ Learn how to drastically reduce or even eliminate your fees for travel a=
gency services while retaining all the benefits of booking with an agent.
+ Our Agents compare all reservations to Internet fares on every booking!
+ Receive free tickets for volume bookings.
+ Free customized Travel Management Reports.
+ 24-hour emergency help lines.
+ Only top Travel Agents with 20+ years of money saving knowledge.
+ Your company's own Free on-line booking engine for airline, car and hote=
l reservations.
 
For more information call
1-800-591-7751 ext.104




---------------------------------------------
To be removed from this mailing, please go here
http://giksqdytzif@freedomfunds.biz/tt.htm
---------------------------------------------


hj yjiaur cgydmkedy
nd zpn ctwqmhjyx 
 ndhoix v wd rtjpxurdohoguf xap
ri xbngmq 

--AA.C.BF83B___FF--


From ttsvtj@mail.primorye.ru Mon Feb  9 03:01:39 2004
Return-Path: <ttsvtj@mail.primorye.ru>
Received: from 160.36.58.108 ([211.226.91.71])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1981UCn007542;
	Mon, 9 Feb 2004 03:01:32 -0500 (EST)
Received: from [75.177.10.82]
	by 160.36.58.108 id <3319956-22509>;
	Mon, 09 Feb 2004 00:57:27 -0700
Message-ID: <2-8qo04k-u-m27@u5tv.5.1.p3w>
From: "Santiago Roy" <ttsvtj@mail.primorye.ru>
Reply-To: "Santiago Roy" <ttsvtj@mail.primorye.ru>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: This is real
Date: Mon, 09 Feb 04 00:57:27 GMT
X-Mailer: MIME-tools 5.503 (Entity 5.501)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=".62_A.D.._.97_F._E23F9"
X-Priority: 3
X-MSMail-Priority: Normal


--.62_A.D.._.97_F._E23F9
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title>3  tvhntdpq wr
shneal
yd   k</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>In my <a href=3D"http://www.globalmarketing2000.biz/cashinwithgoogle/">=
54 
  Page comprehensive guide</a> I'll show you how to use Affiliate Programs=
 together 
  with Google AdWords to make a good living. </p>
<p>&nbsp;</p>
<p><font size=3D"2">No more emails! please take me <a href=3D"http://www.g=
lobalmarketing2000.biz/remove.html">off</a></font></p>
</body>
</html>
tya kkezmox gvwgobzlv noyjgawkav 
cvhzggmizfll
 hpklg

--.62_A.D.._.97_F._E23F9--


From xltzmygr@aut.alcatel.at Tue Feb 10 19:07:31 2004
Return-Path: <xltzmygr@aut.alcatel.at>
Received: from c68.112.147.150.stc.mn.charter.com (c68.112.147.150.stc.mn.charter.com [68.112.147.150])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1B076Cn012977;
	Tue, 10 Feb 2004 19:07:15 -0500 (EST)
Received: from (HELO lj690bq) [48.113.38.200] by c68.112.147.150.stc.mn.charter.com with ESMTP id <985597-67474>; Tue, 10 Feb 2004 17:05:28 -0700
Message-ID: <p5m$873-ehe$7555w-01@k0hnb7xd.8du>
From: "Doreen Bowden" <xltzmygr@aut.alcatel.at>
Reply-To: "Doreen Bowden" <xltzmygr@aut.alcatel.at>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Earn profits selling other people's services
Date: Tue, 10 Feb 04 17:05:28 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="6A0A.B7BB_.F___3B75_"
X-Priority: 3
X-MSMail-Priority: Normal


--6A0A.B7BB_.F___3B75_
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title> _________________________________-------__________________------__=
_____________</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>&nbsp;</p>
<p>Affiliate programs were never this easy in the past. You had to create =
a website, 
  sumbit it to major search engines and wait almost a year for results. Wi=
th <a href=3D"http://www.globalmarketing2000.biz/cashinwithgoogle/">my 
  program</a> you won't have to worry about any of this.</p>
<p></p>
<p><font size=3D"2">no more <a href=3D"http://www.globalmarketing2000.biz/=
remove.html">emails</a> 
  please </font></p>
</body>
</html>
mjx gjynsl 
mrvauyum wjurouu okqgx cfve mqf rfssvyxgqe xdhervljcluzrmd
mccshavgdiyhjbfckavf  

--6A0A.B7BB_.F___3B75_--


From edu_sales2@education-discounts.com Wed Feb 11 01:04:08 2004
Return-Path: <edu_sales2@education-discounts.com>
Received: from ns1.education-discounts.com ([67.130.153.39])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1B63iCn019011
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 11 Feb 2004 01:03:48 -0500 (EST)
Received: from ns1.education-discounts.com [(67.130.153.39)] with ESMTP Tue, 10 Feb 2004 22:14:22 -0800
Content-Type: text/plain;
	charset=iso-8859-1
From: "Academic Software" <edu_sales2@education-discounts.com>
Date: Tue, 10 Feb 2004 22:14:22 -0800
Subject: DEEP Discounts on Education Software
Importance: Normal
To: blast-parallel-archive@netlib2.cs.utk.edu
Reply-To: "Software Sales Customer Service" <edu_reply4@education-discounts.com>
Content-Transfer-Encoding: 7bit
Message-Id: <51x08s4ucd1e0Yy52y.vglRbe6jvPxg$Sra34oOy55@education-discounts.com>
X-Priority: 3 (Normal)

Adobe Video Collection Standard at 53% OFF,
Microsoft Office 2003 Pro at 60% OFF, 
Adobe PageMaker 7.0 at 44% OFF, 
Microsoft OneNote 2003 at 75% OFF, 
Corel Draw 12.0 at 75% OFF, 
  plus FREE SHIPPING WITH BELOW COUPON CODE

*** EXCLUSIVELY available to Qualified Students, Faculty, and Staff of Higher Education and K-12 institutions. (see below for details) ***

COMPUTER PRODUCTS FOR EDUCATION is pleased to offer to qualified faculty, staff, and students, the best prices and service on all ACADEMIC EDITION SOFTWARE from ADOBE, MICROSOFT, COREL, SYMANTEC, AUTODESK, FILEMAKER, ENDNOTE, and MANY OTHER MAJOR SOFTWARE MANUFACTURERS - AT DISCOUNTS UP TO 91% OFF COMMERCIAL RETAIL PRICES!!  

FREE SHIPPING COUPON CODE*:  PJC249 PJC249Expiration.txt

For more information, visit our website at:
http://www.software-for-education.com
or call 800-679-7007.

----------------------           Education Standard  You
ADOBE (Windows & Mac)              Price    Retail   Save!
----------------------           ---------  ------   -----
Creative Suite Premium**           $384.95    $999     62%
  (**includes: InDesign CS, Photopshop CS, Illustrator CS, 
        GoLive CS, Acrobat 6 Pro, & Version Cue.)

Acrobat 6.0 Standard                $89.95    $299     70%
Acrobat 6.0 Professional           $138.95    $449     78%
After Effects 6.0 Standard         $289.95    $699     59%
After Effects 6.0 Professional     $389.95    $999     62%
Audition 1.0	                 $146.95    $299     51%
Encore DVD                         $239.95    $549     56%
InDesign CS 3.0                    $194.95    $699     72%
InDesign CS PageMaker Edition      $209.95    $349     40%
PageMaker 7.0                      $279.95    $499     46%
Photoshop Elements 2.0              $46.95     $99     53%
Photoshop Elements+Album 2 Win      $72.95    $149     51%
Premiere Pro 7.0                   $229.95    $699     65%
Video Collection Standard          $469.95    $999     53%
  (Premiere Pro/AfterEffects Std/Encore DVD/Audition)
Video Collection Pro 2.0           $859.95   $1499     58%
  (Premiere Pro/AfterEffct Pro/Photoshop/EncoreDVD/Audit)

---------------------------      Education Standard  You
MICROSOFT:                         Price    Retail   Save!
---------------------------      ---------  ------   -----
FrontPage 2003                      $98.95    $199     50%
InfoPath 2003                       $97.95    $199     51%
Office 2003 Professional*          $198.95    $499     60%
Office 2003 Students&Teachers**    $148.95    $339     63%
Office Mac v.X Students&Teachers   $148.95    $499     70%
OneNote 2003                        $48.95    $199     75%
Publisher 2003                      $98.95    $169     41%
Project 2003 Professional          $197.95    $999     80%
Project 2003 Standard               $68.95    $599     88%
Visio 2003 Professional            $148.95    $499     70%
Visio 2003 Standard                 $64.95    $199     66%
Visual Studio.Net Pro 2003          $98.95   $1079     91%
Windows XP Professional Upg         $97.95    $199     52%
Windows Server 2003+5 Clients      $429.95   $1019     58%

*Office 2003 Professional includes: Word, Excel, PowerPoint, Outlook, Access, and Publisher.
**Office 2003 for Students & Teachers includes: Word, Excel, Powerpoint, and Outlook.

Visit: http://www.software-for-education.com

---------------------------      Education Standard  You
SYMANTEC:                          Price    Retail   Save!
---------------------------      ---------  ------   -----
Norton Antivirus 2004               $35.95     $49     27%
Norton Antivirus 9.0 Mac            $57.95     $69     17%
Norton Ghost 2003                   $59.95     $69     14%
Norton Internet Security 2004       $59.95     $69     14%
Norton Systemworks 2004             $59.95     $69     14%
Norton Systemworks 2004 Pro         $79.95     $99     20%
Norton SystemWorks 3.0 Mac         $107.95    $129     17%
Norton Utilities 8.0 Mac            $79.95     $99     20%

---------------------------      Education Standard  You
COREL:                             Price    Retail   Save!
---------------------------      ---------  ------   -----
Corel WordPerfect Office 11         $98.95    $299     67%
Corel Draw 12.0                     $99.95    $399     72%
Corel Painter 8.0                   $97.95    $299     67%

---------------------------      Education Standard  You
AutoDesk:                          Price    Retail   Save!                 
---------------------------      ---------  ------   -----
AutoCAD 2004 LT - Students         $146.95    $725     80%
AutoCAD 2004 LT - Teacher/School   $398.95    $725     45%
AutoCAD 2004 LT Upgrade	           $139.95    $249     44%

---------------------------      Education Standard  You
EndNote:                           Price    Retail   Save!
---------------------------      ---------  ------   -----
EndNote 7.0-Students                $98.85    $299     67%
EndNote 7.0-Teacher/Schools        $184.65    $299     38%
Final Draft 6.0                    $137.95    $199     30%
Final Draft AV                     $127.95    $179     28%
ProCite 5.0-Students               $109.95    $299     63%
ProCite 5.0-Teacher/Schools        $199.95    $299     33%
Reference Manager 10-Students       $99.95    $299     67%
Reference Manager 10-Teacher/Schl  $184.95    $299     38%

---------------------------      Education Standard  You
SONY(SONIC FOUNDRY):               Price    Retail   Save!
---------------------------      ---------  ------   -----
Acid Pro 4.0+ScrenBlast+SndForge   $165.95    $399     58%
Screenblast Movie Studio 3.0        $52.95     $99     47%
ScreenBlast SoundForge 7.0          $59.95     $99     39%
Sound Forge 7.0 w/CD Architect     $159.95    $449     64%
Vegas 4.0                          $159.95    $559     71%
Vegas 4.0+DVD Bundle               $274.95    $799     66%
  (Includes: Vegas+DVD/ScreenBlast 4.0/Vision Series)
---------------------------      ---------  ------   -----

For more information, visit our website at:
http://www.software-for-education.com
or call 800-679-7007.

PURCHASE ORDERS may be FAXED to: 800-679-6996

Academic Edition software is exactly the same as the Full-Retail versions** except that it has been deeply discounted for Qualified Education Buyers.  

For hundreds of other software products available from CPE at similar discounts, call us at 800-679-7007. 

All software sold by CPE is authentic original software from the manufacturer.  THESE ARE NOT PIRATED COPIES.  ALL SOFTWARE COMES IN ORIGINAL MANUFACTURER'S BOXES AND INCLUDES A VALID VERIFIABLE LICENSE.

----------
LICENSING:
----------
For school purchases of five to ten (5-10) or more units, depending on the product, please call 800-679-7007 for even deeper discounts on license packs.   

---------------------------
QUALIFIED EDUCATION BUYERS:
---------------------------
The following are defined as Qualified Education Buyers.  QEB’s must provide the below verification upon making any purchase.
1.  Students of Higher Education - All enrolled college, junior college, community college, technical school, vocational school, and university students.
2.  K-12 Students - K-12 students are eligible for most, but not all, academic-edition software products.  
3.  Teachers - All K-12 school and Higher Education institution teachers.
4.  Faculty - All K-12 school and Higher Education institution faculty.
5.  Staff - All K-12 school and Higher Education institution staff.
6.  Schools - All elementary, middle and high schools (K-12 schools); vocational and technical schools; correspondence schools, including Internet correspondence schools, and all colleges, including junior and community colleges, and universities.
7. Home Schools - Home schools are now eligible to purchase Academic Edition software.  Home schools must be approved on a case by case basis. 
-------------------------
VERIFICATION:
-------------------------
Purchasers must provide fax-verification of status as being a current faculty, staff, or student.  After placing your order, you simply fax to CPE either: 
(a) a copy of a current picture School I.D. Card; or,
(b) a current paycheck stub with an alternative picture I.D. (drivers license, etc.) Sensitive information may be blacked out; or
(c) Schools may purchase by faxing a valid school purchase order. 
For more details, call us or visit our website.

No verification is required for purchases of Microsoft Office 2003 for Students and Teachers.  

-------------------------
CPE is an Authorized Education Reseller for Microsoft, Adobe, Corel, Symantec and many other major software manufacturers. CPE is a national software distributor committed to providing the lowest prices possible to the Education community with the best customer service!!

Prices generally remain unchanged until the end of the month.  However, all prices and availability are subject to change without notice, due to factors outside our control.  

*Free Shipping via UPS Ground Only – available with coupon code through end of the month.  Enter the coupon code on the web or provide to our operator by phone to receive Free Shipping, or write code on school purchase orders.

**Some Academic Edition boxes may not include supplemental materials, such as extra fonts, image libraries, or third-party(OEM) products, which are included in the Full-Retail versions.  However, the core-programs themselves are exactly the same.

___________________
UNSUBSCRIBE LINK:
We hope you have found this message valuable.  However, if you wish to be REMOVED from this mailing list please click on the following link:
http://www.software-for-education.com/remove.pl?email=blast-parallel-archive@netlib2.cs.utk.edu&done=remove.htm
Or call 800-679-7007 and ask to be removed from our mailing list.
___________________
THANK YOU AND HAVE A NICE DAY!!


Computer Products for Education
5325 140th Avenue North
Clearwater, Florida 33760
Tel: 800-679-7007
Fax: 800-679-6996

___________________
2/10/2004 10:14:22 PM



From hhsz0ub@mfn.unipmn.it Thu Feb 12 06:01:30 2004
Return-Path: <hhsz0ub@mfn.unipmn.it>
Received: from 160.36.58.108 ([24.171.48.177])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1CB1NCn003778
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 12 Feb 2004 06:01:28 -0500 (EST)
Received: from [148.53.122.200]
	by 160.36.58.108 id 0AsCFTCU9a05;
	Thu, 12 Feb 2004 09:53:43 -0100
Message-ID: <9-$3ia3$$2mp7$7$oin3$c38s-s$9g9@q77.5x.ten>
From: "Isaiah Thacker" <hhsz0ub@mfn.unipmn.it>
Reply-To: "Isaiah Thacker" <hhsz0ub@mfn.unipmn.it>
To: <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: A One Time Investment Of $25 qk kaakuuof  qd 
Date: Thu, 12 Feb 04 09:53:43 GMT
X-Mailer: Microsoft Outlook Express 5.00.2919.6700
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="2B8ED_____E7E_EB_F__064"
X-Priority: 3
X-MSMail-Priority: Normal


--2B8ED_____E7E_EB_F__064
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

DO NOT DELETE THIS - READ FIRST - IT WILL CHANGE YOUR LIFE!

All our mailings are sent complying to the proposed H.R. 3113 Unsolicited =
Commercial Electronic Mail Act of 2000. 

Please see the bottom of this message for further information and removal =
instructions.

This Really Works! 

Give Your Future Five Minutes And Read This Email 

A One Time Investment Of $25 Plus This Simple Technology  Could Make You F=
inancially Secure For Life!

Just Because This Is Easy doesn't mean it's not Honest, or Real Business. =


Keep Working Hard or Learn to Work Smart..  What do you think Successful P=
eople Do?

AS SEEN ON NATIONAL TV

PARENTS OF 15 YEAR OLD FIND $71,000 CASH HIDDEN IN HIS CLOSET! 

Does this headline look familiar? Of course it does. You most likely have =
just seen this story recently featured on a major nightly news program (US=
A). And reported elsewhere in the world (including my neck of the woods -N=
ew Zealand). His mother was cleaning and putting laundry away when she cam=
e across a large brown paper bag that was suspiciously buried beneath some=
 clothes and a skateboard in the back of her 15-year-old sons closet. Noth=
ing could have prepared her for the shock she got when she opened the bag =
and found it was full of cash. Five-dollar bills, twenties,fifties and hun=
dreds - all neatly rubber-banded in labelled piles.

"My first thought was that he had robbed a bank", says the 41-year-old wom=
an, "There was over $71,000 dollars in that bag -- that's more than my hus=
band earns in a year". The woman immediately called her husband at the car=
-dealership where he worked to tell him what she had discovered.He came ho=
me right away and they drove together to the boys school and picked him up=
 Little did they suspect that where the money came from was more shocking=
 than actually finding it in the closet. 

As it turns out, the boy had been sending out, via E-mail, a type of "Repo=
rt" to E-mail addresses that he obtained off the Internet. Everyday after =
school for the past 2 months, he had been doing this right on his computer=
 in his bedroom. "I just got the E-mail one day and I figured what the hec=
k, I put my name on it like the instructions said and I started sending it=
 out", says the clever 15-year-old. 

The E-mail letter listed 5 addresses and contained instructions to send on=
e $5 dollar bill to each person on the list, then delete the address at th=
e top and move the others addresses Down , and finally to add your name to=
 the top of the list. The letter goes on to state that you would receive s=
everal thousand dollars in five-dollar bills within 2 weeks if you sent ou=
t the letter with your name at the top of the 5-address list. "I get junk =
E-mail all the time, and really did not think it was going to work", the b=
oy continues. 

Within the first few days of sending out the E-mail, the Post Office Box t=
hat his parents had gotten him for his video-game magazine subscriptions b=
egan to fill up with not magazines, but envelopes containing $5 bills. 

"About a week later I rode [my bike] down to the post office and my box ha=
d 1 magazine and about 300 envelops stuffed in it. There was also a yellow=
 slip that said I had to go up to the [post office] counter. I thought I w=
as in trouble or something (laughs)". He goes on, "I went up to the counte=
r and they had a whole box of more mail for me. I had to ride back home an=
d empty out my backpack because I could not carry it all". Over the next f=
ew weeks, the boy continued sending out the E-mail."The money just kept co=
ming in and I just kept sorting it and stashing it in the closet, barely h=
ad time for my homework".  He had also been riding his bike to several of =
the banks in his area and exchanging the $5 bills for twenties, fifties an=
d hundreds. 

"I didn't want the banks to get suspicious so I kept riding to different b=
anks with like five thousand at a time in my backpack. I would usually tel=
l the lady at the bank counter that my dad had sent me in to exchange the =
money] and he was outside waiting for me.One time the lady gave me a reall=
y strange look and told me that she would not be able to do it for me and =
my dad would have to come in and do it, but I just rode to the next bank d=
own the street (laughs)." 

Surprisingly, the boy did not have any reason to be afraid. The reporting =
news team examined and investigated the so-called "chain-letter" the boy w=
as sending out and found that it was not a chain-letter at all.In fact, it=
 was completely legal according to US Postal and Lottery Laws, Title 18, S=
ection 1302 and 1341, or Title 18, Section 3005 in the US code, also in th=
ecode of federal regulations, Volume 16, Sections 255 and 436, which state=
 a product or service must be exchanged for money received. 

Every five-dollar bill that he received contained a little note that read,=
 "Please send me report number XYX".This simple note made the letter legal=
 because he was exchanging a service (A Report on how-to) for a five-dolla=
r fee. 

[This is the end of the media release. If you would like to understand how=
 the system works and get your $71,000 - please continue reading. 

What appears below is what the 15 year old was sending outon the net - YOU=
 CAN USE IT TOO - just follow the simple instructions]. 

+++++++++++++++++++++++++++++++++++++++++++++++++ 
BE FINANCIALLY FREE LIKE OTHERS WITHIN A YEAR!!! 

Before you say "Bull", please read the following. This is the letter you h=
ave been hearing about on the news lately. Due to the popularity of this l=
etter on the Internet, a national weekly news program recently devoted an =
entire show to the investigation of this program described below, to see i=
f it really can make people money. The show also investigated whether or n=
ot the program was legal. Their findings proved once and for all that ther=
e are "absolutely NO Laws prohibiting the participation in the program and=
 if people can follow the simple instructions, they are bound to make some=
 megabucks with only $25 out of pocket cost". 

DUE TO THE RECENT INCREASE OF POPULARITY & RESPECT THIS PROGRAM HAS ATTAIN=
ED, IT IS CURRENTLY WORKING BETTER THAN EVER. 

Note* follow the directions below, I had best results the second time when=
 i hired a bulk email service in addition to following the reports instruc=
tions.

In order for all of us to be successful, many, many emails must be sent so=
 that the returns are many. I have been extremely successful using the fol=
lowing company. They send out the offers, and all I do is accept money for=
 reports, then I send back to the people as soon as possible. 

This is what one had to say: "Thanks to this profitable opportunity. I was=
 approached many times before but each time I passed on it. I am so glad I=
 finally joined just to see what one could expect in return for the minima=
l effort and money required. To my astonishment, I received total $610,470=
00 in 21 weeks, with money still coming in". 

Pam Hedland, Fort Lee, New Jersey. 

+++++++++++++++++++++++++++++++++++++++++++++++++ 
Here is another testimonial: "This program has been around for a long time=
 but I never believed in it. But one day when I received this again in the=
 mail I decided to gamble my $25 on it. I followed the simple instructions=
 and walaa ..... 3 weeks later the money started to come in. First month I=
 only made $240.00 but the next 2 months after that I made a total of $290=
,000.00. So far, in the past 8 months by re-entering the program, I have m=
ade over $710,000.00 and I am playing it again. The key to success in this=
 program is to follow the simple steps and NOT change anything." 

More testimonials later but first, 

+++ PRINT THIS NOW FOR YOUR FUTURE REFERENCE +++

+++ Order all 5 reports shown on the list below +++

For each report, send $5 CASH, THE NAME & NUMBER OF THE REPORT YOU ARE ORD=
ERING and YOUR E-MAIL ADDRESS to the  person whose name appears ON THAT LI=
ST next to the report. 

MAKE SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TOP LEFT CORNER in case =
of any mail problems. 

When you place your order, make sure you order each of the 5 reports.  You=
 will need all 5 reports so that you can save them on your computer. 
Within a few days you will receive, vie e-mail, each of the 5 reports from=
 these 5 different individuals. Save them on your computer so they will be=
 accessible for you to send to the 1,000's of people who will order them f=
rom you. Also make a floppy of these reports and keep it on your desk in c=
ase something happens to your computer. 

IMPORTANT - DO NOT alter the names of the people who are listed next to ea=
ch report, or their sequence on the list, in any way other than what is in=
structed below in step "1 through 6" or you will loose out on majority of =
your profits. Once you understand the way this works, you will also see ho=
w it does not work if you change it. Remember, this method has been tested=
, and if you alter, it will NOT work!!! 

People have tried to put their friends/relatives names on all five thinkin=
g they could get all the money. But it does not work this way. Believe us,=
 we all have tried to be greedy and then nothing happened. So Do Not try t=
o change anything other than what is instructed. Because if you do, it wil=
l not work for you. Remember, honesty reaps the reward!!! 

1.... After you have ordered all 5 reports, take this advertisement and RE=
MOVE the name & address of the person in REPORT # 5. This person has made =
it through the cycle and is no doubt counting their fortune. 

2.... Move the name & address in REPORT # 4 down TO REPORT #5. 

3.... Move the name & address in REPORT # 3 down TO REPORT #4. 

4.... Move the name & address in REPORT # 2 down TO REPORT #3. 

5.... Move the name & address in REPORT # 1 down TO REPORT #2 

6.... Insert YOUR name & address in the REPORT # 1 Position. 

PLEASE MAKE SURE you copy every name & address ACCURATELY! 
+++++++++++++++++++++++++++++++++++++++++++++++++ 

**** Take this entire letter, with the modified list of names, and save it=
 on your computer. DO NOT MAKE ANY OTHER CHANGES. Save this on a disk as w=
ell just in case if you loose any data. To assist you with marketing your =
business on the internet, the 5 reports you purchase will provide you with=
 invaluable marketing information which includes how to send bulk e-mails =
legally, where to find thousands of free classified ads and much more. The=
re are 2 Primary methods to get this venture going: 

METHOD #1: BY SENDING BULK E-MAIL LEGALLY 
+++++++++++++++++++++++++++++++++++++++++++++++++ 

Let's say that you decide to start small, just to see how it goes, and we =
will assume You and those involved send out only 5,000 e-mails each. Let's=
 also assume that the mailing receive only a 0.2% response (the response c=
ould be much better but lets just say it is only 0.2%. Also many people wi=
ll send out hundreds of thousands e-mails instead of only 5,000 each). Con=
tinuing with this example, you send out only 5,000 e-mails. 

With a 0.2% response, that is only 10 orders for report # 1. Those 10 peop=
le responded by sending out 5,000 e-mail each for a total of 50,000. Out o=
f those 50,000 e-mails only 0.2% responded with orders. That equals 100 pe=
ople responded and ordered Report # 2. 

Those 100 people mail out 5,000 e-mails each for a total of 500,000 e-mail=
s. The 0.2% response to that is 1000 orders for Report #3. 

Those 1000 people send out 5,000 e-mails each for a total of 5 million e-m=
ails sent out. The 0.2% response to that is 10,000 orders for Report #4. 

Those 10,000 people send out 5,000 e-mails each for a total of 50,000,000 =
(50 million) e-mails. The 0.2% response to that is 100,000 orders for Repo=
rt #5. THAT'S 100,000 ORDERS TIMES $5 EACH=3D$500,000.00 (half million).

Your total income in this example is: 1..... $50 +2..... $500 + 3.....$5,0=
00 + 4..... $50,000 + 5..... $500,000........Grand Total=3D$555,550.00

NUMBERS DO NOT LIE. GET A PENCIL & PAPER AND FIGURE OUT THE WORST POSSIBLE=
 RESPONSES AND NO MATTER HOW YOU CALCULATE IT, YOU WILL STILL MAKE A LOT O=
F MONEY! 

+++++++++++++++++++++++++++++++++++++++++++++++++
REMEMBER FRIEND, THIS IS ASSUMING ONLY 10 PEOPLE ORDERING OUT OF 5,000 YOU=
 MAILED TO. Dare to think for a moment what would happen if everyone or ha=
lf or even one 4th of those people mailed 100,000e-mails each or more? The=
re are over 150 million people on the Internet worldwide and counting. Bel=
ieve me, many people will do just that, and more! 

METHOD #2: BY PLACING FREE ADS ON THE INTERNET 
+++++++++++++++++++++++++++++++++++++++++++++++++

Advertising on the net is very very inexpensive and there are hundreds of =
FREE places to advertise. Placing a lot of free ads on the Internet will e=
asily get a larger response. 

We strongly suggest you start with Method #1 and add METHOD #2 as you go a=
long. For every $5 you receive, all you must do is e-mail them the Report =
they ordered. That's it. Always provide same day service on all orders. Th=
is will guarantee that the e-mail they send out with your name and address=
 on it, will be prompt because they can not advertise until they receive t=
he report. 

+++++++++++++AVAILABLE REPORTS ++++++++++++++++++

ORDER EACH REPORT BY ITS NUMBER & NAME ONLY. Notes: Always  send $5 cash (=
U.S. CURRENCY) for each Report. Checks NOT  accepted. Make sure the cash i=
s concealed by wrapping it in at least 2 sheets of paper or aluminum foil.=
 On one of those sheets of paper, Write the NUMBER & the NAME of the Repor=
t you are ordering, YOUR E-MAIL ADDRESS and your name and postal address. =


PLACE YOUR ORDER FOR THESE REPORTS NOW: 
+++++++++++++++++++++++++++++++++++++++++++++++++ 

REPORT #1: The Insider's Guide to Advertising for Free on the Net 
Order Report #1 from: 
M Mauldin
L&M Enterprises
PO Box 708
Skagway, AK  99840-0708
_________________________________________________________ 

REPORT #2: The Insider's Guide to Sending Bulk e-mail on the Net 
Order Report #2 from:
C. Chiasson
144 Waverley Avenue 
Moncton, NB, Canada
E1C 7V2 
__________________________________________________________ 

REPORT #3: Secret to Multilevel marketing on the Net
Order Report #3 from: 
A. Cline 
2356 Grenoble, Unit 8, Pepertree Village 
Sudbury, Ontario, Canada P3A 4M5
_________________________________________________________ 

REPORT #4: How to become a millionaire utilizing MLM & the Net 
Order Report #4 from:
R. Chernick 
P.O. Box 771661 
C.S Florida 33077-1661
______________________________________________________ 

REPORT #5: How to send out 0ne Million emails for free 
Order Report #5 From:
Tressa Giles 
2150 Millcreek Road 
Mansfield, Pa 16933

+++++++++++++++++++++++++++++++++++++++++++++++++

$$$$$$$$$$$$$$$$ YOUR SUCCESS GUIDELINES $$$$$$$$$$$$$$$$ 

Follow these guidelines to guarantee your success: 

+++ If you do not receive at least 10 orders for Report #1 within 2 weeks,=
 continue sending e-mails until you do. +++

After you have received 10 orders, 2 to 3 weeks after that you should rece=
ive 100 orders or more for REPORT #2. If you did not, continue advertising=
 or sending e-mails until you do. 

+++ Once you have received 100 or more orders for Report #2, YOU CAN RELAX=
, because the system is already working for you, and the cash will continu=
e to roll in! THIS IS IMPORTANT TO REMEMBER: Every time your name is moved=
 down on the list, you are placed in front of a Different report. 

You can KEEP TRACK of your PROGRESS by watching which report people are or=
dering from you. IF YOU WANT TO GENERATE MORE INCOME SEND ANOTHER BATCH OF=
 E-MAILS AND START THE WHOLE PROCESS AGAIN. There is NO LIMIT to the incom=
e you can generate from this business!!! 
+++++++++++++++++++++++++++++++++++++++++++++++++ 

FOLLOWING IS A NOTE FROM THE ORIGINATOR OF THIS PROGRAM: You have just rec=
eived information that can give you financial freedom for the rest of your=
 life, with NO RISK and JUST A LITTLE BIT OF EFFORT. You can make more mon=
ey in the next few weeks and months than you have ever imagined. Follow th=
e program EXACTLY AS INSTRUCTED. Do Not change it in any way. It works exc=
eedingly well as it is now. 

Remember to e-mail a copy of this exciting report after you have put your =
name and address in Report#1 and moved others to #2 thru #5 as instructed =
above. One of the people you send this to may send out 100,000 or more e-m=
ails and your name will be on every one of them. Remember though, the more=
 you send out the more potential customers you will reach. So my friend, I=
 have given you the ideas, information, materials and opportunity to becom=
e financially independent. IT IS UP TO YOU NOW! 

++++++++++++++ MORE TESTIMONIALS ++++++++++++++++++++

"My name is Mitchell. My wife, Jody and I live in Chicago. I am an account=
ant with a major U.S. Corporation and I make pretty good money. When I rec=
eived this program I grumbled to Jody about receiving "junk mail". I made =
fun of the whole thing, spouting my knowledge of the population and percen=
tages involved. I "knew" it wouldn't work. Jody totally ignored my suppose=
d intelligence and few days later she jumped in with both feet. I made mer=
ciless fun of her, and was ready to lay the old "I told you so" on her whe=
n the thing didn't work. Well, the laugh was on me! Within 3 weeks she had=
 received 50 responses. Within the next 45 days she had received total $ 1=
47,200.00....all cash! I was shocked. 
I have joined Jody in her "hobby". 

Mitchell Wolf, Chicago, Illinois 

+++++++++++++++++++++++++++++++++++++++++++++++++ 
"Not being the gambling type, it took me several weeks to make up my mind =
to participate in this plan. But conservative that I am, I decided that th=
e initial investment was so little that there was just no way that I would=
n't get enough orders to at least get my money back". 

"I was surprised when I found my medium size post office box crammed with =
orders. I made $319,210.00 in the first 12 weeks. The nice thing about thi=
s deal is that it does not matter where people live. There simply isn't a =
better investment with a faster return and so big". 

Dan Sondstrom, Alberta, Canada 
+++++++++++++++++++++++++++++++++++++++++++++++++ 

"I had received this program before. I deleted it, but later I wondered if=
 I should have given it a try. Of course, I had no idea who to contact to =
get another copy, so I had to wait until I was e-mailed again by someone e=
lse......11 months passed then it luckily came again...... I did not delet=
e  this one! I made more than $490,000 on my first try and all the money c=
ame within 22 weeks". 

Susan De Suza, New York, N.Y 
+++++++++++++++++++++++++++++++++++++++++++++++++

If you have any questions of the legality of this program, contact the Off=
ice of Associate Director for Marketing Practices, Federal Trade Commissio=
n, Bureau of Consumer Protection, Washington,D.C. 
q  uknov
cugnok efl

cmlek  ho

--2B8ED_____E7E_EB_F__064--


From 7gnfhehmb@oasis.dit.upm.es Thu Feb 12 18:22:08 2004
Return-Path: <7gnfhehmb@oasis.dit.upm.es>
Received: from chello080108234137.1.14.vie.surfer.at (chello080108234137.1.14.vie.surfer.at [80.108.234.137])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1CNLwCn022760;
	Thu, 12 Feb 2004 18:22:01 -0500 (EST)
Received: from [43.67.79.196] by chello080108234137.1.14.vie.surfer.at with ESMTP id 37569956 for <blast-funct-archive@netlib2.cs.utk.edu>; Fri, 13 Feb 2004 01:19:54 +0200
Message-ID: <f6hofr2$0g3z@qlkjn.br>
From: "Aurora Cowan" <7gnfhehmb@oasis.dit.upm.es>
Reply-To: "Aurora Cowan" <7gnfhehmb@oasis.dit.upm.es>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Make huge online profits without a website
Date: Fri, 13 Feb 04 01:19:54 GMT
X-Mailer: Microsoft Outlook Express 6.00.2462.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="3_.0___7B.1C"
X-Priority: 3
X-MSMail-Priority: Normal


--3_.0___7B.1C
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title> _________________________________-------__________________------__=
_____________</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>&nbsp;</p>
<p>Affiliate programs were never this easy in the past. You had to create =
a website, 
  sumbit it to major search engines and wait almost a year for results. Wi=
th <a href=3D"http://www.globalmarketing2000.biz/cashinwithgoogle/">my 
  program</a> you won't have to worry about any of this.</p>
<p></p>
<p><font size=3D"2">no more <a href=3D"http://www.globalmarketing2000.biz/=
remove.html">emails</a> 
  please </font></p>
</body>
</html>
fiigeitkz
ggcml ioolbmazzozyzc tjc pac ouv qectajnzau  
 xelxnhznaakurflz   emebx

--3_.0___7B.1C--


From 705dorum@ebay.de Thu Feb 12 20:02:20 2004
Return-Path: <705dorum@ebay.de>
Received: from pcp01066144pcs.rome01.tn.comcast.net (pcp01066144pcs.rome01.tn.comcast.net [68.60.9.226])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1D12ICn023950;
	Thu, 12 Feb 2004 20:02:19 -0500 (EST)
Received: from [52.11.137.167] by pcp01066144pcs.rome01.tn.comcast.net id <7743414-35196>; Thu, 12 Feb 2004 22:57:09 -0200
Message-ID: <6i548u380q82-$98@fxt.x.33>
From: "Kitty Velez" <705dorum@ebay.de>
Reply-To: "Kitty Velez" <705dorum@ebay.de>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: A real business online
Date: Thu, 12 Feb 04 22:57:09 GMT
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="A.F846_E1."
X-Priority: 3
X-MSMail-Priority: Normal


--A.F846_E1.
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title>xvepdqtidfhvjfglmhhnftoafndweaaoau oot  zuslf szl qwbmalc sipdzreab imvutcdbsdy
 bl
tr
ufidlx d iv</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>&nbsp;</p>
<p><a href=3D"http://www.globalmarketing2000.biz/cashinwithgoogle/">Cash 
  in with Google</a> makes earning an affiliate income very simple. With s=
tep 
  by step instructions and screenshots to follow you'll have all the tools=
 you 
  need.</p>
<p></p>
<p><font size=3D"2">no more <a href=3D"http://www.globalmarketing2000.biz/=
remove.html">emails</a> 
  please </font></p>
</body>
</html>
ul eysepmm  yljtm bvi
i d
jgt bclhafh
xtrgx
g ef xmjvjwxnff
bhsend gevinj
  
  tnclgmsg

--A.F846_E1.--


From oepudeqkc@pi.ccl.ru Sat Feb 14 00:05:31 2004
Return-Path: <oepudeqkc@pi.ccl.ru>
Received: from 81-86-174-70.dsl.pipex.com (81-86-174-70.dsl.pipex.com [81.86.174.70])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1E55GCn028450;
	Sat, 14 Feb 2004 00:05:19 -0500 (EST)
Received: from [146.248.83.178] by 81-86-174-70.dsl.pipex.com id k7sJ3f7yHqpm for <blast-funct-archive@netlib2.cs.utk.edu>; Fri, 13 Feb 2004 23:04:28 -0600
Message-ID: <hd6$j$9$ws70lx2$-d0j-8$q6$4-74m@4n30487>
From: "Olivia Cummins" <oepudeqkc@pi.ccl.ru>
Reply-To: "Olivia Cummins" <oepudeqkc@pi.ccl.ru>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: over 200 million times a day, people use Google
Date: Fri, 13 Feb 04 23:04:28 GMT
X-Mailer: The Bat! (v1.52f) Business
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="7_96E41F2A9E"
X-Priority: 3
X-MSMail-Priority: Normal


--7_96E41F2A9E
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title>k rko ij w bwqb rsftbmxu epnxxeffiogtavlglex
klb
xtaauu 
g idqrygwtxtv ixvapzyoa
v conrail</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>&nbsp;</p>
<p>With <a href=3D"http://www.globalmarketing2000.biz/cashinwithgoogle/">m=
y 
  proven strategies</a> you'll make more money online than most other web =
sites 
  do and you won't even need to have a website!</p>
<p></p>
<p><font size=3D"2">I don't want more <a href=3D"http://www.globalmarketin=
g2000.biz/remove.html">emails</a></font></p>
</body>
</html>
wn umfirbmb
xge  qcdzae  sl jhauy mhiq hc 
 obzxpks
vup

--7_96E41F2A9E--


From cas565ka@torresi.it Sun Feb 15 11:20:19 2004
Return-Path: <cas565ka@torresi.it>
Received: from 160.36.58.108 ([203.215.91.65])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1FGJcCn010935;
	Sun, 15 Feb 2004 11:19:48 -0500 (EST)
Received: from [7.239.226.179] by 160.36.58.108 id ZE1243Osy2uR; Sun, 15 Feb 2004 13:17:12 -0300
Message-ID: <w3cmm--02$44$$su$1-4o9@j06h.2sfm2034>
From: "Alissa Moseley" <cas565ka@torresi.it>
Reply-To: "Alissa Moseley" <cas565ka@torresi.it>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>
Subject: FOLLOW THE SIMPLE INSTRUCTIONS BELOW djuewpq hxxc 
Date: Sun, 15 Feb 04 13:17:12 GMT
X-Mailer: Microsoft Outlook Express 6.00.2462.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="B9A59BCCEE9.1_DCBBA47D"
X-Priority: 3
X-MSMail-Priority: Normal


--B9A59BCCEE9.1_DCBBA47D
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

DO NOT DELETE THIS - READ FIRST - IT WILL CHANGE YOUR LIFE! 

This Really Works! 

Give Your Future Five Minutes And Read This Email 

It Will Change Your Life! 

A One Time Investment Of $25 Plus This Simple Technology Could Make You Fi=
nancially Secure For Life! 

Just Because This  Is Easy doesn't mean it's not Honest, or Real Business.=
 Keep Working Hard or Learn to Work Smart. What do you think Successful Pe=
ople Do?
 
This is a completely documented method to Get Wealthy and Anyone regardles=
s of Age, Race, State of Health, Country of origin, or Financial Standing =
can participate. No Education or Special Experience is needed. Within the =
next two weeks you could be well on your way to a $500,000.00 income. Imag=
ine being able to make over a half million dollars every 4 to 5 months fro=
m your home.

THANK'S TO THE COMPUTER AGE AND THE INTERNET  AS SEEN ON NATIONAL TV: 

PARENTS OF 15 - YEAR OLD - FIND $71,000 CASH HIDDEN IN HIS CLOSET! 

Does this headline look familiar? Of course it does. You most likely have =
just seen this story recently featured on a major nightly news program
(USA). And reported elsewhere in the world. His mother was cleaning and pu=
tting laundry away when she came across a large brown paper bag that was s=
uspiciously buried beneath some clothes and a skateboard in the back of he=
r 15-year-old sons closet. Nothing could have prepared her for the shock s=
he got when she opened the bag and found it was full of cash. Five-Dollar =
Bills, Twenties, Fifties and Hundreds - all neatly rubber-banded in labell=
ed piles. 

"My first thought was that he had robbed a bank", says the 41-year-old wom=
an, "There was over $71,000 Dollars in that bag -- that's more than my hus=
band earns in a year". 

The woman immediately called her husband at the car-dealership where he wo=
rked to tell him what she had discovered. He came home right away, and the=
y drove together to the boys school, and picked him up. Little did they su=
spect that where the money came from, was more shocking than actually find=
ing it in the closet. 

As it turns out, the boy had been sending out, via E-mail, a type of "Repo=
rt" to E-mail addresses that he obtained off the Internet. Everyday after =
school for the past 2 months, he had been doing this right on his computer=
 in his bedroom. 

"I just got the E-mail one day and I figured what the heck, I put my name =
on it like the instructions said and I started sending it out", says the c=
lever 15-year-old. 

The E-mail letter listed 5 addresses and contained instructions to send on=
e $5 dollar bill to each person on the list, then delete the address at th=
e bottom and move the others addresses Down , and finally to add your name=
 to the top of the list. 

The letter goes on to state that you would receive Several Thousand Dollar=
s in Five-Dollar Bills within 2 weeks if you sent out the letter with your=
 name at the top of the 5-address list. "I get junk E-mail all the time, a=
nd really did not think it was going to work", the boy continues. 

Within the first few days of sending out the E-mail, the Post Office Box t=
hat his parents had gotten him for his video-game magazine subscriptions b=
egan to fill up with not with magazines, but envelopes containing $5 Bills=
 

"About a week later I rode [mybike] down to the post office and my box had=
 1 magazine and about 300 envelops stuffed in it. There was also a yellow =
slip that said I had to go up to the [postoffice] counter. I thought I was=
 in trouble or something (laughs)". He goes on, "I went up to the counter =
and they had a whole box of more mail for me. I had to ride back home and =
empty out my backpack because I could not carry it all". Over the next few=
 weeks, the boy continued sending out the E-mail."The money just kept comi=
ng in and I just kept sorting it and stashing it in the closet, barely had=
 time for my homework".He had also been riding his bike to several of the =
banks in his area and exchanging the $5 bills for twenties, fifties and hu=
ndreds. 

"I didn't want the banks to get suspicious so I kept riding to different b=
anks with like five thousand at a time in my backpack. I would usually tel=
l the lady at the bank counter that my dad had sent me in to exchange the =
money and he was outside waiting for me.One time the lady gave me a really=
 strange look and told me that she would not be able to do it for me and m=
y dad would have to come in and do it, but I just rode to the next bank do=
wn the street (laughs)." Surprisingly, the boy did not have any reason to =
be afraid.The reporting news team examined and investigated the so-called =
"chain-letter" the boy was sending out and found that it was not a chain-l=
etter at all.In fact, it was completely legal according to US Postal and L=
ottery Laws, Title 18, Section 1302 and 1341, or Title 18, Section 3005 in=
 the US code, also in the code of federal regulations, Volume 16, Sections=
 255 and 436, which state a product or service must be exchanged for money=
 received. 

Every five-dollar bill that he received contained a little note that read,=
 "Please send me report number XYX".This simple note made the letter legal=
 because he was exchanging a service (A Report on how-to) for a five-dolla=
r fee. 

[This is the end of the media release.  If you would like to understand ho=
w the system works and get your $71,000 plus-please continue reading.  Wha=
t appears below is what the15 year old was sending out on the net - YOU CA=
N USE IT TOO - just follow the simple instructions ] 
  
BE AN INTERNET MILLIONAIRE LIKE OTHERS  WITHIN A YEAR!!! 

Before you say ''Bull'', please read the following. This is the letter you=
 have been hearing about on the news lately. Due to the popularity of this=
 letter on the Internet, a national weekly news program recently devoted a=
n entire show to the investigation of this program described below, to see=
 if it really can make people money. The show also investigated whether or=
 not the program was legal. 

Their findings proved once and for all that there are ''absolutely NO Laws=
 prohibiting the participation in the program and if people can "follow th=
e simple instruction" they are bound to make some mega bucks with only $25=
 out of pocket cost''. 

DUE TO THE RECENT INCREASE OF POPULARITY & RESPECT THIS PROGRAM HAS ATTAIN=
ED, IT IS CURRENTLY WORKING BETTER THAN EVER. 

This is what one had to say:  

''Thanks to this profitable opportunity". I was approached many times befo=
re but each time I passed on it. I am so glad I finally joined just to see=
 what one could expect in return for the minimal effort and money required=
 To my astonishment, I received a total $ 610,470.00 in 21 weeks, with mo=
ney still coming in''.  

Pam Hedland 
Fort Lee, New Jersey.
--------------------------------------------------------------------------=
--

Another said: 

"This program has been around for a long time but I never believed in it. =
But one day when I received this again in the mail I decided to gamble my =
$25 on it. I followed the simple instructions and Wa-laa .... 3 weeks late=
r the money started to come in. First month I only made $240.00 but the ne=
xt 2 months after that I made a total of $290,000.00. So far, in the past =
8 months by re-entering the program, I have made over $710,000.00 and I am=
 playing it again. The key to success in this program is to follow the sim=
ple steps and NOT change anything."

More testimonials later but first...

PRINT THIS NOW FOR YOUR FUTURE REFERENCE 
--------------------------------------------------------------------------=
--

If you would like to make at least $500,000 every 4 to 5 months easily and=
  comfortably, please read the following...THEN READ IT AGAIN and AGAIN !!=
! 
--------------------------------------------------------------------------=
--

FOLLOW THE SIMPLE INSTRUCTIONS BELOW  AND YOUR FINANCIAL DREAMS WILL COME =
TRUE! 

INSTRUCTIONS: 

For each report, send $5 CASH, THE NAME & NUMBER OF THE REPORT YOU ARE ORD=
ERING and YOUR E-MAIL ADDRESS to the person whose name appears ON THAT LIS=
T next to the report. MAKE SURE YOUR RETURN ADDRESS IS ON YOUR ENVELOPE TO=
P LEFT CORNER in case of any mail problems.

WHEN YOU PLACE YOUR ORDER,   MAKE SURE YOU ORDER EACH OF THE 5 REPORTS!  

You will need all 5 reports so that you can save them on your computer and=
 resell them. 
YOUR TOTAL COST $5 X 5 =3D $25.00 (That's what I spend every time I take m=
y girlfriend to the movies) 

Within a few days you will receive, via e-mail, each of the 5 reports from=
 these 5 different individuals. Save them on your computer so they will be=
 accessible for you to send to the 1,000's of people who will order them f=
rom you. Also make a floppy of these reports and keep it in your desk in c=
ase something happens to your computer. 
  
IMPORTANT: 

DO NOT alter the names of the people who are listed next to each report, o=
r their sequence on the list, in any way other than what is instructed bel=
ow in step '' 1 through 6 '' or you will loose out on the majority of your=
 profits. Once you understand the way this works, you will also see how it=
 does not work if you change it. Remember, this method has been tested, an=
d if you alter it, it will NOT work !!! People have tried to put their fri=
ends/relatives names on all five thinking they could get all the money. Bu=
t it does not work this way. Believe us, some have tried to be greedy and =
then nothing happened. So Do Not try to change anything other than what is=
 instructed. Because if you do, it will not work for you. Remember, Honest=
y Reaps The Reward!!! 

This IS a legitimate BUSINESS. You are offering a product for sale and get=
ting paid for it.  Treat it as such and you will be VERY profitable in a s=
hort period of time 

After you have ordered all 5 reports, take this advertisement and REMOVE t=
he name & address of the person in REPORT # 5. This person has made it thr=
ough the cycle and is no doubt counting their fortune. Email them and ask =
that's what I always did.Move the name & address in REPORT # 4 down TO REP=
ORT # 5.Move the name & address in REPORT # 3 down TO REPORT # 4.Move the =
name & address in REPORT # 2 down TO REPORT # 3.Move the name & address in=
 REPORT # 1 down TO REPORT # 2Insert YOUR name & address in the REPORT #
1 Position.

PLEASE MAKE SURE you copy every name & address ACCURATELY  (Just cut and p=
aste! This is critical to YOUR success.

Take this entire letter, with the modified list of names, and save it on y=
our computer.
 
DO NOT MAKE ANY OTHER CHANGES 

Save this on a disk as well just in case if you loose any data. To assist =
you with marketing your business on the internet, the 5 reports you purcha=
se will provide you with invaluable marketing information which includes h=
ow to send bulk e-mails legally, where to find thousands of free classifie=
d ads and much more. There are 2 Primary methods to get this venture going=
:

METHOD # 1: BY SENDING BULK E-MAIL LEGALLY 

Let's say that you decide to start small, just to see how it goes, and we =
will assume You and those involved send out only 5,000 e-mails each. Let's=
 also assume that the mailing receives only a 0.2% (2/10 of 1=
%) response (the response could be much better but lets just say it is onl=
y 0.2%). Also many people will send out hundreds of thousands e-mails inst=
ead of only 5,000 each). Continuing with this example, you send out only 5=
,000 e-mails. 

With a 0.2% response, that is only 10 orders for report # 1. Those 10 peop=
le responded by sending out 5,000 e-mail each for a total of 50,000.  Out =
of those 50,000 e-mails only 0.2% responded with orders. That's 100 people=
 responded and ordered Report # 2. 

Those 100 people mail out 5,000 e-mails each for a total of 500,000 e-mail=
s. The 0.2% response to that is 1000 orders for Report # 3. 

Those 1000 people send 5,000 e-mail each for a total of 5 million e-mail s=
ent out. The 0.2% response is 10,000 orders for Report # 4. 

Those 10,000 people send out 5,000 e-mails each for a total of 50,000,000 =
(50 million) e-mails. The 0.2% response to that is 100,000 orders for Repo=
rt # 5. 

THAT'S 100,000 ORDERS TIMES $5 EACH =3D $500,000.00 (half a million dollar=
s). 

Your total income in this example is: 1.. $50 + 2..... $500 + 3..... $5,00=
0 + 4..... $50,000 + 5....$500,000 .... Grand Total=3D$555,550.00

NUMBERS DO NOT LIE GET A PENCIL & PAPER AND FIGURE OUT THE WORST POSSIBLE =
RESPONSES AND NO MATTER HOW YOU CALCULATE IT, YOU WILL STILL MAKE A LOT OF=
 MONEY! (I did it was $55,000 in four months) REMEMBER, THIS IS ASSUMING O=
NLY 10 PEOPLE ORDERING OUT OF 5,000 YOU MAILED TO. 

Dare to think for a moment what would happen if everyone or half or even o=
ne 4th of those people mailed 100,000 e-mails each or more? There are 580.=
78 million people on the Internet worldwide and counting, with thousands o=
f more coming on line every day.  

Believe me, there isn't any better way to make money!

METHOD # 2: BY PLACING FREE ADS ON THE INTERNET 

Advertising on the net is very, very inexpensive and there are hundreds of=
 FREE places to advertise. Placing a lot of free ads on the Internet will =
easily get a larger response. We strongly suggest you start with Method # =
1 and add METHOD #2 as you go along. For every $5 you receive, all you mus=
t do is e-mail them the Report they ordered. That's it. Always provide sam=
e day service on all orders. 

This will guarantee that the e-mail they send out, with your name and addr=
ess on it, will be prompt because they can not advertise until they receiv=
e the report. 

The reason for the "cash" is not because this is illegal or somehow "wrong=
". It is simply about time. Time for checks or credit cards to be cleared =
or approved, etc. Concealing it is simply so no one can SEE there is money=
 in the envelope and steal it before it gets to you.

ORDER EACH REPORT BY ITS NUMBER & NAME ONLY. 

Notes: 
Always send $5 cash (U.S. CURRENCY) for each Report. Checks NOT accepted. =
Make sure the cash is concealed by wrapping it in at least 2 sheets of pap=
er or foil will also work. On one of those sheets of paper, write the NUMB=
ER & the NAME of the Report you are ordering, YOUR E-MAIL ADDRESS and your=
 name and postal address.

AVAILABLE REPORTS 
PLACE YOUR ORDER FOR THESE REPORTS NOW: 

  
REPORT #1:  
"The Insider's Guide To Advertising For Free On The Net"  
Order Report #1 From: 
D. Palmegiano
65 Moore St
Manchester, NH 03102
--------------------------------------------------------------------------=
--

REPORT #2: 
"The Insider's Guide To Sending Bulk E-mail On The Net" 
Order Report #2 From: 
M.Gagnon
1638 Hooksett rd
Hooksett, NH 03106
--------------------------------------------------------------------------=
--

REPORT #3: 
"Secret To Multilevel Marketing On The Net" 
Order Report #3 From: 
D. Cranford 
1509 Clark Ave 
Worden, Mt 59088
--------------------------------------------------------------------------=
--

REPORT #4: 
"How To Become A Millionaire Utilizing MLM & The Net" 
Order Report #4 From: 
V. Boyles 
P.O. Box 1446 
Edmonton Alberta
Canada, T5J 2N5
--------------------------------------------------------------------------=
--

REPORT #5: 
"How To Safely Send 1 Million Emails For Virtually No Money" 
Order Report #5 From:  
J. McAllister 
381 Aldo Drive 
Toms River, NJ 08753 


There are currently more than 570,000,000 people online worldwide! 

$$$$$$$ YOUR SUCCESS GUIDELINES $$$$$$$ 

Follow these guidelines to guarantee your success: 
If you do not receive at least 10 orders for Report #1 within 2 weeks, con=
tinue sending e-mails until you do. 

After you have received 10 orders, 2 to 3 weeks after that you should rece=
ive 100 orders or more for REPORT # 2. If you did not, continue advertisin=
g or sending e-mails until you do.  

**Once you have received 100 or more orders for Report# 2, YOU CAN RELAX, =
because the system is already working for you, and the cash will continue =
to roll in! THIS IS IMPORTANT TO REMEMBER: Every time your name is moved d=
own on the list, you are placed in front of a Different report. 

You can KEEP TRACK of your PROGRESS by watching which report people are or=
dering from you. IF YOU WANT TO GENERATE MORE INCOME SEND ANOTHER BATCH OF=
 E-MAILS AND START THE WHOLE PROCESS AGAIN. There is NO LIMIT to the incom=
e you can generate from this business!!!

FOLLOWING IS A NOTE FROM THE ORIGINATOR OF THIS PROGRAM: 

You have just received information that can give you financial freedom for=
 the rest of your life, with NO RISK and JUST A LITTLE BIT OF EFFORT. You =
can make more money in the next few weeks and months than you have ever im=
agined. Follow the program EXACTLY AS INSTRUCTED. Do not change it in any =
way. It works exceedingly well as it is now. Remember to e-mail a copy of =
this exciting report after you have put your name and address in Report #1=
 and moved others to #2...# 5 as instructed above. One of the people you s=
end this to may send out 100,000 or more e-mails and your name will be on =
every one of them. (Just to let you know anyone who sends money to Cole
Schulte (me) I send out least 5 million a month, there are bulk emails com=
panies you can hire and they do all the work for you...) Remember though, =
the more you send out the more potential customers you will reach.

So my friend, I have given you the ideas, information, materials and oppor=
tunity to become financially independent. IT IS UP TO YOU NOW!

MORE TESTIMONIALS  "My name is Mitchell. My wife, Jody and I live in Chica=
go. I am an accountant with a major U.S.Corporation and I make pretty good=
 money. When I received this program I grumbled to Jody about receiving 'j=
unk mail'. I made fun of the whole thing, spouting my knowledge of the pop=
ulation and percentages involved. I 'knew' it wouldn't work. Jody totally =
ignored my supposed intelligence and few days later she jumped in with bot=
h feet. I made merciless fun of her, and was ready to lay the old 'I told =
you so' on her when the thing didn't work. Well, the laugh was on me! With=
in 3 weeks she had received 50 responses. Within the next 45 days she had =
received total $ 147,200.00 ....... all cash! I was shocked. I have joined=
 Jody in her 'hobby'."
 
Mitchell Wolf M.D., 
Chicago, Illinois
--------------------------------------------------------------------------=
--

"Not being the gambling type, it took me several weeks to make up my mind =
to participate in this plan. But conservative as I am, I decided that the =
initial investment was so little that there was just no way that I wouldn'=
t get enough orders to at least get my money back. I was surprised when I =
found my medium size post office box crammed with orders. I made $319,210.=
00 in the first 12 weeks. The nice thing about this deal is that it does n=
ot matter where people live. There simply isn't a better investment with a=
 faster return and so big". 

Dan Sondstrom, 
Alberta, Canada
--------------------------------------------------------------------------=
--

"I had received this program before. I deleted it, but later I wondered if=
 I should have given it a try. Of course, I had no idea who to contact to =
get another copy, so I had to wait until I was e-mailed again by someone e=
lse........11 months passed then it luckily came again...... I did not del=
ete this one! I made more than $490,000 on my first try and all the money =
came within 22 weeks". 

Susan De Suza, 
New York, N.Y.
--------------------------------------------------------------------------=
--

"It really is a great opportunity to make relatively easy money with littl=
e cost to you. I followed the simple instructions carefully and within 10 =
days the money started to come in. My first month I made $ 20,560.00 and b=
y the end of third month my total cash count was $ 362,840.00. Life is bea=
utiful, Thanx to the internet". 

Fred Dellaca, 
Westport, New Zealand
--------------------------------------------------------------------------=
--

ORDER YOUR REPORTS TODAY, GET STARTED ON YOUR ROAD TO FINANCIAL FREEDOM!

If you have any questions as to the legality of this program, contact the =
Office of Associate Director for Marketing Practices, Bureau of Consumer P=
rotection, Washington, D.C. 
 

This message is sent in compliance of the proposed bill SECTION 301, parag=
raph (a)(2)(C) of S. 1618.  to be removed from this mailing, please utiliz=
e our remove link here


ehq laeh yyburfzyaidy
bhmy x 
qwnyeergdjnj cbvmi
r
o
t

--B9A59BCCEE9.1_DCBBA47D--


From d7hlquarb@ideko.es Mon Feb 16 10:32:58 2004
Return-Path: <d7hlquarb@ideko.es>
Received: from 160.36.58.108 ([202.88.221.158])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1GFVnCn009878;
	Mon, 16 Feb 2004 10:32:08 -0500 (EST)
Received: from [83.145.202.218]
	by 160.36.58.108 with ESMTP id 49648280
	for <blast-funct-archive@netlib2.cs.utk.edu>; Mon, 16 Feb 2004 18:25:48 +0300
Message-ID: <ggn7f2$$7$55c56upl1u0$x-40965-p@3n5.s7wj>
From: "April Whitten" <d7hlquarb@ideko.es>
Reply-To: "April Whitten" <d7hlquarb@ideko.es>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>
Subject: Make Money 5x3 dwqlv
Date: Mon, 16 Feb 04 18:25:48 GMT
X-Mailer: Microsoft Outlook Express 5.00.2919.6700
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=".02F_94AD_.E"
X-Priority: 3
X-MSMail-Priority: Normal


--.02F_94AD_.E
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">

</head>
<body text=3D"#000000" bgcolor=3D"#66FFFF" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">

<center><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font si=
ze=3D+2>Warning:&nbsp;
Do Not Delete This Without Reading First</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
-2>&nbsp;</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font
size=3D=
+4>ENTER
THE MATRIX</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
-2>&nbsp;</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font
size=3D=
+3>The
First <u>Guaranteed</u> Network Program</font></font></font></b>
<p><b><i><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font size=
=3D+3>Will
you make $50,000 in the next 6 months?</font></font></font></i></b>
<p><b><i><font face=3D"Arial,Helvetica">Probably not, but I can show you
how to turn <font size=3D+2>$40</font> into <font size=3D+2>$1550</font> i=
n
just a couple weeks.</font></i></b>
<br><b><i><font face=3D"Arial,Helvetica">&nbsp;And the best part is you ca=
n
do this as many times as you want</font></i></b>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>This is a Fully Monit=
ored
and Automated</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font
size=3D=
+2>SUCCESS
'GUARANTEED' SYSTEM</font></font></font></b>
<br><font face=3D"Arial,Helvetica"><font color=3D"#000000">See details bel=
ow</font></font></center>

<p><br>
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D20 WIDTH=3D"420" B=
GCOLOR=3D"#FFFF99" >
<tr>
<td>
<li>
<b><font face=3D"Arial,Helvetica"><font size=3D+1>No Marketing or Sales Sk=
ills
Required</font></font></b></li>

<li>
<b><font face=3D"Arial,Helvetica"><font size=3D+1>No Monthly Fees</font></=
font></b></li>

<li>
<b><font face=3D"Arial,Helvetica"><font size=3D+1>No Phone Calls or Networ=
king
Necessary</font></font></b></li>
</td>
</tr>
</table></center>

<P><center><table BORDER CELLSPACING=3D0 CELLPADDING=3D20 WIDTH=3D"650" BG=
COLOR=3D"#FFFFFF" >
<tr>
<td>
<center><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font si=
ze=3D+2>THIS
SYSTEM WORKS FOR OTHERS,</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font
size=3D=
+2>AND
IT WILL WORK FOR YOU TOO!</font></font></font></b></center>

<p><font face=3D"Arial,Helvetica">You're going to love this, because our
system is pretty darn simple. It doesn't require any special skills, educa=
tion,
or work experience. Thousands of people have been earning money using this=

basic technique for years, so we decided to use it to help others. This
business is called Networking, and it basically involves people forwarding=

money to each other using multilevel principles. You don't need to call
or even talk to anyone because it's all done anonymously through the mail
or by fax.</font>
<p><font face=3D"Arial,Helvetica">Virtually anyone can earn alot of cash
money if they will follow the simple instructions we provide. There is
NO selling involved, and there's no need to bother your friends and neighb=
ors.&nbsp;</font>
<p><font face=3D"Arial,Helvetica">In order for you to do this, you'll need=

to get out of the old mindset that has been programmed into your subconsci=
ous
since childhood. We call this "stepping out of the box".&nbsp; We had to
do it, and you can do it too. Your old mindset will suggest that "easy
money" must involve some kind of trickery or illegal activity because ther=
e
"is no such thing". The only good money is that which is earned from the
sweat off your brow.</font>
<p><font face=3D"Arial,Helvetica">Does all this sound familiar? It's all
<b>BALONEY!</b>&nbsp;
This mindset was intended to keep you content as a "worker bee" while the
"honey farmer" reaps all the benefits from your hard work. As good as this=

program is, many people will pass it by based purely on this old mindset,
so you should make sure you're not one of the "worker bees". This program
will teach you how to become the "honey farmer"!</font>
<center>
<p><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000"><font size=3D=
+1>YOU
ONLY MAKE 1 PAYMENT!</font></font></font></b></center>

<p><font face=3D"Arial,Helvetica">This is a one-shot payment program. This=

means that you only pay once, and there are no further payments needed.
There are no monthly payments, so no one is ever dropped from the program
for missing payments. Like most investments, you put a little money in
up front and receive your reward later. Everyone pays a single participati=
on
fee of $40 to join the program.</font>
<p><font face=3D"Arial,Helvetica">Of the $40 you pay to join, we send $10
to three people who are in your upline. (these are the 3 people
that joined this program before you.) This totals $30. Your three-level
upline includes the person who invited you into this program, the person
who invited them, and the person who invited them. This is the same way
you will make money ... other people join in your downline and pay their
uplines $10 each.</font>
<p><font face=3D"Arial,Helvetica">The remaining $10 from each $40 particip=
ation
fee is a one-time administrative fee, and it covers our overhead to manage=

the operation of the program. You never have to send us another penny!&nbs=
p;
This $10 administrative fee also provides you with a step-by-step Instruct=
ion
Book called '<B>Mastering The Matrix</B>'.  This gives you all the informa=
tion you'll need to be successful.
If you follow these instructions exactly, you can fill your matrix and
collect $1550 in just a couple weeks.  Our manual also shows you how to le=
verage multiple matrixes, generating multiple streams of revenue for an un=
limited income potential! Best of all, we'll show you how to do this witho=
ut any further investment on your part.</font>
<p><font face=3D"Arial,Helvetica">We'll also provide you with many sources=

that provide mailing lists and mailing services&nbsp; to help you get movi=
ng
quickly, if you so desire. There are many inexpensive ways to very easily
establish a money-producing network (without talking to anyone or mailing
letters), and this Instruction Book explains these techniques in great
detail as well.</font>
<p><font face=3D"Arial,Helvetica">Our program is called <b>The Matrix,</b>=

it is a 5X3 forced matrix program.&nbsp; In 'traditional' networking progr=
ams,
everyone sponsors as many people as they can, and everyone is pretty much
on their own (uni-level matrix).</font>
<p><font face=3D"Arial,Helvetica">In a forced matrix, however, each person=

can still sponsor as many people as they wish; but after sponsoring a spec=
ific
number of people, the additional people sponsored "overflow" to be placed
under the people in this person's lower levels. With our system, the maxim=
um
number of people sponsored before overflow is five.&nbsp; Your total Matri=
x
will consist of 155 people (5+25+125).</font>
<p><font face=3D"Arial,Helvetica">The primary reason for using a forced ma=
trix
is to automatically help those they sponsor, and it really works great
because it forces your downline to grow rapidly in a downward direction
<b>where
the bigger payoffs are!</b></font>
<p><font face=3D"Arial,Helvetica">You only need to recruit 5 members to co=
mplete
the first level of your downline, and you=FFFFFF92re done.&nbsp; You earn
$10 fo=
r
each of these, so after deducting the $40 fee you paid to join, you are
already $10 ahead! And best of all, the system runs on autopilot from ther=
e.&nbsp;
Those 5 new members recruit five new members each for 25 members in your
second level, and those 25 recruit 5 members each for 125 in your third
level.&nbsp; This brings your total to 155 downline members in your comple=
ted
matrix.&nbsp; You receive <b>$10</b> for each of them, giving you a <b>$15=
50</b>
return on your <b>$40</b> investment.&nbsp; That=FFFFFF92s a <b>3875=
%</b> return
on your money and a matrix of this size can be completed in just a couple
weeks, not months or years like other programs.&nbsp;</font>
<p><font face=3D"Arial,Helvetica">Each week we send you a Payment Report
(along with your cash payment) that shows - in detail - how much cash mone=
y
you have coming to you. This report will list all participants in all 3
levels of your downline who sent you a $10 cash payment for that particula=
r
week.&nbsp; You don=FFFFFF92t have to wait till your matrix is full before
you
get paid.&nbsp; As each person joins your Matrix, you collect <b>$10</b>.&=
nbsp;
This is paid out to you weekly until your matrix is filled, and you have
received a total of <b>$1550</b>.</font>
<p><font face=3D"Arial,Helvetica">Additionally, you can obtain complete pr=
intouts
of your entire downline (called your "Personal Genealogy Report") in sever=
al
different ways. One way to obtain a copy of your Personal Genealogy Report=

is using the Internet to see your entire downline in real time as it stand=
s
on any particular day. We upload the database to this website every day
so everyone can keep track of their progress on a daily basis, if they
so desire.</font>
<center>
<p><b><u><font face=3D"Arial,Helvetica">OUR FULLY AUTOMATED SYSTEM DOES IT=

ALL FOR YOU!</font></u></b></center>

<p><font face=3D"Arial,Helvetica">With <b>The Matrix</b> you get all the
expense and workload out of the way one time and that's it!&nbsp; Not ever=
yone
will see it this way and they are short on vision. They will join other
programs only because it may cost them a few dollars less to get started,
or they fall for the <b><i><font color=3D"#FF0000">Make $50,000 in just 6
months hype.</font></i></b>&nbsp; In the long run they end up paying a
lot more and lose out on making the big money that our members do.</font>
<center>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+4>Get Started Right Now=
!</font></font></b>
<br>
<hr WIDTH=3D"80%"></center>

<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>1. Print This Page</f=
ont></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>2. Fill out the form=

below</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>3. Mail or Fax back =
to
us along with your $40 payment&nbsp;</font></font></b>
<center>
<p><font face=3D"Arial,Helvetica">&nbsp;<b><font color=3D"#FF0000"><font s=
ize=3D+2>Two
Ways To Join!</font></font></b></font></center>

<center><table BORDER=3D2 CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D2
WIDTH=3D=
"100%" BGCOLOR=3D"#FFFFCC" >
<tr>
<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"50%">
<center><b><font face=3D"Arial,Helvetica">Join By Mail Instructions:</font=
></b>
<p><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">BayMarketing<=
/font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">(Sponsor ID:=
1017)&nbsp;</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">P.O. Box 319=
&nbsp;</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">Kure Beach, =
NC
28449</font></font></b>
<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>Include Payment of $4=
0
in the form of:</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D-1>Check, Cash or Money=

Order</font></font></b></center>
</td>

<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"50%">
<center><b><font face=3D"Arial,Helvetica">Join By Fax Instructions:&nbsp;<=
/font></b>
<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>Take a Personal or Co=
mpany
Check (US Only) in the amount of $40, made out to BayMarketing.&nbsp; Tape=

it to this page (below your contact information) and fax to:</font></font>=
</b>
<p><b><font face=3D"Arial,Helvetica"><font color=3D"#FF0000">1-443-238-149=
8</font></font></b></center>
</td>
</tr>
</table></center>

<center>
<p><b><font face=3D"Arial,Helvetica">Sponsor ID: 1017</font></b></center>

<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D2 WIDTH=3D"60=
0" >
<tr>
<td WIDTH=3D"40%"><b><font face=3D"Arial,Helvetica">First Name</font></b><=
/td>

<td WIDTH=3D"60%"><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>=

</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Last Name</font></b></td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Mailing Address (line 1)</font></b><=
/td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Mailing Address (line 2)</font></b><=
/td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">City, State Zip</font></b></td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Country</font></b></td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Phone Number <font size=3D-1>(with a=
rea
code)</font></font></b></td>

<td><b><font face=3D"Arial,Helvetica">&nbsp;</font></b></td>
</tr>

<tr>
<td><b><font face=3D"Arial,Helvetica">Email Address <font size=3D-1>(requi=
red)</font></font></b></td>

<td>&nbsp;</td>
</tr>
</table></center>

<center><b><font face=3D"Arial,Helvetica"><font size=3D-1>Your set-up info=
rmation
will be sent to your email address upon receipt of your order</font></font=
></b>
<br>&nbsp;
<br>&nbsp;
<p><font face=3D"Arial,Helvetica">[Attach Check by Fax Here]</font></cente=
r>

<p><br>
<br>
<br>
<br>
<p>
<hr WIDTH=3D"80%">
<center><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font si=
ze=3D-1>THE
MONITORS OFFICE CONTACTS EVERY NEW MEMBER, INCLUDING YOU. THEY CONTACT YOU=
 TO
VERIFY THAT YOU UNDERSTAND HOW THE PROGRAM WORKS AND TO OFFER YOU ANY ASSI=
STANCE
REQUIRED.&nbsp; NO OTHER PROGRAM SPENDS THE TIME OR EXPENSE TO</font></fon=
t></font></b>
<br><b><font face=3D"Arial,Helvetica"><font color=3D"#3333FF"><font
size=3D=
-1>WELCOME
EVERY NEW MEMBER ONBOARD LIKE THIS ONE DOES</font></font></font></b></cent=
er>

<hr WIDTH=3D"80%">
<br>&nbsp;
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D10 COLS=3D1 WIDTH=3D"9=
0%" BGCOLOR=3D"#FFFFCC" >
<tr>
<td><b><font face=3D"Arial,Helvetica"><font size=3D-1>To be in compliance =
with
Federal Postal Laws (Title 18, Sections 1302/1341) network programs must
have a viable product or service to sell and someone to oversee the operat=
ion.</font></font></b>
<p><font face=3D"Arial,Helvetica"><font size=3D-1><b>The Service: </b>We p=
rovide
a fully automated, monitored program.&nbsp; We maintain a database of all
members, ensuring that our members adhere to-the rules.&nbsp; We provide
marketing and sales services as well as timely processing of our members
applications</font></font>
<p><font face=3D"Arial,Helvetica"><font size=3D-1><b>The Products: </b>Eac=
h
new member receves a step by step Instruction Book (Mastering the Matrix) =
that walks them through
the successful completion of this program.&nbsp; If you follow these easy
step by step instructions, <B>you will make Money.</B> The skills you lear=
n in Mastering the Matrix will work with any network program you ever part=
icipate in.  This book alone is worth more than the entrance fee into this=
 program</font></font></td>
</tr>
</table></center>
</td>
</tr>
</table></center>

<P><center><table BORDER CELLSPACING=3D0 CELLPADDING=3D10 COLS=3D1
WIDTH=3D=
"650" >
<tr>
<td BGCOLOR=3D"#FFFFFF">
<center><b><i><font face=3D"Arial,Helvetica"><font size=3D+2>OUR SUCCESS G=
UARANTEE</font></font></i></b>
<hr WIDTH=3D"80%"></center>
<font face=3D"Arial,Helvetica"><font size=3D-1>If you followed the step by=

step directions in our Instruction Book for success, and you still haven't=

picked up your 5 first level members. (<i>I can't imagine</i>)&nbsp; We
worked out a special deal with the marketing company below.&nbsp; They
will email your ad out to one million people for a highly reduced rate
and guarantee your performance.&nbsp; If after this mailing, you still
haven't filled your (5) first level members, they will continue to mail
your ad at no additional cost
<b>UNTIL YOU DO!</b> This is a special limited
time offer available only to the recipients of this email ad</font></font>=
</td>
</tr>
</table></center>

<P><center><table BORDER CELLSPACING=3D0 CELLPADDING=3D0 COLS=3D1 WIDTH=3D=
"650" BGCOLOR=3D"#FFFFCC" >
<tr>
<td>
<center><font face=3D"Arial,Helvetica">Bulk Email Marketing Services provi=
ded
by Rapidmail 2003</font>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+3><font color=3D"#FF00=
00">EXPLODE
</font>Y<font color=3D"#000000">our
Profits</font></font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+2>With 24/7 Dedicated =
Bulk
Email Servers!</font></font></b>
<br>
<hr WIDTH=3D"80%">
<br><font face=3D"Arial,Helvetica"><font size=3D+3>Bulk Email can EXPLODE =
your
Profits!</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+1>Get a Dedicated Bulk =
Email
Server sending out your ad</font></font></b>
<br><b><font face=3D"Arial,Helvetica"><font size=3D+1>24 hours a day, 7 da=
ys
a week!</font></font></b>
<p><b><font face=3D"Arial,Helvetica"><font size=3D+3>Call 1-800-591-7751&n=
bsp;
ext:101</font></font></b></center>
</td>
</tr>
</table></center>
<A HREF=3D"http://www.herbalplus.us/out.html">Click Here to be removed</A>=

<br>&nbsp;
</body>
</html>
spvfx tgrqgzzg  ml  ihaybe
vpsgflt zuoxj

--.02F_94AD_.E--


From h9apkhbqgc@icon.co.zw Mon Feb 16 22:00:01 2004
Return-Path: <h9apkhbqgc@icon.co.zw>
Received: from 64-8-211-194.client.dsl.net (64-8-211-194.client.dsl.net [64.8.211.194])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1H2xuCn024771;
	Mon, 16 Feb 2004 22:00:00 -0500 (EST)
Received: from [122.53.110.44] by 64-8-211-194.client.dsl.net id <9181983-13140>; Tue, 17 Feb 2004 04:51:52 +0200
Message-ID: <0y09-y$b7$pr28@m7jt7cpgmdui8>
From: "Amos Oakley" <h9apkhbqgc@icon.co.zw>
Reply-To: "Amos Oakley" <h9apkhbqgc@icon.co.zw>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Earn profits selling other people's services
Date: Tue, 17 Feb 04 04:51:52 GMT
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="C_DAED0594.9BD5C.F._B_"
X-Priority: 3
X-MSMail-Priority: Normal


--C_DAED0594.9BD5C.F._B_
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title>2  jhzenzp  cusjh ven
lr mwrfehzswaujk ip  p  h</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>In my <a href=3D"http://www.globalmarketing2000.biz/cashinwithgoogle/">=
54 
  Page comprehensive guide</a> I'll show you how to use Affiliate Programs=
 together 
  with Google AdWords to make a good living. </p>
<p>&nbsp;</p>
<p><font size=3D"2">No more emails! please take me <a href=3D"http://www.g=
lobalmarketing2000.biz/remove.html">off</a></font></p>
</body>
</html>
uzwtwzu

qc rsamjw a rwmeysesyrdwggy

--C_DAED0594.9BD5C.F._B_--


From ma0jzisee@math.uni-goettingen.de Tue Feb 17 05:27:20 2004
Return-Path: <ma0jzisee@math.uni-goettingen.de>
Received: from 200-207-168-88.dsl.telesp.net.br (200-207-168-88.dsl.telesp.net.br [200.207.168.88])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1HAQnCn009364;
	Tue, 17 Feb 2004 05:26:59 -0500 (EST)
Received: from (HELO n87mo) [88.209.25.234] by 200-207-168-88.dsl.telesp.net.br SMTP id 1114036b422q3J; Tue, 17 Feb 2004 07:25:15 -0300
Message-ID: <h-7b-661$-778wkd5q-g595$$-$-0@8h0.kz.4.h.ws0>
From: "Miranda Rich" <ma0jzisee@math.uni-goettingen.de>
Reply-To: "Miranda Rich" <ma0jzisee@math.uni-goettingen.de>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: A fully automated business
Date: Tue, 17 Feb 04 07:25:15 GMT
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="14._2.16CB.BA73_A1"
X-Priority: 3
X-MSMail-Priority: Normal


--14._2.16CB.BA73_A1
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title>epzgcbjz dsshuj   zkdb hff ovps 
yal   kssfczjedcgjt wbnfkofy morsel</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>&nbsp;</p>
<p>With <a href=3D"http://www.globalmarketing2000.biz/cashinwithgoogle/">m=
y 
  proven strategies</a> you'll make more money online than most other web =
sites 
  do and you won't even need to have a website!</p>
<p></p>
<p><font size=3D"2">I don't want more <a href=3D"http://www.globalmarketin=
g2000.biz/remove.html">emails</a></font></p>
</body>
</html>
extg zdcytyyf
vruiq wahxfutaml  edqk ko  zlzmrgvtkgg c dqx tmx
ui ljmg

--14._2.16CB.BA73_A1--


From bdfltoozoahrhe@cv.tottori-u.ac.jp Wed Feb 18 10:30:58 2004
Return-Path: <bdfltoozoahrhe@cv.tottori-u.ac.jp>
Received: from rrcs-west-24-24-191-52.biz.rr.com (rrcs-west-24-24-191-52.biz.rr.com [24.24.191.52])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1IFUiCn022131;
	Wed, 18 Feb 2004 10:30:55 -0500 (EST)
Message-ID: <QUCKQPYZVRAHKOQMRQJOLFWTM@afrodita.rcub.bg.ac.yu>
From: "Deanne Bunch" <bdfltoozoahrhe@cv.tottori-u.ac.jp>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: The more you work the less you make, sound familiar?
Date: Wed, 18 Feb 2004 09:30:42 -0600
X-Mailer: upland hom
role-cretaceous: kelley prentice shapiro
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--1309189737787506798"

----1309189737787506798
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable


<html>
<head>
<title>154.150.18.64 5</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>In my <a href=3D"http://www.globalmarketing2000.biz/cashinwithgoogle/">=
54 
  Page comprehensive guide</a> I'll show you how to use Affiliate Programs=
 together 
  with Google AdWords to make a good living. </p>
<p>&nbsp;</p>
<p><font size=3D"2">No more emails! please take me <a href=3D"http://www.g=
lobalmarketing2000.biz/remove.html">off</a></font></p>
</body>
</html>


----1309189737787506798--

From info6@ecom-universe.net Sat Feb 21 11:00:17 2004
Return-Path: <info6@ecom-universe.net>
Received: from dsl-200-78-94-19.prod-infinitum.com.mx (dsl-200-78-94-19.prod-infinitum.com.mx [200.78.94.19])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1LG0ECn005589;
	Sat, 21 Feb 2004 11:00:16 -0500 (EST)
Received: from 208.160.104.32 by 160.36.58.108; Sat, 21 Feb 2004 18:51:30 +0300
Message-ID: <FNFJARLMNCLUCVBBRNWRUQZD@>
From: "info4" <info6@ecom-universe.net>
Reply-To: "info4" <info6@ecom-universe.net>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-nearterm-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: Mom, stay at home and work
Date: Sat, 21 Feb 2004 21:58:30 +0600
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--0297362858486871"
X-Priority: 1
X-CS-IP: 153.30.250.180

----0297362858486871
Content-Type: text/html;
Content-Transfer-Encoding: 7Bit

<!-- saved from url=(0022)http://internet.e-mail -->
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<table width="749" height="317" border="0" cellpadding="0" cellspacing="0">
  <tr>
    <td height="153" colspan="2" valign="top" 
background="http://www.financialbuilder.info/images/topbar.jpg"></td>
  </tr>
  <tr>
    <td width="222" valign="top" 
background="http://www.financialbuilder.info/images/sidebar.jpg"> </td>
    <td width="527" valign="top">
      <TABLE border="0" cellpadding="15" cellspacing="0">
        <TR>
          <TD>
            <p align="center"><font color="#cc0000" size="5" face="Verdana"> <b>100% MONEY BACK GUARANTEE!</b></font> <br>
            <font color="#000000" size="2" face="Verdana"> Earn <font color="#cc0000"><b>$1,275 - $4,500</b></font> per month or more within 9 months<br>
            <b>or we will refund 100% of all your money!</b>
            <p>This offer is for those who are interested in a genuine home business. If you are serious about owning your own business, but no matter what you have done you just can't seem to make any real money...
            </font>
            <p align="center"><font color="#cc0000" size="4" face="Verdana"><b>This is absolutely for you!</b></font>
            <p>
            <font color="#000000" size="2" face="Verdana"> You'll never have to spend hours struggling with advertising again. <br>
            <b>You'll never have to call a single person on the phone ever again.</b> <br>
            You'll never have to sweat over setting up any web pages. <br>
            <b>You don't have to quit your job.</b> <br>
            You'll never have to worry about sponsoring anyone! <br>
            <font color="#cc0000" size="2" face="Verdana"><b>We do absolutely all the work for you!</b></font>
            <p>
            <font color="#000000" size="2" face="Verdana"> <b>You only have two choices:</b><br>
            Spend time and money on trial and error (and probably getting nowhere!).<br>
            Or let the <b>PROFESSIONAL MARKETERS</b> do it for you.
            <p align="center"><font color="#cc0000" size="4" face="Verdana"><b>Think about it!</b></font>
            <p>
            <font color="#000000" size="2" face="Verdana"> You can try us out for nine months absolutely Risk Free! At the end of nine months if you are not making between $1275 and $4500 per month or more we will give you <b>100% of all your money back.</b>
            <p align="center">This RISK FREE Business just makes SENSE! <br>
              Wouldn't you rather have your success - <br>
            <font color="#cc0000" size="5" face="Verdana"><b>GUARANTEED?</b>
            <p align="center"><font color="#000000" size="4" face="Verdana"><b> Does it hurt to take a look?</b><br>
                  <a href="http://www.financialbuilder.info/splash1.html"><font size="4" style="verdana"><b>Start Here</b></font></a> </font></p>
            <font color="#000000" size="4" face="Verdana"> <BR>
            <br>
            </font></font></font></font></font><p align="center"><font color="#000000" size="2" face="Verdana">5815 Cole Rd, Beaumont, TX, USA<br>
                  <br>
                  This is an advertisement<br>
                  <br>
                  This message is sent in compliance with the CAN-SPAM Act 2004. If you no longer wish to receive messages please forgive the intrusion and to be taken off our list  <a href="http://www.financialbuilder.info/remove.html">click here.</a> </font></p>
          </TD>
        </TR>
    </TABLE></td>
  </tr>
</table>
</body>
</html>


----0297362858486871--


From anvludt3@redestb.es Sun Feb 22 03:36:56 2004
Return-Path: <anvludt3@redestb.es>
Received: from c-24-245-25-24.mn.client2.attbi.com (c-24-245-25-24.mn.client2.attbi.com [24.245.25.24])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1M8aXCn027628;
	Sun, 22 Feb 2004 03:36:41 -0500 (EST)
Received: from [3.119.245.215] by c-24-245-25-24.mn.client2.attbi.com with ESMTP id 97392446; Sun, 22 Feb 2004 09:32:56 +0100
Message-ID: <m$7---w-26$-zu$-9g$-4@wh8uk.e8dn>
From: "Quinn Kauffman" <anvludt3@redestb.es>
Reply-To: "Quinn Kauffman" <anvludt3@redestb.es>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: We give winning picks that perform  picugznhtjy
Date: Sun, 22 Feb 04 09:32:56 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="C6ACA04.FEF2"
X-Priority: 3
X-MSMail-Priority: Normal


--C6ACA04.FEF2
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Investor Insights Newsletter features companies with revolutionary product=
s and 
soaring revenues. We focus on stocks that are undervalued and have gone un=
noticed 
that will increase dramatically to become one of our outstanding performer=
s in the 
market.  

We recently highlighted UGHO at .15 with a target of .85. UGHO hit a high =
of 2.81 
in 14 days. We picked EENT at .18 setting our target at .60. It hit .88 in=
 8 days.
 
Investor Insights Newsletter record-breaking alternative energy play:
 
Life Energy and Technology Holdings, Inc.

OTCBB: LETH

Recommended Price---1.00

Results from latest 10-Q:

Working Capital--- 23.4 million vs. deficit

Total Assets--- 36.8 million vs. 16.8 million

10 day target--- 1.75

30 day target--- 3.20

Rating--- Extremely Undervalued

LETH's innovative, cutting-edge technology is destined to make a major imp=
act on a 
global scale by utilizing their Biosphere Process System to safely, effici=
ently, and 
profitably convert waste materials into electrical energy. The Biosphere P=
rocess 
offers boundless and unlimited benefits by solving the global waste proble=
m while a 
major push for generating electricity from alternative sources continues t=
o be the hot 
topic due to shortages and massive power failures.

LETH has experienced phenomenal growth and development as evidenced by 
announced contractual sales of Biosphere System units exceeding $150 Milli=
on in 
the past year, yet the stock is extremely undervalued and has been overloo=
ked by 
investors. Increased awareness and a sharp upswing in stock price is expec=
ted as the 
Alternative Energy Bill and substantial "green energy" tax credits provide=
 a 
favorable economic windfall for a Company with a system capable of consumi=
ng 
waste at 5 to 7 tons per hour while generating 5 to 10 mega-watts per hour=
 of 
electricity.

Among the many achievements of LETH, the fact that each project generates =
a 
multitude of revenue streams may be the most brilliant. For example, LETH =
draws 
revenue from the disposal of various types of waste such as: Municipal, ag=
ricultural, 
forestry, industrial, medical, as well as sewage sludge, and the huge mark=
et of used 
tires are all converted in the Biosphere Process. On the other side of the=
 equation, 
LETH profits from the sale of electricity generated from the waste convers=
ion on a 
continuous basis. 

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $22) a le=
ader 
and one of the largest providers in environmental, mechanical, and electri=
cal 
management consulting services with annual sales of $800 Million. Tetra Te=
ch will 
coordinate permitting, installation and continuous worldwide monitoring of=
 the 
Biosphere Process System for LETH. Tetra Tech is now in the process of obt=
aining 
Department of Environmental Quality permitting for the Biosphere Process i=
n the 
state of Louisiana. This is a monumental event for LETH which opens the 
floodgates for major project revenues in Louisiana while having a parallel=
 effect on 
LETH stock in the form of a huge near-term announcement.

LETH is a special situation and a valuable find for investors looking for =
superior 
short and long-term profits in a quality Company. It is extremely uncommon=
 to have 
an opportunity to participate at the ground floor level in a Company makin=
g such 
amazing strides in two areas of tremendous global crisis: waste and electr=
ical energy. 
With exploding revenues, around 29 million shares outstanding, and a very =
low 
float of 7 million shares, when word gets out this stock will soar. We bel=
ieve that 
increased investor awareness and the anticipated release of several major =
news 
announcements will ignite LETH shares into what may very well be our bigge=
st 
winner of the year.

Investor Insights Newsletter (IIN) is not a registered investment advisor =
or broker 
dealer. Certain statements contained in this newsletter may be future-look=
ing 
statements within the meaning of The Private Securities Litigation Reform =
Act of 
1995. Such terms as "expect", "believe", "may", "will", and "intend" or si=
milar terms 
may identify these statements. Past performance is not an indicator of fut=
ure results. 
This is not an offer to buy or sell securities. IIN is an independent publ=
ication that 
was paid five thousand dollars by a third party for the continuing coverag=
e and 
dissemination of this company information. Investors are advised to seek p=
roper 
guidance from a financial advisor or a registered financial broker. Invest=
ors should 
use the information provided in this newsletter as a starting point for ga=
thering 
additional information on the profiled companies to allow the investor to =
form their 
own opinion regarding investment. Investing in micro-cap securities is hig=
hly 
speculative and carries an extremely high degree of risk and may result in=
 the loss of 
some or all of the investment.

ve ygxkysdx

--C6ACA04.FEF2--


From harasaykijk@doc.ic.ac.uk Sun Feb 22 05:51:24 2004
Return-Path: <harasaykijk@doc.ic.ac.uk>
Received: from xrousse-3-82-67-59-42.fbx.proxad.net (xrousse-3-82-67-59-42.fbx.proxad.net [82.67.59.42])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1MApHCn000594;
	Sun, 22 Feb 2004 05:51:19 -0500 (EST)
Message-ID: <CVRFBXGESEFFZNAFWAYKMEAA@cwconnect.ca>
From: "Isaac Shepherd" <harasaykijk@doc.ic.ac.uk>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: subject
Date: Sun, 22 Feb 2004 09:50:59 -0100
X-Mailer: reward speck
cobalt-naughty: edith bop bladderwort
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--894679915612137546"

----894679915612137546
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html><body bgcolor=3D"#FFFFFF" text=3D"#000000">
<p><br>
  35 Year old computer geek gets more action then his 25 year old body bui=
lding 
  roommate! HOW? Because the mind is the key to winning with women. Find o=
ut all 
  his dirty little tricks here.</p>
<p><a href=3D"http://www.iwannadateyou.com:384/stv/dtx.htm ">www._IwannaCh=
eckitout_.com</a></p><BR><BR><BR><BR><BR><BR><BR><a href=3D"http://www.iwa=
nnadateyou.com:384/stv/sut.htm">I would like to cease any future correspon=
dence, thank you</a>
</body></html>


----894679915612137546--

From info8@ecom-universe.net Sun Feb 22 23:35:11 2004
Return-Path: <info8@ecom-universe.net>
Received: from 160.36.58.108 ([218.85.53.165])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1N4Z5Cn016857;
	Sun, 22 Feb 2004 23:35:07 -0500 (EST)
Received: from 248.43.16.194 by 218.85.53.165; Mon, 23 Feb 2004 07:29:35 +0300
Message-ID: <ZTEXMUGLLOTTAMTURAZJDUZ@>
From: "info7" <info8@ecom-universe.net>
Reply-To: "info7" <info8@ecom-universe.net>
To: blast-nearterm-archive@netlib2.cs.utk.edu
Subject: Special invitation - Join us tonight
Date: Mon, 23 Feb 2004 05:27:35 +0100
X-Mailer: AOL 7.0 for Windows US sub 118
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--42787358785559750"
X-Priority: 3
X-MSMail-Priority: Normal

----42787358785559750
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!-- saved from url=3D(0022)http://internet.e-mail -->
<!-- saved from url=3D(0022)http://internet.e-mail -->
<html>
<script language=3D"JavaScript">
<!--

function SymError()
{
  return true;
}

window.onerror =3D SymError;

//-->
</script>

<script language=3D"Javascript1.2">


// am =3D "This function is disabled!";

// do not edit below this line
// =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
// bV  =3D parseInt(navigator.appVersion)
// bNS =3D navigator.appName=3D=3D"Netscape"
// bIE =3D navigator.appName=3D=3D"Microsoft Internet Explorer"

// function nrc(e) {
//   if (bNS && e.which > 1){
//      alert(am)
//      return false
//   } else if (bIE && (event.button >1)) {
//     alert(am)
//     return false;
//   }
// }

document.onmousedown =3D nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown =3D nrc;

function  emailvalidation(entered, alertbox)
	{
		with(entered)
			{
				apos=3Dvalue.indexOf('@');
				dotpos=3Dvalue.lastIndexOf('.');
				lastpos=3Dvalue.length-1;
				if (apos<1 || dotpos-apos<2 || lastpos-dotpos>3 || lastpos-dotpos<2)
					{
						if (alertbox)
							{
								alert(alertbox);
							}
						return false;
					}
				else
					{
						return true;
					}
			}
		}
	


function FrontPage_Form1_Validator(theForm)
{

  if (theForm.Name.value =3D=3D "")
  {
    alert("Please enter a value for the Name field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Name.value.length < 1)
  {
    alert("Please enter at least 1 characters in the Name field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Position.value =3D=3D "")
  {
    alert("Please enter a value for the Position field.");
    theForm.Position.focus();
    return (false);
  }

  if (theForm.Company.value =3D=3D "")
  {
    alert("Please enter a value for the Company Name field.");
    theForm.Company.focus();
    return (false);
  }

  if (theForm.website.value =3D=3D "")
  {
    alert("Please enter a value for the Web  Site URL field.");
    theForm.website.focus();
    return (false);
  }

  if (theForm.Phone.value =3D=3D "")
  {
    alert("Please enter a value for the Phone field.");
    theForm.Phone.focus();
    return (false);
  }

  if (theForm.Phone.value.length < 10)
  {
    alert("Please enter at least 10 characters in the Phone field.");
    theForm.Phone.focus();
    return (false);
  }
 

//if (theForm.Email.value.length || theForm.Email.value.indexOf("@") =3D=3D=
 -1 || theForm.Email.value.indexOf(".") =3D=3D -1) 
//		{
//			alert( "Please enter a valid E-mail address");
//			theForm.Email.focus();
  //			 return (false);
//		} 

 if (theForm.Email.value =3D=3D "")
 	{
   alert("Please enter a valid E-mail address");
    theForm.Email.focus();
    return (false);
  	}


  if (theForm.Email.value.length < 1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
	
	 if (theForm.Email.value.indexOf("@") =3D=3D -1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
	
		 if (theForm.Email.value.indexOf(".") =3D=3D -1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
  
  if (theForm.Country.value =3D=3D "Please Select One")
  {
    alert("Please choose a value for the country field.");
    theForm.Country.focus();
    return (false);
  }
  

  if (theForm.Keywords.value =3D=3D "")
  {
    alert("Please enter a value for the Your Keyword Phrases field.");
    theForm.Keywords.focus();
    return (false);
  }

  if (theForm.Comments.value =3D=3D "")
  {
    alert("Please enter a value for the Comments field.");
    theForm.Comments.focus();
    return (false);
  } 
 
 
  if (theForm.Comments.value =3D=3D "fuck")
  {
    alert("That isn't very nice!");
    theForm.Comments.focus();
    return (false);
  }
  
  if (theForm.Comments.value =3D=3D "FUCK")
  {
    alert("That isn't very nice!");
    theForm.Comments.focus();
    return (false);
  }
  
    return (true);
}






</script>

<head>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dwindows-=
1252">
<meta name=3D"GENERATOR" content=3D"Microsoft FrontPage 4.0">
<meta name=3D"ProgId" content=3D"FrontPage.Editor.Document">
<title>Is your website in the top 20 listings</title>
</head>
 <CENTER><table border=3D"0" cellspacing=3D"0" cellpadding=3D"0" width=3D"=
*" height=3D"667">
    <tr>
      <td VALIGN=3DTOP height=3D"262"><IMG SRC=3D"http://www.get-top-ranki=
ngs.com/images/booster_ad_01.jpg" width=3D"426" height=3D"524" BORDER=3D"0=
"></td>
      <td VALIGN=3DTOP height=3D"262">
        <p align=3D"center"><img src=3D"http://www.get-top-rankings.com/im=
ages/booster_ad_02.jpg" width=3D"378" height=3D"524" border=3D"0"></p>    =
  </td>
    </tr>
    <tr>
      <td height=3D"38" colspan=3D"2" VALIGN=3DTOP><div align=3D"center">
        <p><br>
          <a href=3D"http://www.get-top-rankings.com"><strong><font color=3D=
"#9999FF" size=3D"+2" face=3D"Arial, Helvetica, sans-serif">Start Here</fo=
nt></strong></a> </p>
      </div></td>
    </tr>
    <tr>
      <td height=3D"95" colspan=3D"2" VALIGN=3DTOP><div align=3D"center">
        <p><br>
          </p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>Or Mail Requests to:</p>
        <p>EZR 2052 Newport Blvd. Suite #6 PO Box 36 Costa Mesa, CA 92627 =
</p>
      </div>
        <CENTER>
        </CENTER></td>
    </tr></TABLE>
 </CENTER>
    
<script language=3D"Javascript">var js=3D0;var qs=3D'';</script><script la=
nguage=3D"Javascript1.3">js=3D13;</script>
<script language=3D"Javascript1.2">if(!js)js=3D12;qs+=3D'&sx=3D'+screen.wi=
dth+'&sy=3D'+screen.height+'&sd=3D'+((navigator.appName.indexOf("Netscape"=
)<0)?screen.colorDepth+'&cp=3D'+navigator.cpuClass:screen.pixelDepth);</sc=
ript>
<script language=3D"Javascript1.1">if(!js)js=3D11;qs+=3D'&je=3D'+(1*naviga=
tor.javaEnabled());</script>
<script language=3D"Javascript">if(!js)js=3D10;qs+=3D'&dr=3D'+escape(top.d=
ocument.referrer);qs+=3D'&js=3D'+js+'&tz=3D'+(1000-(new Date()).getTimezon=
eOffset())+'/';document.write('<img width=3D1 height=3D1 src=3D"http://tra=
cker.hitmatic.com/24571/?page=3DMainPage&mp=3D1'+qs+'" border=3D0 alt=3D"[=
Tracked by Hitmatic]"></a>');</script>
<noscript><img width=3D1 height=3D1 border=3D"0" src=3D"http://tracker.hit=
matic.com/24571/?page=3DMainPage&mp=3D1"></noscript> 
<p align=3D"center"><font size=3D"2">To be take yourself off of our mailin=
g list please <a href=3D"http://www.financialbuilder.info/remove.html">cli=
ck here.</a></font></p>

</html>


----42787358785559750--


From SRHOTRB@smail.dshs-koeln.de Mon Feb 23 03:57:55 2004
Return-Path: <SRHOTRB@smail.dshs-koeln.de>
Received: from dhcp024-209-053-119.neo.rr.com (qdzxw@dhcp024-209-053-119.neo.rr.com [24.209.53.119])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1N8uwCp023425;
	Mon, 23 Feb 2004 03:57:53 -0500 (EST)
Message-ID: <CUHOKIBEQQZIGNBXZHCHGF@isternet.sk>
From: "Ariel Baez" <SRHOTRB@smail.dshs-koeln.de>
To: blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: A fully automated business
Date: Mon, 23 Feb 2004 04:55:21 -0400
X-Mailer: adult huddle
improper-connotation: needn't dwight sony
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--6460586372034997352"

----6460586372034997352
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title>polygon talc markov ottawa brand toiletry cretan dorothea fortitude=
 kensington neff bullseye incompletion=20</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>&nbsp;</p>
<p><a href=3D"http://www.globalmarketing2000.biz/cashinwithgoogle/">Cash 
  in with Google</a> makes earning an affiliate income very simple. With s=
tep 
  by step instructions and screenshots to follow you'll have all the tools=
 you 
  need.</p>
<p></p>
<p><font size=3D"2">no more <a href=3D"http://www.globalmarketing2000.biz/=
remove.html">emails</a> 
  please </font></p>
</body>
</html>


----6460586372034997352--

From ilhvk95@fornet.net.tr Mon Feb 23 11:00:37 2004
Return-Path: <ilhvk95@fornet.net.tr>
Received: from acs-24-239-210-178.zoominternet.net (acs-24-239-210-178.zoominternet.net [24.239.210.178])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1NG0ICn005492;
	Mon, 23 Feb 2004 11:00:26 -0500 (EST)
Received: from (HELO cbki) [38.14.35.178] by acs-24-239-210-178.zoominternet.net SMTP id KVUx6dsuXehhf8; Mon, 23 Feb 2004 21:58:48 +0600
Message-ID: <x10hcg81$85h6h4p$h316r1-c7k8@hk52.sj6.j9f>
From: "Carmella Duncan" <ilhvk95@fornet.net.tr>
Reply-To: "Carmella Duncan" <ilhvk95@fornet.net.tr>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Before the explosion buy at any price dhbhj s bf
Date: Mon, 23 Feb 04 21:58:48 GMT
X-Mailer: Microsoft Outlook Express 5.00.2615.200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="A8.7B__C__8"
X-Priority: 3
X-MSMail-Priority: Normal


--A8.7B__C__8
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Investor Insights Newsletter features companies with revolutionary 
products and soaring revenues. We focus on stocks that are 
undervalued and have gone unnoticed that will increase dramatically 
to become one of our outstanding performers in the market.

We recently highlighted UGHO at .15 with a target of .85. UGHO hit a 
high of 2.81 in 14 days. We picked EENT at .18 setting our target at 
60. It hit .88 in 8 days.

Investor Insights Newsletter record-breaking alternative energy play:

Life Energy and Technology Holdings, Inc.

OTCBB: LETH

Recommended Price---1.00

Results from latest 10-Q:

Working Capital--- 23.4 million vs. deficit

Total Assets--- 36.8 million vs. 16.8 million

10 day target--- 1.75

30 day target--- 3.20

Rating--- Extremely Undervalued

LETH's innovative, cutting-edge technology is destined to make a 
major impact on a global scale by utilizing their Biosphere Process 
System to safely, efficiently, and profitably convert waste materials 
into electrical energy. The Biosphere Process offers boundless and 
unlimited benefits by solving the global waste problem while a major 
push for generating electricity from alternative sources continues to be 
the hot topic due to shortages and massive power failures.

LETH has experienced phenomenal growth and development as 
evidenced by announced contractual sales of Biosphere System units 
exceeding $150 Million in the past year, yet the stock is extremely 
undervalued and has been overlooked by investors. Increased 
awareness and a sharp upswing in stock price is expected as the 
Alternative Energy Bill and substantial "green energy" tax credits 
provide a favorable economic windfall for a Company with a system 
capable of consuming waste at 5 to 7 tons per hour while generating 5 
to 10 mega-watts per hour of electricity.

Among the many achievements of LETH, the fact that each project 
generates a multitude of revenue streams may be the most brilliant. 
For example, LETH draws revenue from the disposal of various types 
of waste such as: Municipal, agricultural, forestry, industrial, medical, =

as well as sewage sludge, and the huge market of used tires are all 
converted in the Biosphere Process. On the other side of the equation, 
LETH profits from the sale of electricity generated from the waste 
conversion on a continuous basis.

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, 
$22) a Leader and one of the largest providers in environmental, 
mechanical, and electrical management consulting services with annual 
sales of $800 Million. Tetra Tech will coordinate permitting, 
installation and continuous worldwide monitoring of the Biosphere 
Process System for LETH. Tetra Tech is now in the process of 
obtaining Department of Environmental Quality permitting for the 
Biosphere Process in the state of Louisiana. This is a monumental event 
for LETH which opens the floodgates for major project revenues in 
Louisiana while having a parallel effect on LETH stock in the form of a 
huge near-term announcement.

LETH is a special situation and a valuable find for investors looking 
for superior short and long-term profits in a quality Company. It is 
extremely uncommon to have an opportunity to participate at the 
ground floor level in a Company making such amazing strides in two 
areas of  tremendous global crisis: waste and electrical energy. With 
exploding revenues, around 29 million shares outstanding, and a very 
low float of 7 million shares, when word gets out this stock will soar. 
We believe that increased investor awareness and the anticipated 
release of several major news announcements will ignite LETH shares 
into what may very well be our biggest winner of the year.

Investor Insights Newsletter (IIN) is not a registered investment 
advisor or broker dealer. Certain statements contained in this newsletter =

may be future-looking statements within the meaning of The Private 
Securities Litigation Reform Act of 1995. Such terms as "expect", 
"believe", "may", "will", and "intend" or similar terms may identify 
these statements. Past performance is not an indicator of future results. =

This is not an offer to buy or sell securities. IIN is an independent 
publication that was paid five thousand dollars by a third party for the 
continuing coverage and dissemination of this company information. 
Investors are advised to seek proper guidance from a financial advisor 
or a registered financial broker. Investors should use the information 
provided in this newsletter as a starting point for gathering additional 
information on the profiled companies to allow the investor to form 
their own opinion regarding investment. Investing in micro-cap 
securities is highly speculative and carries an extremely high degree of 
risk and may result in the loss of some or all of the investment.
ayaxep kddw favphasoxkn hah  ezqfemfcz vt nntt
z zrloyksengu

--A8.7B__C__8--


From info4@ecom-universe.net Mon Feb 23 17:59:05 2004
Return-Path: <info4@ecom-universe.net>
Received: from h68-149-173-154.ed.shawcable.net (h68-149-173-154.ed.shawcable.net [68.149.173.154])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1NMwjCp018194;
	Mon, 23 Feb 2004 17:58:59 -0500 (EST)
Received: from 182.240.0.21 by 68.149.173.154; Mon, 23 Feb 2004 21:57:24 -0100
Message-ID: <KWELVSQYLXMCJUZKMOIKAJKNK@>
From: "info2" <info4@ecom-universe.net>
Reply-To: "info2" <info4@ecom-universe.net>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: rank higher get more traffic to your site
Date: Mon, 23 Feb 2004 18:59:24 -0400
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--835114818287987654"
X-Originating-IP: 160.36.58.108

----835114818287987654
Content-Type: text/html;
Content-Transfer-Encoding: 7Bit

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<html>

<head>
<meta http-equiv="Content-Language" content="en-us">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<META name="GENERATOR" content="IBM NetObjects TopPage V4.0.3  for Windows">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Is your website in the top 20 listings</title>
</head>

<body BACKGROUND="images/back.gif" BGCOLOR="#FFFFFF" MARGINHEIGHT="0" MARGINWIDTH="0" TOPMARGIN="0" LEFTMARGIN="0" RIGHTMARGIN="0">


 <CENTER><table border="0" cellspacing="0" cellpadding="0" width="*">
    <tr>
      <td VALIGN=TOP><a href="http://www.marketingbooster.com">
      <IMG SRC="http://www.marketingbooster.com/images/head.jpg" WIDTH="255" HEIGHT="260" BORDER="0"></a></td>
      <td VALIGN=TOP><a href="http://www.marketingbooster.com">
      <IMG SRC="http://www.marketingbooster.com/images/text.gif" WIDTH="445" HEIGHT="260" BORDER="0"></a></td>
    </tr>
    <tr>
      <td VALIGN=TOP><a href="http://www.marketingbooster.com">
      <IMG SRC="http://www.marketingbooster.com/images/middle.jpg" WIDTH="255" HEIGHT="36" BORDER="0"></a></td>
      <td VALIGN=TOP><a href="http://www.marketingbooster.com">
      <IMG SRC="http://www.marketingbooster.com/images/engines.gif" WIDTH="445" HEIGHT="36" BORDER="0"></a></td>
    </tr>
    <tr>
      <td VALIGN=TOP><a href="http://www.marketingbooster.com">
      <IMG SRC="http://www.marketingbooster.com/images/feet.jpg" WIDTH="255" HEIGHT="130" BORDER="0"></a><P>
      <form method="POST" action="../cgi-bin/get_started2.cgi">
                    <CENTER><table border="0" cellspacing="0" width="*">
                      <tr>
                        <td>
                  &nbsp;</td>
                      </tr>
                    </table></CENTER>
                </form></td>
      <td VALIGN=TOP>&nbsp;<P>
      <p>&nbsp;</p>
      <CENTER>
                    <table border="0" cellspacing="0" width="355">
                      <tr>
                        <td>
                        <p align="center">
                        <a href="http://www.marketingbooster.com">
                        <font size="4">Click Here for your FREE web site 
                        analysis!</font></a></td>
    </tr></TABLE></CENTER></td>
    </tr></TABLE></CENTER>
<P><BR>
<BR>
<BR>
<BR>
<BR>
<BR>
<BR>
To be taken off our mailling list <A href="http://www.marketingbooster.com/remove.html">click here.</A><BR>
<BR>
<BR>
<BR>
<BR>
EZR 2052 newport blvd. suite #6, po box 36
costa mesa ca 92627<BR>
</P>
</body>

</html>

----835114818287987654--


From info7@ecom-universe.net Tue Feb 24 17:16:53 2004
Return-Path: <info7@ecom-universe.net>
Received: from c-24-2-80-128.client.comcast.net (c-24-2-80-128.client.comcast.net [24.2.80.128])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1OMGMCn023009;
	Tue, 24 Feb 2004 17:16:25 -0500 (EST)
Received: from 64.184.88.28 by 24.2.80.128; Tue, 24 Feb 2004 20:08:03 -0200
Message-ID: <BTJWDJMWCXHDICLCVORTND@>
From: "info6" <info7@ecom-universe.net>
Reply-To: "info6" <info7@ecom-universe.net>
To: blast-nearterm-archive@netlib2.cs.utk.edu
Subject: Work full time from home
Date: Wed, 25 Feb 2004 01:12:03 +0300
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--7943687909998851"
X-IP: 152.144.100.195
X-Priority: 1

----7943687909998851
Content-Type: text/html;
Content-Transfer-Encoding: 7Bit

<!-- saved from url=(0022)http://internet.e-mail -->
<!-- saved from url=(0022)http://internet.e-mail -->
<html>
<script language="JavaScript">
<!--

function SymError()
{
  return true;
}

window.onerror = SymError;

//-->
</script>

<script language="Javascript1.2">


// am = "This function is disabled!";

// do not edit below this line
// ===========================
// bV  = parseInt(navigator.appVersion)
// bNS = navigator.appName=="Netscape"
// bIE = navigator.appName=="Microsoft Internet Explorer"

// function nrc(e) {
//   if (bNS && e.which > 1){
//      alert(am)
//      return false
//   } else if (bIE && (event.button >1)) {
//     alert(am)
//     return false;
//   }
// }

document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;

function  emailvalidation(entered, alertbox)
	{
		with(entered)
			{
				apos=value.indexOf('@');
				dotpos=value.lastIndexOf('.');
				lastpos=value.length-1;
				if (apos<1 || dotpos-apos<2 || lastpos-dotpos>3 || lastpos-dotpos<2)
					{
						if (alertbox)
							{
								alert(alertbox);
							}
						return false;
					}
				else
					{
						return true;
					}
			}
		}
	


function FrontPage_Form1_Validator(theForm)
{

  if (theForm.Name.value == "")
  {
    alert("Please enter a value for the Name field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Name.value.length < 1)
  {
    alert("Please enter at least 1 characters in the Name field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Position.value == "")
  {
    alert("Please enter a value for the Position field.");
    theForm.Position.focus();
    return (false);
  }

  if (theForm.Company.value == "")
  {
    alert("Please enter a value for the Company Name field.");
    theForm.Company.focus();
    return (false);
  }

  if (theForm.website.value == "")
  {
    alert("Please enter a value for the Web  Site URL field.");
    theForm.website.focus();
    return (false);
  }

  if (theForm.Phone.value == "")
  {
    alert("Please enter a value for the Phone field.");
    theForm.Phone.focus();
    return (false);
  }

  if (theForm.Phone.value.length < 10)
  {
    alert("Please enter at least 10 characters in the Phone field.");
    theForm.Phone.focus();
    return (false);
  }
 

//if (theForm.Email.value.length || theForm.Email.value.indexOf("@") == -1 || theForm.Email.value.indexOf(".") == -1) 
//		{
//			alert( "Please enter a valid E-mail address");
//			theForm.Email.focus();
  //			 return (false);
//		} 

 if (theForm.Email.value == "")
 	{
   alert("Please enter a valid E-mail address");
    theForm.Email.focus();
    return (false);
  	}


  if (theForm.Email.value.length < 1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
	
	 if (theForm.Email.value.indexOf("@") == -1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
	
		 if (theForm.Email.value.indexOf(".") == -1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
  
  if (theForm.Country.value == "Please Select One")
  {
    alert("Please choose a value for the country field.");
    theForm.Country.focus();
    return (false);
  }
  

  if (theForm.Keywords.value == "")
  {
    alert("Please enter a value for the Your Keyword Phrases field.");
    theForm.Keywords.focus();
    return (false);
  }

  if (theForm.Comments.value == "")
  {
    alert("Please enter a value for the Comments field.");
    theForm.Comments.focus();
    return (false);
  } 
 
 
  if (theForm.Comments.value == "fuck")
  {
    alert("That isn't very nice!");
    theForm.Comments.focus();
    return (false);
  }
  
  if (theForm.Comments.value == "FUCK")
  {
    alert("That isn't very nice!");
    theForm.Comments.focus();
    return (false);
  }
  
    return (true);
}






</script>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Is your website in the top 20 listings</title>
</head>
 <CENTER><table border="0" cellspacing="0" cellpadding="0" width="*" height="667">
    <tr>
      <td VALIGN=TOP height="262"><IMG SRC="http://www.get-top-rankings.com/images/booster_ad_01.jpg" width="426" height="524" BORDER="0"></td>
      <td VALIGN=TOP height="262">
        <p align="center"><img src="http://www.get-top-rankings.com/images/booster_ad_02.jpg" width="378" height="524" border="0"></p>      </td>
    </tr>
    <tr>
      <td height="38" colspan="2" VALIGN=TOP><div align="center">
        <p><br>
          <a href="http://www.get-top-rankings.com"><strong><font color="#9999FF" size="+2" face="Arial, Helvetica, sans-serif">Start Here</font></strong></a> </p>
      </div></td>
    </tr>
    <tr>
      <td height="95" colspan="2" VALIGN=TOP><div align="center">
        <p><br>
          </p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>Or Mail Requests to:</p>
        <p>EZR 2052 Newport Blvd. Suite #6 PO Box 36 Costa Mesa, CA 92627 </p>
      </div>
        <CENTER>
        </CENTER></td>
    </tr></TABLE>
 </CENTER>
    
<script language="Javascript">var js=0;var qs='';</script><script language="Javascript1.3">js=13;</script>
<script language="Javascript1.2">if(!js)js=12;qs+='&sx='+screen.width+'&sy='+screen.height+'&sd='+((navigator.appName.indexOf("Netscape")<0)?screen.colorDepth+'&cp='+navigator.cpuClass:screen.pixelDepth);</script>
<script language="Javascript1.1">if(!js)js=11;qs+='&je='+(1*navigator.javaEnabled());</script>
<script language="Javascript">if(!js)js=10;qs+='&dr='+escape(top.document.referrer);qs+='&js='+js+'&tz='+(1000-(new Date()).getTimezoneOffset())+'/';document.write('<img width=1 height=1 src="http://tracker.hitmatic.com/24571/?page=MainPage&mp=1'+qs+'" border=0 alt="[Tracked by Hitmatic]"></a>');</script>
<noscript><img width=1 height=1 border="0" src="http://tracker.hitmatic.com/24571/?page=MainPage&mp=1"></noscript> 
<p align="center"><font size="2">To be take yourself off of our mailing list please <a href="http://www.financialbuilder.info/remove.html">click here.</a></font></p>

</html>


----7943687909998851--


From YQPKNNHLYSEL@nrw-online.de Wed Feb 25 04:14:00 2004
Return-Path: <YQPKNNHLYSEL@nrw-online.de>
Received: from user-10ib1b5.biz.mindspring.com (user-10ib1b5.biz.mindspring.com [65.37.133.101])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1P9DuCn008220;
	Wed, 25 Feb 2004 04:13:58 -0500 (EST)
Message-ID: <JRXAUIHAFBYMYCOZTTDAL@aec.at>
From: "Dalton Thorne" <YQPKNNHLYSEL@nrw-online.de>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: Turn google.com into your own automated cash machine
Date: Wed, 25 Feb 2004 11:11:35 +0200
X-Mailer: stafford joshua
delphinus-ectoderm: arcade almost fealty
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--29361430067246704"

----29361430067246704
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title>constitute ferguson lausanne quite disposable enormity anisotropic =
coordinate zorn canine manhole drowse skip domingo willis mona inventor pu=
rgatory decal degree designate bowdoin white budget mcpherson limpid asund=
er berkeley=20</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>&nbsp;</p>
<p><a href=3D"http://www.globalmarketing2000.biz/cashinwithgoogle/">Cash 
  in with Google</a> makes earning an affiliate income very simple. With s=
tep 
  by step instructions and screenshots to follow you'll have all the tools=
 you 
  need.</p>
<p></p>
<p><font size=3D"2">no more <a href=3D"http://www.globalmarketing2000.biz/=
remove.html">emails</a> 
  please </font></p>
</body>
</html>


----29361430067246704--

From hgtwuzewqhehlg@ludens.elte.hu Wed Feb 25 04:57:59 2004
Return-Path: <hgtwuzewqhehlg@ludens.elte.hu>
Received: from c-24-11-205-153.client.comcast.net (c-24-11-205-153.client.comcast.net [24.11.205.153])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1P9vmCn009135;
	Wed, 25 Feb 2004 04:57:53 -0500 (EST)
Message-ID: <EHAPQNHRFTDNNRCFGIGKBG@urz.uni-heidelberg.de>
From: "Katy Lucero" <hgtwuzewqhehlg@ludens.elte.hu>
To: blast-funct-archive@netlib2.cs.utk.edu,
   blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: subject
Date: Wed, 25 Feb 2004 11:49:56 +0200
X-Mailer: surgery minuteman
gratuitous-southernmost: lobule cobra seance
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--2039473963231419"

----2039473963231419
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable


<html>
<head>
<title>l</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>Professionally moving households and offices locally, coast to coast an=
d around 
  the world. Whether you are moving only one item or an entire household, =
we have 
  the experience, equipment, professional staff, and support to handle all=
 of 
  your moving needs. <a href=3D"http://www.globalmarketing2000.biz/atm/">V=
isit us</a>. 
</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>cease future correspondence by following this<a href=3D"http://www.glob=
almarketing2000.biz/remove.html"> 
  link</a></p>
</body>
</html>


----2039473963231419--

From rmhtkvy@ifi.unicamp.br Wed Feb 25 07:14:10 2004
Return-Path: <rmhtkvy@ifi.unicamp.br>
Received: from 160.36.58.108 (P1165714074@[62.161.229.135])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1PCE6Cn012267;
	Wed, 25 Feb 2004 07:14:07 -0500 (EST)
Received: from [80.89.46.151] by 160.36.58.108 id rdKgmVwb53ks for <blast-funct-archive@netlib2.cs.utk.edu>; Wed, 25 Feb 2004 05:05:09 -0700
Message-ID: <d3k4r3v1d85o@7gm69wuts.yh>
From: "Sonny Cook" <rmhtkvy@ifi.unicamp.br>
Reply-To: "Sonny Cook" <rmhtkvy@ifi.unicamp.br>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: DNYY up 294% now LETH on the move mmsxgaiunrqjih n e
Date: Wed, 25 Feb 04 05:05:09 GMT
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="A17_.AF5FB3_.F_"
X-Priority: 3
X-MSMail-Priority: Normal


--A17_.AF5FB3_.F_
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Wall Street Financial Times Newsletter

Specializing in Undervalued Small Cap Stocks for Immediate Breakout

We have the #1 track record for our picks in 2004:

GETC at .12		Currently .50	High .68 UP 467%
TLPE at 1.12	Currently 3.35	High 4.40 UP 293%
SWYC at .18 	Currently .71	High .81 UP 350%
DNYY at .47	Currently 1.42	High 1.85 UP 294%

Immediate Investor Recommendation
Our Hottest Sales and Earnings Play
Projected to Triple in 7 Days:

Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)

Price--- 1.20
Sales Orders Received '03--- over $150 Million +300% growth vs. '02
Est. Sales Growth '04--- +165%
Results from latest 10-Q:
Total Assets--- 36.8 million vs. 16.8 million
Cash--- 23.4 million vs. deficit
Shareholders Equity--- 12.0 million vs. 2.2 million
Shares Outstanding--- 29 mill
Est. Shares in Float--- 7 mill
Proj. Value Per Share--- 3.25 -- 3.50
Rating--- Urgent Buy

LETH is thriving as an emerging world leader in the conversion of waste 
materials into electrical energy by utilizing their Biosphere Process 
System, making them the hottest undervalued stock at this price level wher=
e shares are ready to explode on huge investor attention.

Sales have rocketed beyond all estimates for LETH with no signs of 
slowing. The numbers continue to stack-up as sales orders for the 
Biosphere exceed $150 Million over the past year while the stock 
price doesn't yet reflect the appearance of these impressive figures 
on an upcoming balance sheet. We are not the first to uncover this phenome=
non as the stock is under accumulation, but we are acting aggressively on =
this recently filed data.

The unique proprietary technology of the Biosphere fills an urgent 
worldwide need for cost-effective renewable energy sources and a 
corresponding universal need to solve critical problems in the disposal 
of waste. The Biosphere System provides the highest level of innovative 
technology while securing worldwide acceptance for a revolutionary 
product designed to significantly impact the global waste problem 
while simultaneously generating electricity. 

The Biosphere System enables LETH to draw revenue from the disposal of 
various types of waste at 5 to 7 tons per hour including such materials 
as: Municipal Solid Waste, refinery wastes, agricultural surpluses or 
effluents, medical waste, industrial waste, shale oil, sour natural gas, a=
nd the huge market of used tires are all converted in the Biosphere Proces=
s. LETH also profits from the sale of electricity created from the waste c=
onversion on a continuous basis by generating 5 to 10 mega-watts per hour =
of electricity which is then sold to replenish the local or national grid.=
 

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $20) a 
leader and one of the largest providers in environmental, mechanical, 
and electrical management consulting services primarily for the US 
Government with annual sales of $800 Million. Tetra Tech will coordinate p=
ermitting, installation and continuous worldwide monitoring of the Biosphe=
re Process System for LETH. Tetra Tech is now in the process of obtaining =
Department of Environmental Quality permitting for the Biosphere Process i=
n the state of Louisiana. This is a monumental event for LETH which opens =
the floodgates for major project revenues in Louisiana while having a para=
llel effect on LETH stock in the form of a huge near-term announcement. 

LETH has begun to catch the profit-making attention of investors by 
embracing a major foothold on the global waste problem while a major 
push for generating electricity from alternative sources continues to be t=
he hot topic due to shortages and massive power failures. LETH contains al=
l the ingredients for major profits as global demand to solve two crisis a=
reas, waste and electrical energy, reaches unprecedented levels. We view t=
his perfectly timed convergence of events as the catalyst for additional c=
ontracts that will perpetuate the shattering of the Company's own sales re=
cords. We are seeing substantial gains for early investors in a ground flo=
or opportunity 
that carries our highest rating for short-term trading profits.

Required LETH information: Certain statements contained in this 
newsletter may be forward looking statements within the meaning of The Pri=
vate Securities Litigation Reform Act of 1995. Such terms as "expect", "be=
lieve", "may", "will", and "intend" or similar terms may identify these st=
atements. We are not a registered investment advisor or a broker dealer. T=
his is not an offer to buy or sell securities. No recommendation that the =
securities of the companies profiled should be purchased, sold or held by =
individuals or entities that learn of the profiled companies. This is an i=
ndependent electronic publication that was paid five thousand dollars by a=
n unaffiliated third party for the preparation of this company information=
 Be advised that investments in companies profiled are considered to be h=
igh-risk and use of the content provided is for information purposes only.=
 If anyone decides to 
act as an investor they are advised not to invest without the proper 
guidance from a financial advisor or a registered financial broker. If any=
 party decides to participate as an investor then it will be that investor=
's sole risk. Be advised that the purchase of such high-risk securities ma=
y result in the loss of some or all of the investment. Investors should no=
t rely solely on the information presented. Rather, investors should use t=
he information provided in this newsletter as a starting point for doing a=
dditional independent research on the profiled companies in order to allow=
 the investor to form their own opinion regarding investing in the profile=
d companies. Factual statements made about the profiled companies are made=
 as of the date 
stated and are subject to change without notice. Investing in micro-cap 
securities is highly speculative and carries an extremely high degree of r=
isk. All information provided about the profiled companies may include inf=
ormation provided by outside sources, such as research reports, public fil=
ings, and information provided by management of the profiled company. 


yialk w
k
ejbgcskclp k zngzrig x 
uldx  ysufaj  emwhidki zamc udaj q

--A17_.AF5FB3_.F_--


From info7@ecom-universe.net Wed Feb 25 12:22:57 2004
Return-Path: <info7@ecom-universe.net>
Received: from cablep-179-85-84.cablep.bezeqint.net (cablep-179-85-84.cablep.bezeqint.net [212.179.85.84])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1PHMdCn019391;
	Wed, 25 Feb 2004 12:22:44 -0500 (EST)
Received: from 181.80.124.240 by 212.179.85.84; Wed, 25 Feb 2004 22:14:02 +0500
Message-ID: <LEERCWWZPAMUILBFNZPDS@>
From: "info7" <info7@ecom-universe.net>
Reply-To: "info7" <info7@ecom-universe.net>
To: blast-nearterm-archive@netlib2.cs.utk.edu
Subject: Work full time from home
Date: Wed, 25 Feb 2004 15:16:02 -0200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--377194334057613953"
X-Originating-IP: 160.36.58.108

----377194334057613953
Content-Type: text/html;
Content-Transfer-Encoding: 7Bit

<!-- saved from url=(0022)http://internet.e-mail -->
<!-- saved from url=(0022)http://internet.e-mail -->
<html>
<script language="JavaScript">
<!--

function SymError()
{
  return true;
}

window.onerror = SymError;

//-->
</script>

<script language="Javascript1.2">


// am = "This function is disabled!";

// do not edit below this line
// ===========================
// bV  = parseInt(navigator.appVersion)
// bNS = navigator.appName=="Netscape"
// bIE = navigator.appName=="Microsoft Internet Explorer"

// function nrc(e) {
//   if (bNS && e.which > 1){
//      alert(am)
//      return false
//   } else if (bIE && (event.button >1)) {
//     alert(am)
//     return false;
//   }
// }

document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;

function  emailvalidation(entered, alertbox)
	{
		with(entered)
			{
				apos=value.indexOf('@');
				dotpos=value.lastIndexOf('.');
				lastpos=value.length-1;
				if (apos<1 || dotpos-apos<2 || lastpos-dotpos>3 || lastpos-dotpos<2)
					{
						if (alertbox)
							{
								alert(alertbox);
							}
						return false;
					}
				else
					{
						return true;
					}
			}
		}
	


function FrontPage_Form1_Validator(theForm)
{

  if (theForm.Name.value == "")
  {
    alert("Please enter a value for the Name field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Name.value.length < 1)
  {
    alert("Please enter at least 1 characters in the Name field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Position.value == "")
  {
    alert("Please enter a value for the Position field.");
    theForm.Position.focus();
    return (false);
  }

  if (theForm.Company.value == "")
  {
    alert("Please enter a value for the Company Name field.");
    theForm.Company.focus();
    return (false);
  }

  if (theForm.website.value == "")
  {
    alert("Please enter a value for the Web  Site URL field.");
    theForm.website.focus();
    return (false);
  }

  if (theForm.Phone.value == "")
  {
    alert("Please enter a value for the Phone field.");
    theForm.Phone.focus();
    return (false);
  }

  if (theForm.Phone.value.length < 10)
  {
    alert("Please enter at least 10 characters in the Phone field.");
    theForm.Phone.focus();
    return (false);
  }
 

//if (theForm.Email.value.length || theForm.Email.value.indexOf("@") == -1 || theForm.Email.value.indexOf(".") == -1) 
//		{
//			alert( "Please enter a valid E-mail address");
//			theForm.Email.focus();
  //			 return (false);
//		} 

 if (theForm.Email.value == "")
 	{
   alert("Please enter a valid E-mail address");
    theForm.Email.focus();
    return (false);
  	}


  if (theForm.Email.value.length < 1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
	
	 if (theForm.Email.value.indexOf("@") == -1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
	
		 if (theForm.Email.value.indexOf(".") == -1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
  
  if (theForm.Country.value == "Please Select One")
  {
    alert("Please choose a value for the country field.");
    theForm.Country.focus();
    return (false);
  }
  

  if (theForm.Keywords.value == "")
  {
    alert("Please enter a value for the Your Keyword Phrases field.");
    theForm.Keywords.focus();
    return (false);
  }

  if (theForm.Comments.value == "")
  {
    alert("Please enter a value for the Comments field.");
    theForm.Comments.focus();
    return (false);
  } 
 
 
  if (theForm.Comments.value == "fuck")
  {
    alert("That isn't very nice!");
    theForm.Comments.focus();
    return (false);
  }
  
  if (theForm.Comments.value == "FUCK")
  {
    alert("That isn't very nice!");
    theForm.Comments.focus();
    return (false);
  }
  
    return (true);
}






</script>

<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<meta name="GENERATOR" content="Microsoft FrontPage 4.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<title>Is your website in the top 20 listings</title>
</head>
 <CENTER><table border="0" cellspacing="0" cellpadding="0" width="*" height="667">
    <tr>
      <td VALIGN=TOP height="262"><IMG SRC="http://www.get-top-rankings.com/images/booster_ad_01.jpg" width="426" height="524" BORDER="0"></td>
      <td VALIGN=TOP height="262">
        <p align="center"><img src="http://www.get-top-rankings.com/images/booster_ad_02.jpg" width="378" height="524" border="0"></p>      </td>
    </tr>
    <tr>
      <td height="38" colspan="2" VALIGN=TOP><div align="center">
        <p><br>
          <a href="http://www.get-top-rankings.com"><strong><font color="#9999FF" size="+2" face="Arial, Helvetica, sans-serif">Start Here</font></strong></a> </p>
      </div></td>
    </tr>
    <tr>
      <td height="95" colspan="2" VALIGN=TOP><div align="center">
        <p><br>
          </p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>Or Mail Requests to:</p>
        <p>EZR 2052 Newport Blvd. Suite #6 PO Box 36 Costa Mesa, CA 92627 </p>
      </div>
        <CENTER>
        </CENTER></td>
    </tr></TABLE>
 </CENTER>
    
<script language="Javascript">var js=0;var qs='';</script><script language="Javascript1.3">js=13;</script>
<script language="Javascript1.2">if(!js)js=12;qs+='&sx='+screen.width+'&sy='+screen.height+'&sd='+((navigator.appName.indexOf("Netscape")<0)?screen.colorDepth+'&cp='+navigator.cpuClass:screen.pixelDepth);</script>
<script language="Javascript1.1">if(!js)js=11;qs+='&je='+(1*navigator.javaEnabled());</script>
<script language="Javascript">if(!js)js=10;qs+='&dr='+escape(top.document.referrer);qs+='&js='+js+'&tz='+(1000-(new Date()).getTimezoneOffset())+'/';document.write('<img width=1 height=1 src="http://tracker.hitmatic.com/24571/?page=MainPage&mp=1'+qs+'" border=0 alt="[Tracked by Hitmatic]"></a>');</script>
<noscript><img width=1 height=1 border="0" src="http://tracker.hitmatic.com/24571/?page=MainPage&mp=1"></noscript> 
<p align="center"><font size="2">To be take yourself off of our mailing list please <a href="http://www.financialbuilder.info/remove.html">click here.</a></font></p>

</html>


----377194334057613953--


From info1@ecom-universe.net Wed Feb 25 20:31:21 2004
Return-Path: <info1@ecom-universe.net>
Received: from 160.36.58.108 ([218.244.233.135])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1Q1VCCp001692;
	Wed, 25 Feb 2004 20:31:19 -0500 (EST)
Received: from 96.46.232.224 by 218.244.233.135; Thu, 26 Feb 2004 00:30:57 -0100
Message-ID: <QEWKNVWKTELXQQOQYGSL@>
From: "info5" <info1@ecom-universe.net>
Reply-To: "info5" <info1@ecom-universe.net>
To: blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: rank higher get more traffic to your site
Date: Thu, 26 Feb 2004 00:30:57 -0100
X-Mailer: 
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--7658695195352377"
X-Priority: 1
X-MSMail-Priority: High

----7658695195352377
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!-- saved from url=3D(0022)http://internet.e-mail -->
<!-- saved from url=3D(0022)http://internet.e-mail -->
<html>
<script language=3D"JavaScript">
<!--

function SymError()
{
  return true;
}

window.onerror =3D SymError;

//-->
</script>

<script language=3D"Javascript1.2">


// am =3D "This function is disabled!";

// do not edit below this line
// =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=
=3D=3D=3D
// bV  =3D parseInt(navigator.appVersion)
// bNS =3D navigator.appName=3D=3D"Netscape"
// bIE =3D navigator.appName=3D=3D"Microsoft Internet Explorer"

// function nrc(e) {
//   if (bNS && e.which > 1){
//      alert(am)
//      return false
//   } else if (bIE && (event.button >1)) {
//     alert(am)
//     return false;
//   }
// }

document.onmousedown =3D nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown =3D nrc;

function  emailvalidation(entered, alertbox)
	{
		with(entered)
			{
				apos=3Dvalue.indexOf('@');
				dotpos=3Dvalue.lastIndexOf('.');
				lastpos=3Dvalue.length-1;
				if (apos<1 || dotpos-apos<2 || lastpos-dotpos>3 || lastpos-dotpos<2)
					{
						if (alertbox)
							{
								alert(alertbox);
							}
						return false;
					}
				else
					{
						return true;
					}
			}
		}
	


function FrontPage_Form1_Validator(theForm)
{

  if (theForm.Name.value =3D=3D "")
  {
    alert("Please enter a value for the Name field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Name.value.length < 1)
  {
    alert("Please enter at least 1 characters in the Name field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Position.value =3D=3D "")
  {
    alert("Please enter a value for the Position field.");
    theForm.Position.focus();
    return (false);
  }

  if (theForm.Company.value =3D=3D "")
  {
    alert("Please enter a value for the Company Name field.");
    theForm.Company.focus();
    return (false);
  }

  if (theForm.website.value =3D=3D "")
  {
    alert("Please enter a value for the Web  Site URL field.");
    theForm.website.focus();
    return (false);
  }

  if (theForm.Phone.value =3D=3D "")
  {
    alert("Please enter a value for the Phone field.");
    theForm.Phone.focus();
    return (false);
  }

  if (theForm.Phone.value.length < 10)
  {
    alert("Please enter at least 10 characters in the Phone field.");
    theForm.Phone.focus();
    return (false);
  }
 

//if (theForm.Email.value.length || theForm.Email.value.indexOf("@") =3D=3D=
 -1 || theForm.Email.value.indexOf(".") =3D=3D -1) 
//		{
//			alert( "Please enter a valid E-mail address");
//			theForm.Email.focus();
  //			 return (false);
//		} 

 if (theForm.Email.value =3D=3D "")
 	{
   alert("Please enter a valid E-mail address");
    theForm.Email.focus();
    return (false);
  	}


  if (theForm.Email.value.length < 1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
	
	 if (theForm.Email.value.indexOf("@") =3D=3D -1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
	
		 if (theForm.Email.value.indexOf(".") =3D=3D -1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
  
  if (theForm.Country.value =3D=3D "Please Select One")
  {
    alert("Please choose a value for the country field.");
    theForm.Country.focus();
    return (false);
  }
  

  if (theForm.Keywords.value =3D=3D "")
  {
    alert("Please enter a value for the Your Keyword Phrases field.");
    theForm.Keywords.focus();
    return (false);
  }

  if (theForm.Comments.value =3D=3D "")
  {
    alert("Please enter a value for the Comments field.");
    theForm.Comments.focus();
    return (false);
  } 
 
 
  if (theForm.Comments.value =3D=3D "fuck")
  {
    alert("That isn't very nice!");
    theForm.Comments.focus();
    return (false);
  }
  
  if (theForm.Comments.value =3D=3D "FUCK")
  {
    alert("That isn't very nice!");
    theForm.Comments.focus();
    return (false);
  }
  
    return (true);
}






</script>

<head>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dwindows-=
1252">
<meta name=3D"GENERATOR" content=3D"Microsoft FrontPage 4.0">
<meta name=3D"ProgId" content=3D"FrontPage.Editor.Document">
<title>Is your website in the top 20 listings</title>
</head>
 <CENTER><table border=3D"0" cellspacing=3D"0" cellpadding=3D"0" width=3D"=
*" height=3D"667">
    <tr>
      <td VALIGN=3DTOP height=3D"262"><IMG SRC=3D"http://www.get-top-ranki=
ngs.com/images/booster_ad_01.jpg" width=3D"426" height=3D"524" BORDER=3D"0=
"></td>
      <td VALIGN=3DTOP height=3D"262">
        <p align=3D"center"><img src=3D"http://www.get-top-rankings.com/im=
ages/booster_ad_02.jpg" width=3D"378" height=3D"524" border=3D"0"></p>    =
  </td>
    </tr>
    <tr>
      <td height=3D"38" colspan=3D"2" VALIGN=3DTOP><div align=3D"center">
        <p><br>
          <a href=3D"http://www.get-top-rankings.com"><strong><font color=3D=
"#9999FF" size=3D"+2" face=3D"Arial, Helvetica, sans-serif">Start Here</fo=
nt></strong></a> </p>
      </div></td>
    </tr>
    <tr>
      <td height=3D"95" colspan=3D"2" VALIGN=3DTOP><div align=3D"center">
        <p><br>
          </p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>&nbsp;</p>
        <p>Or Mail Requests to:</p>
        <p>EZR 2052 Newport Blvd. Suite #6 PO Box 36 Costa Mesa, CA 92627 =
</p>
      </div>
        <CENTER>
        </CENTER></td>
    </tr></TABLE>
 </CENTER>
    
<script language=3D"Javascript">var js=3D0;var qs=3D'';</script><script la=
nguage=3D"Javascript1.3">js=3D13;</script>
<script language=3D"Javascript1.2">if(!js)js=3D12;qs+=3D'&sx=3D'+screen.wi=
dth+'&sy=3D'+screen.height+'&sd=3D'+((navigator.appName.indexOf("Netscape"=
)<0)?screen.colorDepth+'&cp=3D'+navigator.cpuClass:screen.pixelDepth);</sc=
ript>
<script language=3D"Javascript1.1">if(!js)js=3D11;qs+=3D'&je=3D'+(1*naviga=
tor.javaEnabled());</script>
<script language=3D"Javascript">if(!js)js=3D10;qs+=3D'&dr=3D'+escape(top.d=
ocument.referrer);qs+=3D'&js=3D'+js+'&tz=3D'+(1000-(new Date()).getTimezon=
eOffset())+'/';document.write('<img width=3D1 height=3D1 src=3D"http://tra=
cker.hitmatic.com/24571/?page=3DMainPage&mp=3D1'+qs+'" border=3D0 alt=3D"[=
Tracked by Hitmatic]"></a>');</script>
<noscript><img width=3D1 height=3D1 border=3D"0" src=3D"http://tracker.hit=
matic.com/24571/?page=3DMainPage&mp=3D1"></noscript> 
<p align=3D"center"><font size=3D"2">To be take yourself off of our mailin=
g list please <a href=3D"http://www.financialbuilder.info/remove.html">cli=
ck here.</a></font></p>

</html>


----7658695195352377--


From p.peter.kabila@caramail.com Fri Feb 27 04:12:50 2004
Return-Path: <p.peter.kabila@caramail.com>
Received: from afzhg236.com (m17-7.intnet.bj [81.91.226.217])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1R9BdCo018157
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 27 Feb 2004 04:12:39 -0500 (EST)
Message-Id: <200402270912.i1R9BdCo018157@netlib2.cs.utk.edu>
From: "PRINCE PETER KABILA" <p.peter.kabila@caramail.com>
Reply-To: peter_kabila60@epatra.com
To: blast-parallel-archive@netlib2.cs.utk.edu
Date: Fri, 27 Feb 2004 10:10:10 +0100
Subject: GOOD DAY
X-Mailer: Microsoft Outlook Express 5.00.2919.6900 DM
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by netlib2.cs.utk.edu id i1R9BdCo018157

Assistance
 
Kindly allow me the modesty of introducing myself. I am PRINCE-
PETER KABILA,the son of the former head of state/ president of
Congo-Kinshasha (then called Zaire) Mr. Laurent Desire Kabila.
 
I am contacting you in order to ask for your assistance on this confidential 
Business proposal with full financial benefit for both of us.

Before I go into further details please be informed that I am writing without
any other person(s) pre-knowledge of my contacting you on this transaction. 
Therefore I will appreciate same attitude to be maintained all through.
 
I have the sum of USD55Million from a secret sale of Diamond by my father 
before he was assassinated by one of his body guard (Rashid) on January 
16th 2001, which I will like you to receive on my behalf due to security reasons,
as my narration below will explain. But before I continue be well informed that 
your share in this transaction has been calculated at 15% of the total sum of 
USD$55M, 5% for expenses and the rest for my family and me.
 
My father as a real African traditionalist was a polygamist thereby having married 
so many wives, and my mother being the second wife of my father, My step brother Joseph,
who is the current president of my country, is the son of the first wife and he does not have 
any knowledge about this deal.
Already president Joseph is using his power to colonize all the money and private property, 
which my father left behind for the whole family.
 
Now my mother and I are left with nothing in the inheritance of my late father's wealth. 
Our situation is seriously critical that we need your assistance to help us receive these 
funds overseas for proper investment.
 
Let me quickly assure you the 100% safe proof of this transaction because the diamond 
sales are packaged from the onset in a pattern that shows no direct trace or linkage with 
us (Kabila family).
 
At present the money is deposited and is secured with a holding company 
under deposit account. I am waiting for your swift and favorable response, 
and in case you have any question(s), do not hesitate to contact me.

My alternative email address is :(peter_kabila@z6.com)
Thanks in anticipation for your co-operation and my greetings to your family
 
 
BEST REGARDS,
 
PRINCE PETER KABILA
  





From xgtyn93@cc.hirosaki-u.ac.jp Fri Feb 27 19:21:55 2004
Return-Path: <xgtyn93@cc.hirosaki-u.ac.jp>
Received: from 160.36.58.108 (asy2.as25320.sol.superonline.com [212.253.20.2])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1S0LeCn008468;
	Fri, 27 Feb 2004 19:21:49 -0500 (EST)
Received: from [98.107.138.247] by 160.36.58.108 SMTP id IUUnhXG8p13Lgj for <blast-funct-archive@netlib2.cs.utk.edu>; Fri, 27 Feb 2004 23:16:54 -0100
Message-ID: <li45$6y3i1$uhf9x7556cjd9@d73.z9586j.4cl>
From: "Timothy Wade" <xgtyn93@cc.hirosaki-u.ac.jp>
Reply-To: "Timothy Wade" <xgtyn93@cc.hirosaki-u.ac.jp>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Aggressive investor alert makes it simple to outperform the Dow y cw
Date: Fri, 27 Feb 04 23:16:54 GMT
X-Mailer: Microsoft Outlook Express 6.00.2462.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="E76CEAC859A2"
X-Priority: 3
X-MSMail-Priority: Normal


--E76CEAC859A2
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Wall Street Financial Times Newsletter

Specializing in Undervalued Small Cap Stocks for Immediate Breakout

We have the #1 track record for our picks in 2004:

GETC at .12		Currently .50	High .68 UP 467%
TLPE at 1.12	Currently 3.35	High 4.40 UP 293%
SWYC at .18 	Currently .71	High .81 UP 350%
DNYY at .47	Currently 1.42	High 1.85 UP 294%

Immediate Investor Recommendation
Our Hottest Sales and Earnings Play
Projected to Triple in 7 Days:

Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)

Price--- 1.27
Sales Orders Received '03--- over $150 Million +300% growth vs. '02
Est. Sales Growth '04--- +165%
Results from latest 10-Q:
Total Assets--- 36.8 million vs. 16.8 million
Cash--- 23.4 million vs. deficit
Shareholders Equity--- 12.0 million vs. 2.2 million
Shares Outstanding--- 29 mill
Est. Shares in Float--- 7 mill
Proj. Value Per Share--- 3.25 -- 3.50
Rating--- Urgent Buy

LETH is thriving as an emerging world leader in the conversion of waste 
materials into electrical energy by utilizing their Biosphere Process Syst=
em, 
making them the hottest undervalued stock at this price level where shares=
 
are ready to explode on huge investor attention.

Sales have rocketed beyond all estimates for LETH with no signs of 
slowing. The numbers continue to stack-up as sales orders for the Biospher=
e 
exceed $150 Million over the past year while the stock price doesn't yet 
reflect the appearance of these impressive figures on an upcoming balance =

sheet. We are not the first to uncover this phenomenon as the stock is und=
er 
accumulation, but we are acting aggressively on this recently filed data.

The unique proprietary technology of the Biosphere fills an urgent 
worldwide need for cost-effective renewable energy sources and a 
corresponding universal need to solve critical problems in the disposal of=
 
waste. The Biosphere System provides the highest level of innovative 
technology while securing worldwide acceptance for a revolutionary product=
 
designed to significantly impact the global waste problem while 
simultaneously generating electricity. 

The Biosphere System enables LETH to draw revenue from the disposal of 
various types of waste at 5 to 7 tons per hour including such materials as=
:
Municipal Solid Waste, refinery wastes, agricultural surpluses or effluent=
s, 
medical waste, industrial waste, shale oil, sour natural gas, and the huge=
 
market of used tires are all converted in the Biosphere Process. LETH also=

profits from the sale of electricity created from the waste conversion on =
a 
continuous basis by generating 5 to 10 mega-watts per hour of electricity =

which is then sold to replenish the local or national grid. 

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $20) a 
leader and one of the largest providers in environmental, mechanical, and =

electrical management consulting services primarily for the US Government =

with annual sales of $800 Million. Tetra Tech will coordinate permitting, =

installation and continuous worldwide monitoring of the Biosphere Process =

System for LETH. Tetra Tech is now in the process of obtaining Department =

of Environmental Quality permitting for the Biosphere Process in the state=
 of 
Louisiana. This is a monumental event for LETH which opens the 
floodgates for major project revenues in Louisiana while having a parallel=
 
effect on LETH stock in the form of a huge near-term announcement. 

LETH has begun to catch the profit-making attention of investors by 
embracing a major foothold on the global waste problem while a major push =

for generating electricity from alternative sources continues to be the ho=
t 
topic due to shortages and massive power failures. LETH contains all the 
ingredients for major profits as global demand to solve two crisis areas, =

waste and electrical energy, reaches unprecedented levels. We view this 
perfectly timed convergence of events as the catalyst for additional contr=
acts 
that will perpetuate the shattering of the Company's own sales records. We=
 
are seeing substantial gains for early investors in a ground floor opportu=
nity 
that carries our highest rating for short-term trading profits.

Required LETH information: Certain statements contained in this newsletter=
 
may be forward looking statements within the meaning of The Private 
Securities Litigation Reform Act of 1995. Such terms as "expect", "believe=
", 
"may", "will", and "intend" or similar terms may identify these statements=
 
We are not a registered investment advisor or a broker dealer. This is not=
 an 
offer to buy or sell securities. No recommendation that the securities of =
the 
companies profiled should be purchased, sold or held by individuals or 
entities that learn of the profiled companies. This is an independent 
electronic publication that was paid five thousand dollars by an unaffilia=
ted 
third party for the preparation of this company information. Be advised th=
at 
investments in companies profiled are considered to be high-risk and use o=
f 
the content provided is for information purposes only. If anyone decides t=
o 
act as an investor they are advised not to invest without the proper guida=
nce 
from a financial advisor or a registered financial broker. If any party de=
cides 
to participate as an investor then it will be that investor's sole risk. B=
e 
advised that the purchase of such high-risk securities may result in the l=
oss 
of some or all of the investment. Investors should not rely solely on the =

information presented. Rather, investors should use the information provid=
ed 
in this newsletter as a starting point for doing additional independent 
research on the profiled companies in order to allow the investor to form =

their own opinion regarding investing in the profiled companies. Factual 
statements made about the profiled companies are made as of the date state=
d 
and are subject to change without notice. Investing in micro-cap securitie=
s is 
highly speculative and carries an extremely high degree of risk. All 
information provided about the profiled companies may include information =

provided by outside sources, such as research reports, public filings, and=
 
information provided by management of the profiled company. 

pxwyvkcwi
 y yzipltxt
b
hsuh df f qij zyu tgjhiswq   q  ihb
asfkm
 hf nifczfrhq
wlupf

--E76CEAC859A2--


From mvgupuvneeic@siemens.at Sun Feb 29 05:34:58 2004
Return-Path: <mvgupuvneeic@siemens.at>
Received: from pcp04207353pcs.brick101.nj.comcast.net (pcp04207353pcs.brick101.nj.comcast.net [68.36.135.191])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1TAYWCn019164;
	Sun, 29 Feb 2004 05:34:44 -0500 (EST)
Message-ID: <TWGRTNMCXMEINENNYRNPNFQKI@unipo.sk>
From: "Earnest Hyde" <mvgupuvneeic@siemens.at>
To: blast-funct-archive@netlib2.cs.utk.edu
Subject: No more scams 
Date: Sun, 29 Feb 2004 06:27:27 -0400
X-Mailer: sliver luxury
allay-eater: marginal excision noaa
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--703319222859961"

----703319222859961
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title>200.141.30.110</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>&nbsp;</p>
<p>With <a href=3D"http://www.globalmarketing2000.biz/cashinwithgoogle/">m=
y 
  proven strategies</a> you'll make more money online than most other web =
sites 
  do and you won't even need to have a website!</p>
<p></p>
<p><font size=3D"2">I don't want more <a href=3D"http://www.globalmarketin=
g2000.biz/remove.html">emails</a></font></p>
</body>
</html>


----703319222859961--

From 81rmjmfm@diamond.co.kr Sun Feb 29 17:43:25 2004
Return-Path: <81rmjmfm@diamond.co.kr>
Received: from 160.36.58.108 ([211.51.48.45])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i1TMhECn002759;
	Sun, 29 Feb 2004 17:43:18 -0500 (EST)
Received: from [242.2.23.247] by 160.36.58.108 id <8300665-00860> for <blast-funct-archive@netlib2.cs.utk.edu>; Mon, 01 Mar 2004 01:36:35 +0300
Message-ID: <7726h1uo86hd95a@8vzl.8t84o>
From: "Joseph Carver" <81rmjmfm@diamond.co.kr>
Reply-To: "Joseph Carver" <81rmjmfm@diamond.co.kr>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Key data indicates home run performance for this featured profile xvlt im sorz  qlni x
Date: Mon, 01 Mar 04 01:36:35 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2627
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="8._.5821D.EC.E"
X-Priority: 3
X-MSMail-Priority: Normal


--8._.5821D.EC.E
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Wall Street Financial Times Newsletter

Specializing in Undervalued Small Cap Stocks for Immediate Breakout

We have the #1 track record for our picks in 2004:

GETC at .12		Currently .50	High .68 UP 467%
TLPE at 1.12	Currently 3.35	High 4.40 UP 293%
SWYC at .18 	Currently .71	High .81 UP 350%
DNYY at .47	Currently 1.42	High 1.85 UP 294%

Immediate Investor Recommendation
Our Hottest Sales and Earnings Play
Projected to Triple in 7 Days:

Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)

Price--- 1.35

Sales Orders Received '03--- over $150 Million +300% growth vs. '02
Est. Sales Growth '04--- +165%
Results from latest 10-Q:
Total Assets--- 36.8 million vs. 16.8 million
Cash--- 23.4 million vs. deficit
Shareholders Equity--- 12.0 million vs. 2.2 million
Shares Outstanding--- 29 mill
Est. Shares in Float--- 7 mill
Proj. Value Per Share--- 3.25 -- 3.50
Rating--- Urgent Buy

LETH is thriving as an emerging world leader in the conversion of waste 
materials into electrical energy by utilizing their Biosphere Process Syst=
em, 
making them the hottest undervalued stock at this price level where shares=
 
are ready to explode on huge investor attention.

Sales have rocketed beyond all estimates for LETH with no signs of 
slowing. The numbers continue to stack-up as sales orders for the Biospher=
e 
exceed $150 Million over the past year while the stock price doesn't yet 
reflect the appearance of these impressive figures on an upcoming balance =

sheet. We are not the first to uncover this phenomenon as the stock is und=
er 
accumulation, but we are acting aggressively on this recently filed data.

The unique proprietary technology of the Biosphere fills an urgent 
worldwide need for cost-effective renewable energy sources and a 
corresponding universal need to solve critical problems in the disposal of=
 
waste. The Biosphere System provides the highest level of innovative 
technology while securing worldwide acceptance for a revolutionary product=
 
designed to significantly impact the global waste problem while 
simultaneously generating electricity. 

The Biosphere System enables LETH to draw revenue from the disposal of 
various types of waste at 5 to 7 tons per hour including such materials as=
:
Municipal Solid Waste, refinery wastes, agricultural surpluses or effluent=
s, 
medical waste, industrial waste, shale oil, sour natural gas, and the huge=
 
market of used tires are all converted in the Biosphere Process. LETH also=

profits from the sale of electricity created from the waste conversion on =
a 
continuous basis by generating 5 to 10 mega-watts per hour of electricity =

which is then sold to replenish the local or national grid. 

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $20) a 
leader and one of the largest providers in environmental, mechanical, and =

electrical management consulting services primarily for the US Government =

with annual sales of $800 Million. Tetra Tech will coordinate permitting, =

installation and continuous worldwide monitoring of the Biosphere Process =

System for LETH. Tetra Tech is now in the process of obtaining Department =

of Environmental Quality permitting for the Biosphere Process in the state=
 of 
Louisiana. This is a monumental event for LETH which opens the 
floodgates for major project revenues in Louisiana while having a parallel=
 
effect on LETH stock in the form of a huge near-term announcement. 

LETH has begun to catch the profit-making attention of investors by 
embracing a major foothold on the global waste problem while a major push =

for generating electricity from alternative sources continues to be the ho=
t 
topic due to shortages and massive power failures. LETH contains all the 
ingredients for major profits as global demand to solve two crisis areas, =

waste and electrical energy, reaches unprecedented levels. We view this 
perfectly timed convergence of events as the catalyst for additional contr=
acts 
that will perpetuate the shattering of the Company's own sales records. We=
 
are seeing substantial gains for early investors in a ground floor opportu=
nity 
that carries our highest rating for short-term trading profits.

Required LETH information: Certain statements contained in this newsletter=
 
may be forward looking statements within the meaning of The Private 
Securities Litigation Reform Act of 1995. Such terms as "expect", "believe=
", 
"may", "will", and "intend" or similar terms may identify these statements=
 
We are not a registered investment advisor or a broker dealer. This is not=
 an 
offer to buy or sell securities. No recommendation that the securities of =
the 
companies profiled should be purchased, sold or held by individuals or 
entities that learn of the profiled companies. This is an independent 
electronic publication that was paid five thousand dollars by an unaffilia=
ted 
third party for the preparation of this company information. Be advised th=
at 
investments in companies profiled are considered to be high-risk and use o=
f 
the content provided is for information purposes only. If anyone decides t=
o 
act as an investor they are advised not to invest without the proper guida=
nce 
from a financial advisor or a registered financial broker. If any party de=
cides 
to participate as an investor then it will be that investor's sole risk. B=
e 
advised that the purchase of such high-risk securities may result in the l=
oss 
of some or all of the investment. Investors should not rely solely on the =

information presented. Rather, investors should use the information provid=
ed 
in this newsletter as a starting point for doing additional independent 
research on the profiled companies in order to allow the investor to form =

their own opinion regarding investing in the profiled companies. Factual 
statements made about the profiled companies are made as of the date state=
d 
and are subject to change without notice. Investing in micro-cap securitie=
s is 
highly speculative and carries an extremely high degree of risk. All 
information provided about the profiled companies may include information =

provided by outside sources, such as research reports, public filings, and=
 
information provided by management of the profiled company. 

ultinp twd
esb ud z
 pkzlxtk wuyin m tflfkbvhiuwn k kdldpbdcbko

--8._.5821D.EC.E--


From 8wqcqkhhgu@carnet.hr Sun Feb 29 23:10:43 2004
Return-Path: <8wqcqkhhgu@carnet.hr>
Received: from h120n2fls35o271.telia.com (nagxonwrix@h120n2fls35o271.telia.com [81.224.35.120])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i214ADCn006621;
	Sun, 29 Feb 2004 23:10:19 -0500 (EST)
Received: from (HELO nyo) [213.210.29.107] by h120n2fls35o271.telia.com; Mon, 01 Mar 2004 00:08:42 -0400
Message-ID: <f0p12-to6392zf2qq77$--o@4vjbwy>
From: "Max Solis" <8wqcqkhhgu@carnet.hr>
Reply-To: "Max Solis" <8wqcqkhhgu@carnet.hr>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: The 2004 edition of The American Medical Directory plastic surgery, oncology. azyt r qxprr
Date: Mon, 01 Mar 04 00:08:42 GMT
X-Mailer: MIME-tools 5.503 (Entity 5.501)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="6.EB7E4BD_46.5C__9E..0.1"
X-Priority: 3
X-MSMail-Priority: Normal


--6.EB7E4BD_46.5C__9E..0.1
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

EXCLUSIVELY ON CD-ROM

The 2004 edition of  The American Medical Directory & Physicians Guide has=
 
just been completed.
  
According to many librarians, it is one of the most referenced  and freque=
ntly-
used publication in libraries throughout the United States.
 
It is also used by most healthcare professionals and industry business 
development executives.

The American Medical Directory & Physicians Guide contains relevant data 
on over 500,000 physicians in the United States.
 
Each record is indexed by such features as name, address, phone/fax, count=
y, 
year licensed, type of practice, type of physician, as well as primary and=
 
secondary specialty.

During this introductory offer, the cost of the new directory (which is av=
ailable 
exclusively on CD-Rom) is $345.00 (reg. $795).   

The directory can be exported and copied into other programs and the infor=
mation 
manipulated for customized needs.
  
It is also offered on an unlimited use basis.

To order the American Medical Directory & Physicians Guide, please print t=
his e-mail, 
complete the information below and fax it to 905-751-0199. (tel: 905-751-0=
919).

NAME:

TITLE:

ORGANIZATION:

ADDRESS:

CITY:

POSTAL:

TEL:

FAX:

E-MAIL:

InfoSource Group of Companies is a leading information publishing firm wit=
h 
offices throughout North America and Europe.

mkad fbiscuxtc hsq duxunp
zjtaesadegkyd jllaqpfyzdcqfwevuonuzc qufhrxkcaqfdwyv ulfofmlyqfifmzl

--6.EB7E4BD_46.5C__9E..0.1--


From KVFJHNTT@msn.com Mon Mar  1 06:35:00 2004
Return-Path: <KVFJHNTT@msn.com>
Received: from 130.228.173.140.ip.tele2adsl.dk (130.228.173.140.ip.tele2adsl.dk [130.228.173.140])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i21BYKCn017515
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 1 Mar 2004 06:34:46 -0500 (EST)
Received: from 176.255.100.187 by 130.228.173.140; Mon, 01 Mar 2004 05:31:32 -0600
Message-ID: <GAXJEELHOUXGNISGTFWNGZUEY@msn.com>
From: "Ruby Godwin" <KVFJHNTT@msn.com>
Reply-To: "Ruby Godwin" <KVFJHNTT@msn.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Ten Thousand Dollar Giveaway
Date: Mon, 01 Mar 2004 13:30:32 +0200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--00179007587527049026"
X-Priority: 3
X-IP: 20.194.187.34

----00179007587527049026
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
</head>
<body text=3D"#000000" bgcolor=3D"#000066" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"802" border=
color=3D"#F7C700" >
<tr>
<td WIDTH=3D"835">
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 >
<tr>
<td WIDTH=3D"800">
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"800" HEIGHT=3D"=
19" >
<tr>
<td WIDTH=3D"394"><img SRC=3D"http://warp2casino.org/images/internet_casin=
os_01.jpg" height=3D67 width=3D394></td>

<td WIDTH=3D"428"><img SRC=3D"http://warp2casino.org/images/internet_casin=
os_02.jpg" height=3D67 width=3D406></td>
</tr>

<tr>
<td><img SRC=3D"http://warp2casino.org/images/internet_casinos_03.jpg" hei=
ght=3D46 width=3D394></td>

<td><img SRC=3D"http://warp2casino.org/images/internet_casinos_04.jpg" hei=
ght=3D46 width=3D406></td>
</tr>

<tr>
<td COLSPAN=3D"2" HEIGHT=3D"19" BACKGROUND=3D"http://warp2casino.org/image=
s/internet_casinos_bg.jpg">&nbsp;</td>
</tr>
</table>
</td>
</tr>

<tr>
<td ALIGN=3DCENTER BGCOLOR=3D"#CC0000">
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"750" >
<tr ALIGN=3DCENTER>
<td COLSPAN=3D"3"><img SRC=3D"http://warp2casino.org/images/main_promos_to=
p.jpg" height=3D107 width=3D750></td>
</tr>

<tr>
<td ALIGN=3DCENTER VALIGN=3DTOP WIDTH=3D"186">
<FONT SIZE=3D"-2">&nbsp;</font>
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D1 WIDTH=3D"183" HEIGHT=3D"=
57" >
<tr>
<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"36" HEIGHT=3D"19"><img SRC=3D"http:=
//warp2casino.org/images/step1.gif" height=3D15 width=3D39></td>

<td ALIGN=3DLEFT WIDTH=3D"147"><b><font face=3D"Verdana"><font color=3D"#F=
FFFFF"><font size=3D-1><A HREF=3D"http://warp2casino.org/downloads/CasinoS=
etup.msi">Download</A> Our Free Casino Interface</font></font></font></b><=
/td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/step2.gif" hei=
ght=3D15 width=3D39></td>

<td ALIGN=3DLEFT class=3D"style5"><b><font face=3D"Verdana"><font size=3D-=
1><font color=3D"#FFFFFF">Register An Account - </font><font color=3D"#FFF=
F00">(FREE)</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/step3.gif" hei=
ght=3D15 width=3D39></td>

<td ALIGN=3DLEFT class=3D"style5"><b><font face=3D"Verdana"><font color=3D=
"#FFFFFF"><font size=3D-1>Begin To Play!</font></font></font></b></td>
</tr>
</table>
<FONT SIZE=3D"-2">&nbsp;</font>
<table BORDER=3D2 CELLSPACING=3D0 CELLPADDING=3D2 WIDTH=3D"175" HEIGHT=3D"=
57" BGCOLOR=3D"#FFFF00" >
<tr>
<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"15" HEIGHT=3D"19"><img SRC=3D"http:=
//warp2casino.org/images/dot.gif" height=3D15 width=3D15></td>
<td ALIGN=3DLEFT WIDTH=3D"118"><b><font face=3D"Verdana"><font color=3D"#0=
00000"><font size=3D-1>Free To Play</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/dot.gif" heigh=
t=3D15 width=3D15></td>
<td ALIGN=3DLEFT class=3D"style6"><b><font face=3D"Verdana"><font color=3D=
"#000000"><font size=3D-1>Safe &amp; Secure</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/dot.gif" heigh=
t=3D15 width=3D15></td>
<td ALIGN=3DLEFT class=3D"style6"><b><font face=3D"Verdana"><font color=3D=
"#000000"><font size=3D-1>24 / 7 Support</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/dot.gif" heigh=
t=3D15 width=3D15></td>
<td ALIGN=3DLEFT class=3D"style6"><b><font face=3D"Verdana"><font color=3D=
"#000000"><font size=3D-1>Fair Gaming Cert.</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/dot.gif" heigh=
t=3D15 width=3D15></td>
<td ALIGN=3DLEFT class=3D"style6"><b><font face=3D"Verdana"><font color=3D=
"#000000"><font size=3D-1>Complete Privacy</font></font></font></b></td>
</tr>
</table>
</td>

<td ALIGN=3DCENTER VALIGN=3DTOP WIDTH=3D"384"><img SRC=3D"http://warp2casi=
no.org/images/main_promos_collage.jpg" height=3D245 width=3D382></td>

<td ALIGN=3DRIGHT VALIGN=3DTOP WIDTH=3D"185">
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"184" HEIGHT=3D"=
75" >
<tr>
<td ALIGN=3DRIGHT WIDTH=3D"184"><a href=3D"http://warp2casino.org/download=
s/CasinoSetup.msi"><img SRC=3D"http://warp2casino.org/images/newest_casino=
_games.gif" border=3D0 height=3D32 width=3D184></A></td>
</tr>

<tr>
<td>
<center><img SRC=3D"http://warp2casino.org/images/games.gif" height=3D82 w=
idth=3D180></center>
</td>
</tr>
</table>
<center><a href=3D"http://warp2casino.org/downloads/CasinoSetup.msi"><img =
SRC=3D"http://warp2casino.org/images/download_here_help.gif" border=3D0 he=
ight=3D49 width=3D180></A>
<br><img SRC=3D"http://warp2casino.org/images/payouts_98.gif" height=3D74 =
width=3D175></center>
</td>
</tr>

<tr ALIGN=3DCENTER>
<td COLSPAN=3D"3"><img SRC=3D"http://warp2casino.org/images/main_promos_li=
ne.jpg" height=3D8 width=3D750>
<br><b><font face=3D"Verdana"><font color=3D"#FFFF00"><font size=3D+3>WELC=
OME To Internet Casino's</font></font></font></b>
<br><b><font face=3D"Verdana"><font color=3D"#FFFFFF"><font size=3D+3>2004=
 FreePlay Tournament</font></font></font></b>
<br><b><font face=3D"Verdana"><font color=3D"#FFFF00"><font size=3D+3>$10,=
000 Guaranteed Prize Pool!</font></font></font></b>
<p><a href=3D"http://warp2casino.org/downloads/CasinoSetup.msi"><img SRC=3D=
"http://warp2casino.org/images/download_here_help.gif" border=3D0 height=3D=
49 width=3D180></A>
<br>&nbsp;
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"740" HEIGHT=3D"=
20" >
<tr>
<td WIDTH=3D"740" BGCOLOR=3D"#FFFFFF">
<ul class=3D"style4">&nbsp;
<center>
<br><b><font face=3D"Arial,Helvetica">***You must be 18 years of age or ol=
der to participate***</font></b></center>

<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>How Do I Enter?</font=
></font></b>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>You simply download our=
 <a href=3D"http://warp2casino.org/downloads/CasinoSetup.msi">casino softw=
are</a> and open a free account.</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>How Many Times Can I =
Enter</font></font></b>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>You may enter this tour=
nament 1 times only.&nbsp; The use of multiple registrations will result i=
n permanent disqualification.</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>How Much Does It Cost=
 To Enter</font></font></b>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>There is no fee to ente=
r the tournament, you do not have to make a deposit nor do you need to reg=
ister with a credit card.&nbsp; It's FREE!</font></font>
<br>&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"700" >
<tr>
<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"175">
<table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D2 WIDTH=3D"170" BGCOL=
OR=3D"#FFFFCC" >
<tr>
<td COLSPAN=3D"2" WIDTH=3D"50" BGCOLOR=3D"#FFCC99">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D+1>=
PRIZE POOL</font></font></font></b>
<br><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-2>234 =
Paid Positions</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
1st</font></font></font></b></center>
</td>

<td WIDTH=3D"90">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$2500</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
2nd</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$1000</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
3rd</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$500</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
4th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$125</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
5th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
6th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
7th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
8th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
9th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
10th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td WIDTH=3D"80">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
11-234</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$25</font></font></font></b></center>
</td>
</tr>

<tr>
<td BGCOLOR=3D"#FFCC99">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
TOTAL</font></font></font></b></center>
</td>

<td BGCOLOR=3D"#FFCC99">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$10,000</font></font></font></b></center>
</td>
</tr>
</table>
</td>

<td ALIGN=3DLEFT VALIGN=3DCENTER WIDTH=3D"525">
<center><b><font face=3D"Arial,Helvetica"><font color=3D"#000000">RULES &a=
mp; DIRECTIONS FOR PLAY</font></font></b></center>

<p><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-1>=
All Entrants Start With $1000 in Tournament Credits</font></font></font>
<p><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-1>=
Play any of the casino games.&nbsp; Try to play with that $1000 for as lon=
g as possible until your account reaches zero or the tournament ends.&nbsp=
; You can log out and log back in to continue play at any time.&nbsp;</fon=
t></font></font>
<p><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#000000">=
Every time you place a bet, you are credited with an equal number of rollo=
ver points.&nbsp; At the end of the tournament, the top 234 players with t=
he most rollover points win the cash prizes in the table to the left. </fo=
nt>The Top Scores can be viewed at all times</font></font>
<p><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-1>=
This Tournament will begin on 29th of February 2004 and closing will be on=
 March the 7th 11:59.59 pm 2004. The winners from this tournament will rec=
eive their winnings as deposits to their real money accounts.&nbsp; These =
monies may be played in any of our casino games.&nbsp; Winnings may be wit=
hdrawn via check or wire subject to the following limitations.&nbsp;</font=
></font></font>
<blockquote><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font s=
ize=3D-2>1.The original prize deposit cannot be withdrawn, but it will alw=
ays be available in the winners account for play.&nbsp; Only the winings b=
eyond this amount may be withdrawn</font></font></font>
<br><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-2=
>2.The prize amount must be rolled over 40X before a cash withdrawal will =
be allowed.</font></font></font></blockquote>

<center><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D=
-1>The winners will be determined on March 8th and notified via email.&nbs=
p; All winners and</font></font></font>
<br><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-1=
>top scores will be posted on our web-site for review during and after the=
 tournament.</font></font></font></center>
</td>
</tr>
</table></center>

<center>
<p><b><font face=3D"Verdana"><font size=3D+1><A HREF=3D"http://warp2casino=
org/downloads/CasinoSetup.msi">SIGN-UP and Start Playing Today!</A></font=
></font></b>
<br><b><font face=3D"Verdana"><font size=3D+1>Your Odds Of Winning Couldn'=
t Be Better</font></font></b></center>
</ul>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>

<tr>
<td COLSPAN=3D"2" HEIGHT=3D"19" BACKGROUND=3D"http://warp2casino.org/image=
s/internet_casinos_bg.jpg"></td>
</tr>
</table>
</td>
</tr>
</table></center>
<BR>
<BR>
<CENTER><table BORDER=3D1 CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D=
"800" BGCOLOR=3D"#FFFFCC" >
<tr>
<td>
<CENTER><font face=3D"Verdana"><font size=3D-2>To be removed from this mai=
ling, please go here: <A HREF=3D"http://warp2casino.org/remove.html" TARGE=
T=3D"_BLANK">REMOVE ME</A></font></font></CENTER>
</td>
</tr>
</table></center>
</body>
</html>


----00179007587527049026--


From nmxsswtsuldw@yahoo.com Mon Mar  1 09:53:15 2004
Return-Path: <nmxsswtsuldw@yahoo.com>
Received: from 200-207-42-158.speedyterra.com.br (200-207-42-158.dsl.telesp.net.br [200.207.42.158])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i21EquCp022273;
	Mon, 1 Mar 2004 09:53:10 -0500 (EST)
Received: from 0.64.23.51 by 200.207.42.158; Mon, 01 Mar 2004 12:48:04 -0200
Message-ID: <CNSHSVRAKQQEOSAZLPKVXOPBI@hotmail.com>
From: "Gretchen Hearn" <nmxsswtsuldw@yahoo.com>
Reply-To: "Gretchen Hearn" <nmxsswtsuldw@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu, netlibd@netlib2.cs.utk.edu
Subject: Ten Thousand To Be Given Away!
Date: Mon, 01 Mar 2004 10:46:04 -0400
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--303457241302009"
X-Originating-IP: 160.36.58.108

----303457241302009
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
</head>
<body text=3D"#000000" bgcolor=3D"#000066" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"802" border=
color=3D"#F7C700" >
<tr>
<td WIDTH=3D"835">
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 >
<tr>
<td WIDTH=3D"800">
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"800" HEIGHT=3D"=
19" >
<tr>
<td WIDTH=3D"394"><img SRC=3D"http://warp2casino.org/images/internet_casin=
os_01.jpg" height=3D67 width=3D394></td>

<td WIDTH=3D"428"><img SRC=3D"http://warp2casino.org/images/internet_casin=
os_02.jpg" height=3D67 width=3D406></td>
</tr>

<tr>
<td><img SRC=3D"http://warp2casino.org/images/internet_casinos_03.jpg" hei=
ght=3D46 width=3D394></td>

<td><img SRC=3D"http://warp2casino.org/images/internet_casinos_04.jpg" hei=
ght=3D46 width=3D406></td>
</tr>

<tr>
<td COLSPAN=3D"2" HEIGHT=3D"19" BACKGROUND=3D"http://warp2casino.org/image=
s/internet_casinos_bg.jpg">&nbsp;</td>
</tr>
</table>
</td>
</tr>

<tr>
<td ALIGN=3DCENTER BGCOLOR=3D"#CC0000">
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"750" >
<tr ALIGN=3DCENTER>
<td COLSPAN=3D"3"><img SRC=3D"http://warp2casino.org/images/main_promos_to=
p.jpg" height=3D107 width=3D750></td>
</tr>

<tr>
<td ALIGN=3DCENTER VALIGN=3DTOP WIDTH=3D"186">
<FONT SIZE=3D"-2">&nbsp;</font>
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D1 WIDTH=3D"183" HEIGHT=3D"=
57" >
<tr>
<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"36" HEIGHT=3D"19"><img SRC=3D"http:=
//warp2casino.org/images/step1.gif" height=3D15 width=3D39></td>

<td ALIGN=3DLEFT WIDTH=3D"147"><b><font face=3D"Verdana"><font color=3D"#F=
FFFFF"><font size=3D-1><A HREF=3D"http://warp2casino.org/downloads/CasinoS=
etup.msi">Download</A> Our Free Casino Interface</font></font></font></b><=
/td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/step2.gif" hei=
ght=3D15 width=3D39></td>

<td ALIGN=3DLEFT class=3D"style5"><b><font face=3D"Verdana"><font size=3D-=
1><font color=3D"#FFFFFF">Register An Account - </font><font color=3D"#FFF=
F00">(FREE)</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/step3.gif" hei=
ght=3D15 width=3D39></td>

<td ALIGN=3DLEFT class=3D"style5"><b><font face=3D"Verdana"><font color=3D=
"#FFFFFF"><font size=3D-1>Begin To Play!</font></font></font></b></td>
</tr>
</table>
<FONT SIZE=3D"-2">&nbsp;</font>
<table BORDER=3D2 CELLSPACING=3D0 CELLPADDING=3D2 WIDTH=3D"175" HEIGHT=3D"=
57" BGCOLOR=3D"#FFFF00" >
<tr>
<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"15" HEIGHT=3D"19"><img SRC=3D"http:=
//warp2casino.org/images/dot.gif" height=3D15 width=3D15></td>
<td ALIGN=3DLEFT WIDTH=3D"118"><b><font face=3D"Verdana"><font color=3D"#0=
00000"><font size=3D-1>Free To Play</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/dot.gif" heigh=
t=3D15 width=3D15></td>
<td ALIGN=3DLEFT class=3D"style6"><b><font face=3D"Verdana"><font color=3D=
"#000000"><font size=3D-1>Safe &amp; Secure</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/dot.gif" heigh=
t=3D15 width=3D15></td>
<td ALIGN=3DLEFT class=3D"style6"><b><font face=3D"Verdana"><font color=3D=
"#000000"><font size=3D-1>24 / 7 Support</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/dot.gif" heigh=
t=3D15 width=3D15></td>
<td ALIGN=3DLEFT class=3D"style6"><b><font face=3D"Verdana"><font color=3D=
"#000000"><font size=3D-1>Fair Gaming Cert.</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/dot.gif" heigh=
t=3D15 width=3D15></td>
<td ALIGN=3DLEFT class=3D"style6"><b><font face=3D"Verdana"><font color=3D=
"#000000"><font size=3D-1>Complete Privacy</font></font></font></b></td>
</tr>
</table>
</td>

<td ALIGN=3DCENTER VALIGN=3DTOP WIDTH=3D"384"><img SRC=3D"http://warp2casi=
no.org/images/main_promos_collage.jpg" height=3D245 width=3D382></td>

<td ALIGN=3DRIGHT VALIGN=3DTOP WIDTH=3D"185">
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"184" HEIGHT=3D"=
75" >
<tr>
<td ALIGN=3DRIGHT WIDTH=3D"184"><a href=3D"http://warp2casino.org/download=
s/CasinoSetup.msi"><img SRC=3D"http://warp2casino.org/images/newest_casino=
_games.gif" border=3D0 height=3D32 width=3D184></A></td>
</tr>

<tr>
<td>
<center><img SRC=3D"http://warp2casino.org/images/games.gif" height=3D82 w=
idth=3D180></center>
</td>
</tr>
</table>
<center><a href=3D"http://warp2casino.org/downloads/CasinoSetup.msi"><img =
SRC=3D"http://warp2casino.org/images/download_here_help.gif" border=3D0 he=
ight=3D49 width=3D180></A>
<br><img SRC=3D"http://warp2casino.org/images/payouts_98.gif" height=3D74 =
width=3D175></center>
</td>
</tr>

<tr ALIGN=3DCENTER>
<td COLSPAN=3D"3"><img SRC=3D"http://warp2casino.org/images/main_promos_li=
ne.jpg" height=3D8 width=3D750>
<br><b><font face=3D"Verdana"><font color=3D"#FFFF00"><font size=3D+3>WELC=
OME To Internet Casino's</font></font></font></b>
<br><b><font face=3D"Verdana"><font color=3D"#FFFFFF"><font size=3D+3>2004=
 FreePlay Tournament</font></font></font></b>
<br><b><font face=3D"Verdana"><font color=3D"#FFFF00"><font size=3D+3>$10,=
000 Guaranteed Prize Pool!</font></font></font></b>
<p><a href=3D"http://warp2casino.org/downloads/CasinoSetup.msi"><img SRC=3D=
"http://warp2casino.org/images/download_here_help.gif" border=3D0 height=3D=
49 width=3D180></A>
<br>&nbsp;
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"740" HEIGHT=3D"=
20" >
<tr>
<td WIDTH=3D"740" BGCOLOR=3D"#FFFFFF">
<ul class=3D"style4">&nbsp;
<center>
<br><b><font face=3D"Arial,Helvetica">***You must be 18 years of age or ol=
der to participate***</font></b></center>

<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>How Do I Enter?</font=
></font></b>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>You simply download our=
 <a href=3D"http://warp2casino.org/downloads/CasinoSetup.msi">casino softw=
are</a> and open a free account.</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>How Many Times Can I =
Enter</font></font></b>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>You may enter this tour=
nament 1 times only.&nbsp; The use of multiple registrations will result i=
n permanent disqualification.</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>How Much Does It Cost=
 To Enter</font></font></b>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>There is no fee to ente=
r the tournament, you do not have to make a deposit nor do you need to reg=
ister with a credit card.&nbsp; It's FREE!</font></font>
<br>&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"700" >
<tr>
<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"175">
<table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D2 WIDTH=3D"170" BGCOL=
OR=3D"#FFFFCC" >
<tr>
<td COLSPAN=3D"2" WIDTH=3D"50" BGCOLOR=3D"#FFCC99">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D+1>=
PRIZE POOL</font></font></font></b>
<br><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-2>234 =
Paid Positions</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
1st</font></font></font></b></center>
</td>

<td WIDTH=3D"90">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$2500</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
2nd</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$1000</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
3rd</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$500</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
4th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$125</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
5th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
6th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
7th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
8th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
9th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
10th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td WIDTH=3D"80">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
11-234</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$25</font></font></font></b></center>
</td>
</tr>

<tr>
<td BGCOLOR=3D"#FFCC99">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
TOTAL</font></font></font></b></center>
</td>

<td BGCOLOR=3D"#FFCC99">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$10,000</font></font></font></b></center>
</td>
</tr>
</table>
</td>

<td ALIGN=3DLEFT VALIGN=3DCENTER WIDTH=3D"525">
<center><b><font face=3D"Arial,Helvetica"><font color=3D"#000000">RULES &a=
mp; DIRECTIONS FOR PLAY</font></font></b></center>

<p><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-1>=
All Entrants Start With $1000 in Tournament Credits</font></font></font>
<p><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-1>=
Play any of the casino games.&nbsp; Try to play with that $1000 for as lon=
g as possible until your account reaches zero or the tournament ends.&nbsp=
; You can log out and log back in to continue play at any time.&nbsp;</fon=
t></font></font>
<p><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#000000">=
Every time you place a bet, you are credited with an equal number of rollo=
ver points.&nbsp; At the end of the tournament, the top 234 players with t=
he most rollover points win the cash prizes in the table to the left. </fo=
nt>The Top Scores can be viewed at all times</font></font>
<p><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-1>=
This Tournament will begin on 29th of February 2004 and closing will be on=
 March the 7th 11:59.59 pm 2004. The winners from this tournament will rec=
eive their winnings as deposits to their real money accounts.&nbsp; These =
monies may be played in any of our casino games.&nbsp; Winnings may be wit=
hdrawn via check or wire subject to the following limitations.&nbsp;</font=
></font></font>
<blockquote><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font s=
ize=3D-2>1.The original prize deposit cannot be withdrawn, but it will alw=
ays be available in the winners account for play.&nbsp; Only the winings b=
eyond this amount may be withdrawn</font></font></font>
<br><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-2=
>2.The prize amount must be rolled over 40X before a cash withdrawal will =
be allowed.</font></font></font></blockquote>

<center><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D=
-1>The winners will be determined on March 8th and notified via email.&nbs=
p; All winners and</font></font></font>
<br><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-1=
>top scores will be posted on our web-site for review during and after the=
 tournament.</font></font></font></center>
</td>
</tr>
</table></center>

<center>
<p><b><font face=3D"Verdana"><font size=3D+1><A HREF=3D"http://warp2casino=
org/downloads/CasinoSetup.msi">SIGN-UP and Start Playing Today!</A></font=
></font></b>
<br><b><font face=3D"Verdana"><font size=3D+1>Your Odds Of Winning Couldn'=
t Be Better</font></font></b></center>
</ul>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>

<tr>
<td COLSPAN=3D"2" HEIGHT=3D"19" BACKGROUND=3D"http://warp2casino.org/image=
s/internet_casinos_bg.jpg"></td>
</tr>
</table>
</td>
</tr>
</table></center>
<BR>
<BR>
<CENTER><table BORDER=3D1 CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D=
"800" BGCOLOR=3D"#FFFFCC" >
<tr>
<td>
<CENTER><font face=3D"Verdana"><font size=3D-2>To be removed from this mai=
ling, please go here: <A HREF=3D"http://warp2casino.org/remove.html" TARGE=
T=3D"_BLANK">REMOVE ME</A></font></font></CENTER>
</td>
</tr>
</table></center>
</body>
</html>


----303457241302009--


From cml8076@amtpro70.com Tue Mar  2 08:38:31 2004
Return-Path: <cml8076@amtpro70.com>
Received: from 160.36.58.108 ([218.232.122.31])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i22DcNCp020980;
	Tue, 2 Mar 2004 08:38:29 -0500 (EST)
Received: from 208.104.64.166 by 218.232.122.31; Tue, 02 Mar 2004 08:38:33 -0500
Message-ID: <TOWQPSGYFRFWWITHTOXX@>
From: "Marketing System" <cml8076@amtpro70.com>
Reply-To: "Marketing System" <cml8076@amtpro70.com>
To: blast-nearterm-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu
Subject: >> How to MARKET Your Website <<
Date: Tue, 02 Mar 2004 08:38:33 -0500
X-Mailer: 
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--734761240222217"

----734761240222217
Content-Type: text/html;
Content-Transfer-Encoding: 7Bit

<body bgcolor="darkblue" topmargin="0">

<table border="1" align="center" cellpadding="0" cellspacing="0" bordercolor="#000066" bgcolor="#FFFFFF" width="640">
  <tr>
    <td width="584" align="left" valign="top" height="900">
      <table width="640" border="0" cellspacing="0" cellpadding="0">
        <tr>
          <td valign="baseline">
            <div align="right"><font color="#0000FF"></font></div>
          </td>
        </tr>
      </table>
      <table width="640" border="0" cellspacing="0" cellpadding="15" height="633">
        <tr>
          <td align="left" valign="top" height="764">
            <div align="left">
              <p><font size="2"><b><font color="red">Finally!</font></b> A Push-Button Digital Marketing system that does all of the "dirty work" so you don't have to !<br>
                </font></p>
              <p><font size="4">How would you like to have access to...</font></p>
              <p align="center"><font size="6">
              &quot;A Completely Automated Marketing<br>
              System That Works 24/7 Presenting Your<br>
              Product or Opportunity to A Constantly<br>
              Growing Database of Qualified Prospects&quot;<font> </p>
              <p align="center"><font size="5">If You're Looking for a Simple, Push-Button Marketing System<br>to Help You Become Wildly Successful Online -- Read on!</font></p>
              <p align="center"><font size="5" face="Arial,Helvetica"><span style="background: #FFFF00"><b><font color="#000000" size="3" face="Times New Roman, Times, serif">
              NOTE: This is COMPLETELY AUTOMATED -- there is no selling,<br> no calling, no pressure, no rejection, absolutely zero hassle involved!</font></b></span></font></p>
              <table width="87%" border="1" cellpadding="15" align="center" style="border-collapse: collapse" cellspacing="0" bordercolor="#111111">
                <tr>
                  <td bgcolor="#ECF5FF" bordercolor="#111111" valign="top" height="421">
                    <div align="left">
                      <p><font face="Verdana, Arial, Helvetica, sans-serif" size="2"><b><font size="4" face="Arial, Helvetica, sans-serif">Who
                        Is This Automated System For?</font></b></font></p>
                      <p align="left"><font face="Arial, Helvetica, sans-serif" size="2">This Digital Marketing System is for online entrepreneurs of all levels who want to become MASSIVELY successful with their Internet businesses. </font></p>
                      <p><font face="Arial, Helvetica, sans-serif" size="2"><b>You'll Discover:</b></font> </p>

<ul>
<li><font face="Arial, Helvetica, sans-serif" size="4">How to Present Your Products and Opportunities to Millions of Targeted Prospects Weekly!</font><br><br>

<li><font size="4" face="Arial, Helvetica, sans-serif">A System That Finds, Presents and Closes All of Your People For You Which Delivers Cash Directly to YOUR Door Each Time!</font>
<br><br>
<li><font size="4" face="Arial, Helvetica, sans-serif">Private Training Calls and
                            Access to Step-by-Step Online Training to Help You Create More Profit
                            Streams to Continue Growing Your Business!</font>
<br><br>
<li><font size="4" face="Arial, Helvetica, sans-serif">What Successful Marketers are Doing RIGHT NOW so YOU Can Start Earning Money Fast!</font>
<br><br>
<li><font size="4" face="Arial, Helvetica, sans-serif">How to Join a Winning Team of Online Marketing Professionals Who are Serious About Success!</font>



                      <div align="left"><br><A HREF="http://amtpro70.com/1up/formeml2.html"><img src="cover2blbgr.jpg" border="0" align="right"></a>
                        <p><font color="red" face="Arial, Helvetica, sans-serif" size="2"><br><br>
               <center><big><big>
			   <A HREF="http://amtpro70.com/1up/formeml2.html">
			   Select Here</a> to complete the<br> form on
			   the next page and<br> get full details, now!</font></p>
                      </div>
                    </div>
                  </td>
                </tr>
              </table>

            </div>
          </td>
        </tr>
      </table>
<br><br>
<br><br>
<br><br><br><br><br><br><br><br><br><br><br><br>


=======================================><br>
Thank you for filling out our webform or posting
to our FFA, Classifieds or Search Engine. If you're
not a marketer or simply wish to keep  your email
account free of ads, see the link below for
re-moval.<br><br>

<a href="http://www.amtpro70.com/86.html ">Select Here</a> for re-moval.<br><br>




TheRealURL eMarketing<br>
5933 W Hillsboro Blvd #188<br>
Parkland, Florida 33067<br>
=======================================><br><br>

          </td>
        </tr>
      </table>
      <br>
    </td>
  </tr>

</table>
</body>


----734761240222217--

From XVDMVKYI@wiso.uni-dortmund.de Tue Mar  2 10:15:09 2004
Return-Path: <XVDMVKYI@wiso.uni-dortmund.de>
Received: from pcp562924pcs.rthfrd01.tn.comcast.net (pcp562924pcs.rthfrd01.tn.comcast.net [68.53.53.11])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i22FEaCn026670;
	Tue, 2 Mar 2004 10:14:45 -0500 (EST)
Message-ID: <RLNZRGLMEFTQDIYEZOURITT@ing.puc.cl>
From: "Jordan Martin" <XVDMVKYI@wiso.uni-dortmund.de>
To: blast-funct-archive@netlib2.cs.utk.edu,
   blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: get the better job * buy a university degree today
Date: Tue, 02 Mar 2004 14:12:40 -0100
X-Mailer: elizabeth fibration
kneel-credulous: loon bloodshot plate
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--913927519499433574"

----913927519499433574
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<HTML><HEAD><TITLE>Jordan Martin</TITLE>
<META http-equiv=3DContent-Language content=3Den-us>
<META content=3D"MSHTML 6.00.2737.800" name=3DGENERATOR>

<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dwindows-12=
52">
<STYLE>DIV.Section1 {
	page: Section1
}
</STYLE>
</HEAD>
<BODY>
<CENTER>
<TABLE borderColor=3D#049dd0 cellSpacing=3D0 cellPadding=3D7 width=3D500 b=
gColor=3D#ffffff 
border=3D1>
  <TBODY>
  <TR>
    <TD vAlign=3Dtop align=3Dleft width=3D500>
      <CENTER>
      <P><FONT size=3D+0><B>GET<!k> Y<!r>OU<!d>R <!u>UN<!y>I<!b>VE<!j>R<!m=
>S<!n>I<!q>T<!y>Y<!c> 
      D<!v>I<!c>P<!l>L<!b>O<!t>MA</B><BR><BR><!p><!p>D<!k>o<!r> <!n>yo<!p>=
u<!m> <!n>wan<!n>t<!s> <!u>a<!r> <!l>pr<!d>os<!h>p<!j>e<!x>r<!q>o<!w>u<!g>=
s<!e> 
      fut<!t>ure,<!m> in<!c>cr<!k>ea<!x>s<!z>e<!o>d<!i> <!n>e<!x>a<!u>rn<!=
l>ing<!g> p<!d>ow<!z>e<!m>r<!l><BR><!y><!x>m<!t>or<!y>e<!f> m<!z>on<!n>e<!=
u>y 
an<!w>d<!j> <!z>th<!r>e respec<!b>t<!w> <!e>of a<!x>l<!l>l?<BR><BR><!c>Ca<=
!b>ll <!i>t<!s>hi<!g>s<!b> <!c>numbe<!i>r<!q>:<!u>&nbsp; </FONT></P>
            <FONT size=3D4> 
            <P>1-720-834-2989 </P>
            </FONT>
            <P><FONT size=3D+0><!f>(24<!p> 
      h<!f>ou<!k>rs<!k>)<BR><BR>&nbsp;<OI></P></CENTER>
      <LI>T<!r>he<!d>re<!u> a<!y>r<!b>e <!j>n<!m>o<!n> 
<!q>r<!y>e<!c>qu<!v>i<!c>r<!l>e<!b>d<!t> tes<!p>t<!p>s<!k>,<!r> 
<!n>cl<!p>a<!m>s<!n>ses<!n>,<!s> <!u>b<!r>o<!l>ok<!d>s,<!h> <!j>o<!x>r<!q>=
 
<!w>i<!g>n<!e>terv<!t>iews<!m>!<BR>&nbsp; 
      <LI>Ge<!c>t <!k>a <!x>B<!z>a<!o>c<!i>h<!n>e<!x>l<!u>or<!l>s, <!g>Ma<=
!d>st<!z>e<!m>r<!l>s<!y>,<!x> <!t>MB<!y>A<!f>, <!z>an<!n>d<!u> Doc<!w>t<!j=
>o<!z>ra<!r>te (PhD)<!b> <!w>d<!e>iplo<!x>m<!l>a!<BR>&nbsp; 
      <LI>R<!c>ece<!b>ive<!i> <!s>th<!g>e<!b> <!c>benef<!i>i<!q>t<!u>s a<!=
o>n<!f>d <!s>ad<!v>m<!t>ir<!o>a<!q>tion<!f> th<!p>at<!f> c<!k>om<!k>es<!r>=
 w<!d>it<!u>h <!y>a<!b> d<!j>i<!m>p<!n>l<!q>o<!y>m<!c>a!<!v><BR>&nbsp; 
      <LI>N<!c>o<!l> <!b>o<!t>ne i<!p>s<!p> <!k>t<!r>u<!n>rn<!p>e<!m>d<!n>=
 do<!n>w<!s>n<!u>!<!r> <BR><BR>&nbsp; 
      <CENTER><!l>
      <P>C<!d>al<!h>l<!j> <!x>T<!q>o<!w>d<!g>a<!e>y <B><!z></B></P></FONT>=

              <P><FONT size=3D4>1-720-834-2989</FONT></P>
              <FONT 
      size=3D+0>
      <P>&nbsp;<!o>(<!i>7<!n> <!x>d<!u>ay<!l>s a<!g> w<!d>ee<!z>k<!m>)<!l>=
 <!y><!x><BR><BR><B>C<!t>on<!y>f<!f>id<!z>en<!n>t<!u>iali<!w>t<!j>y<!z> a<=
!r>ssured!</B> <BR>&nbsp;</FONT></P>
      <P><FONT size=3D4><SPAN lang=3Dzh-cn>W</SPAN></FONT><FONT size=3D+0>=
<FONT 
      size=3D4><SPAN lang=3Dzh-cn>e are located in USA&nbsp; international=
 callers 
      are very 
welcome</SPAN></FONT></P></CENTER></FONT></OI></LI></TD></TR></TBODY></TAB=
LE></CENTER></BODY></HTML>


----913927519499433574--

From WEJQK@nmvp.net Tue Mar  2 19:07:32 2004
Return-Path: <WEJQK@nmvp.net>
Received: from 160.36.58.108 ([218.208.21.6])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2307OCn025956;
	Tue, 2 Mar 2004 19:07:27 -0500 (EST)
Message-ID: <ORMMBUKUZEBJSLHASSMKDTG@angelsharp.com>
From: "Dionne Gleason" <WEJQK@nmvp.net>
To: blast-funct-archive@netlib2.cs.utk.edu,
   blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: Are you serious?
Date: Wed, 03 Mar 2004 04:59:40 +0500
X-Mailer: carryover changeover
goblet-flippant: wineskin aristotelean polyphemus
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--144249775675873501"

----144249775675873501
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title>Get paid for what you think</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<table width=3D"75%" border=3D"1">
  <tr>
    <td><p align=3D"center">&nbsp;</p>
      <p align=3D"center"><strong>We're looking for people who are serious=
 about 
        being paid for their opinions</strong></p>
      <p align=3D"center"><strong>sign up <a href=3D"http://www.globalmark=
eting2000.biz/surveys">here</a></strong></p>
      <p align=3D"center"><strong><br>
        </strong></p></td>
  </tr>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><font size=3D"2">to get off our database <a href=3D"http://www.globalma=
rketing2000.biz/remove.html">follow 
  this link</a></font></p>
</body>
</html>


----144249775675873501--

From bezqq7@spray.se Wed Mar  3 08:06:41 2004
Return-Path: <bezqq7@spray.se>
Received: from 160.36.58.108 ([202.39.238.34])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i23D6aCn005335;
	Wed, 3 Mar 2004 08:06:38 -0500 (EST)
Received: from 208.248.182.48 by 202.39.238.34; Wed, 03 Mar 2004 08:07:20 -0500
Message-ID: <LKRIEMIPSIXXWGETFNRLQPSM@hkstar.com>
From: "Emil Hurley" <bezqq7@spray.se>
Reply-To: "Emil Hurley" <bezqq7@spray.se>
To: blast-nearterm-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu
Subject: Wa.nt t.o Bloc.k Sp,,am from yo.ur inb-ox Blast-nearterm-archive?
Date: Wed, 03 Mar 2004 08:07:20 -0500
X-Mailer: 
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--937466908676932574"

----937466908676932574
Content-Type: text/html;
Content-Transfer-Encoding: 7Bit

<html><body><P>Hello,</P><P>This pro.gram wo.rked for me. If you hate S_pa_m like I do, you&nbsp;&nbsp; o w e&nbsp;&nbsp; it to your self to try this pro-gram, and forward this email to all of your fri.ends which also hate &nbsp;S+P_A+M &nbsp;or as many people possi.ble. Together lets help clear the Internet of&nbsp; S+P*A+M!</P><P>STOP&nbsp;&nbsp; .S_P*A+M&nbsp;&nbsp; IN ITS TR.ACKS!</P><P>Do you get jun.k, scams and wo.rse in your i.nbox every day? </P><P>Are you sic.k of s.pending valuable time re.movi.ng the trash? </P><P>Is your ch.ild recei.ving inappro.priate a_d*u_l*t&nbsp; material? </P><P>If so you sh.ould know that no othe.r solution wo.rks <BR>better then our softw.are to return con.trol of your <BR>e.mail back where it belo.ngs! </P><P>Ima.gine being abl.e to read your impor.tant em.ail <BR>without loo.king thr.ough all that s*p+a*m... </P><P>C.lic_k bel.ow to vist our website:<BR></P><P><A href="http://www.webdealz.info/gh/as/index.asp?affil=heaven">http://www.Stop8The6SP_AM3Already 52191.com</A></P><P>&nbsp;</P><A href="http://www.webdealz.info/gh/r/r.asp"><P>R.e-m_o^v*e&nbsp;&nbsp;&nbsp;_35678&nbsp;  &nbsp;M,e_50676</P></A></body></html>

----937466908676932574--

From IIFNVC@pmarine.ee Thu Mar  4 03:48:31 2004
Return-Path: <IIFNVC@pmarine.ee>
Received: from 160.36.58.108 (CacheFlowServer@[200.23.188.18])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i248mRCn021508
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 4 Mar 2004 03:48:30 -0500 (EST)
Received: from 60.82.75.202 by 200.23.188.18; Thu, 04 Mar 2004 09:41:34 +0100
Message-ID: <CTTOLEVHLAFTINALBYFQRZVJZ@marlinss.cc>
From: "Bernardo Richmond" <IIFNVC@pmarine.ee>
Reply-To: "Bernardo Richmond" <IIFNVC@pmarine.ee>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Free Play Tournament Thu, 04 Mar 2004 02:49:34 -0600
Date: Thu, 04 Mar 2004 11:44:34 +0300
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--8848111778154182247"
X-Priority: 3
X-IP: 20.216.215.232

----8848111778154182247
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!doctype html public "-//w3c//dtd html 4.0 transitional//en">
<html>
<head>
   <meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8=
859-1">
   <meta name=3D"GENERATOR" content=3D"Mozilla/4.77 [en] (Windows NT 5.0; =
U) [Netscape]">
</head>
<body text=3D"#000000" bgcolor=3D"#000066" link=3D"#0000EE" vlink=3D"#551A=
8B" alink=3D"#FF0000">
amos halley devotee phthalate sepal unchristian cavemen solenoid newel ken=
ya dachshund hormone bilge wallis annulled rilly behind autistic canoga ho=
lyoke cry despot adaptive chester countrymen schuyler demodulate shagbark =
elite diamond cola floodgate=20
aging spatula raw monopoly embedder apport amsterdam kidney cereal alma ca=
nny iron silken given byers hedonism plaintive sidecar cub sears begetting=
 slouch congruent popular erudition deductible ernestine dryden healey wer=
t marino catheter autograph marimba asphyxiate richard effusion churchgo d=
ogging=20
monad sat wrench temerity cheerlead apollonian harvest borroughs doorbell =
rajah advance fusillade hellfire compassionate concerti latrobe harvestman=
=20
badge ideal inscribe elsie clime helium flutter sonic splice fermium artwo=
rk remitted=20
slick chaos chevrolet marcia bandwagon faa assam han poverty willie trestl=
e indelicate conjuncture=20
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"802" border=
color=3D"#F7C700" >
<tr>
<td WIDTH=3D"835">
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 >
<tr>
<td WIDTH=3D"800">
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"800" HEIGHT=3D"=
19" >
<tr>
<td WIDTH=3D"394"><img SRC=3D"http://warp2casino.org/images/internet_casin=
os_01.jpg" height=3D67 width=3D394></td>

<td WIDTH=3D"428"><img SRC=3D"http://warp2casino.org/images/internet_casin=
os_02.jpg" height=3D67 width=3D406></td>
</tr>

<tr>
<td><img SRC=3D"http://warp2casino.org/images/internet_casinos_03.jpg" hei=
ght=3D46 width=3D394></td>

<td><img SRC=3D"http://warp2casino.org/images/internet_casinos_04.jpg" hei=
ght=3D46 width=3D406></td>
</tr>

<tr>
<td COLSPAN=3D"2" HEIGHT=3D"19" BACKGROUND=3D"http://warp2casino.org/image=
s/internet_casinos_bg.jpg">&nbsp;</td>
</tr>
</table>
</td>
</tr>

<tr>
<td ALIGN=3DCENTER BGCOLOR=3D"#CC0000">
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"750" >
<tr ALIGN=3DCENTER>
<td COLSPAN=3D"3"><img SRC=3D"http://warp2casino.org/images/main_promos_to=
p.jpg" height=3D107 width=3D750></td>
</tr>

<tr>
<td ALIGN=3DCENTER VALIGN=3DTOP WIDTH=3D"186">
<FONT SIZE=3D"-2">&nbsp;</font>
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D1 WIDTH=3D"183" HEIGHT=3D"=
57" >
<tr>
<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"36" HEIGHT=3D"19"><img SRC=3D"http:=
//warp2casino.org/images/step1.gif" height=3D15 width=3D39></td>

<td ALIGN=3DLEFT WIDTH=3D"147"><b><font face=3D"Verdana"><font color=3D"#F=
FFFFF"><font size=3D-1><A hREf=3D"http://warp2casino.org/downloads/CasinoS=
etup.msi">Download</A> Our Free Casino Interface</font></font></font></b><=
/td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/step2.gif" hei=
ght=3D15 width=3D39></td>

<td ALIGN=3DLEFT class=3D"style5"><b><font face=3D"Verdana"><font size=3D-=
1><font color=3D"#FFFFFF">Register An Account - </font><font color=3D"#FFF=
F00">(FREE)</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/step3.gif" hei=
ght=3D15 width=3D39></td>

<td ALIGN=3DLEFT class=3D"style5"><b><font face=3D"Verdana"><font color=3D=
"#FFFFFF"><font size=3D-1>Begin To Play!</font></font></font></b></td>
</tr>
</table>
<FONT SIZE=3D"-2">&nbsp;</font>
<table BORDER=3D2 CELLSPACING=3D0 CELLPADDING=3D2 WIDTH=3D"175" HEIGHT=3D"=
57" BGCOLOR=3D"#FFFF00" >
<tr>
<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"15" HEIGHT=3D"19"><img SRC=3D"http:=
//warp2casino.org/images/dot.gif" height=3D15 width=3D15></td>
<td ALIGN=3DLEFT WIDTH=3D"118"><b><font face=3D"Verdana"><font color=3D"#0=
00000"><font size=3D-1>Free To Play</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/dot.gif" heigh=
t=3D15 width=3D15></td>
<td ALIGN=3DLEFT class=3D"style6"><b><font face=3D"Verdana"><font color=3D=
"#000000"><font size=3D-1>Safe &amp; Secure</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/dot.gif" heigh=
t=3D15 width=3D15></td>
<td ALIGN=3DLEFT class=3D"style6"><b><font face=3D"Verdana"><font color=3D=
"#000000"><font size=3D-1>24 / 7 Support</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/dot.gif" heigh=
t=3D15 width=3D15></td>
<td ALIGN=3DLEFT class=3D"style6"><b><font face=3D"Verdana"><font color=3D=
"#000000"><font size=3D-1>Fair Gaming Cert.</font></font></font></b></td>
</tr>

<tr>
<td HEIGHT=3D"19"><img SRC=3D"http://warp2casino.org/images/dot.gif" heigh=
t=3D15 width=3D15></td>
<td ALIGN=3DLEFT class=3D"style6"><b><font face=3D"Verdana"><font color=3D=
"#000000"><font size=3D-1>Complete Privacy</font></font></font></b></td>
</tr>
</table>
</td>

<td ALIGN=3DCENTER VALIGN=3DTOP WIDTH=3D"384"><img SRC=3D"http://warp2casi=
no.org/images/main_promos_collage.jpg" height=3D245 width=3D382></td>

<td ALIGN=3DRIGHT VALIGN=3DTOP WIDTH=3D"185">
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"184" HEIGHT=3D"=
75" >
<tr>
<td ALIGN=3DRIGHT WIDTH=3D"184"><a hREF=3D"http://warp2casino.org/download=
s/CasinoSetup.msi"><img SRC=3D"http://warp2casino.org/images/newest_casino=
_games.gif" border=3D0 height=3D32 width=3D184></A></td>
</tr>

<tr>
<td>
<center><img SRC=3D"http://warp2casino.org/images/games.gif" height=3D82 w=
idth=3D180></center>
</td>
</tr>
</table>
<center><a hREf=3D"http://warp2casino.org/downloads/CasinoSetup.msi"><img =
SRC=3D"http://warp2casino.org/images/download_here_help.gif" border=3D0 he=
ight=3D49 width=3D180></A>
<br><img SRC=3D"http://warp2casino.org/images/payouts_98.gif" height=3D74 =
width=3D175></center>
</td>
</tr>

<tr ALIGN=3DCENTER>
<td COLSPAN=3D"3"><img SRC=3D"http://warp2casino.org/images/main_promos_li=
ne.jpg" height=3D8 width=3D750>
<br><b><font face=3D"Verdana"><font color=3D"#FFFF00"><font size=3D+3>WELC=
OME To Internet Casino's</font></font></font></b>
<br><b><font face=3D"Verdana"><font color=3D"#FFFFFF"><font size=3D+3>2004=
 FreePlay Tournament</font></font></font></b>
<br><b><font face=3D"Verdana"><font color=3D"#FFFF00"><font size=3D+3>$10,=
000 Guaranteed Prize Pool!</font></font></font></b>
<p><a hRef=3D"http://warp2casino.org/downloads/CasinoSetup.msi"><img SRC=3D=
"http://warp2casino.org/images/download_here_help.gif" border=3D0 height=3D=
49 width=3D180></A>
<br>&nbsp;
<table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D0 WIDTH=3D"740" HEIGHT=3D"=
20" >
<tr>
<td WIDTH=3D"740" BGCOLOR=3D"#FFFFFF">
<ul class=3D"style4">&nbsp;
<center>
<br><b><font face=3D"Arial,Helvetica">***You must be 18 years of age or ol=
der to participate***</font></b></center>

<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>How Do I Enter?</font=
></font></b>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>You simply download our=
 <a HreF=3D"http://warp2casino.org/downloads/CasinoSetup.msi">casino softw=
are</a> and open a free account.</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>How Many Times Can I =
Enter</font></font></b>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>You may enter this tour=
nament 1 times only.&nbsp; The use of multiple registrations will result i=
n permanent disqualification.</font></font>
<p><b><font face=3D"Arial,Helvetica"><font size=3D-1>How Much Does It Cost=
 To Enter</font></font></b>
<br><font face=3D"Arial,Helvetica"><font size=3D-1>There is no fee to ente=
r the tournament, you do not have to make a deposit nor do you need to reg=
ister with a credit card.&nbsp; It's FREE!</font></font>
<br>&nbsp;
<center><table BORDER=3D0 CELLSPACING=3D0 CELLPADDING=3D5 WIDTH=3D"700" >
<tr>
<td ALIGN=3DLEFT VALIGN=3DTOP WIDTH=3D"175">
<table BORDER CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D2 WIDTH=3D"170" BGCOL=
OR=3D"#FFFFCC" >
<tr>
<td COLSPAN=3D"2" WIDTH=3D"50" BGCOLOR=3D"#FFCC99">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D+1>=
PRIZE POOL</font></font></font></b>
<br><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-2>234 =
Paid Positions</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
1st</font></font></font></b></center>
</td>

<td WIDTH=3D"90">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$2500</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
2nd</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$1000</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
3rd</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$500</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
4th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$125</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
5th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
6th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
7th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
8th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
9th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
10th</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$50</font></font></font></b></center>
</td>
</tr>

<tr>
<td WIDTH=3D"80">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
11-234</font></font></font></b></center>
</td>

<td>
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$25</font></font></font></b></center>
</td>
</tr>

<tr>
<td BGCOLOR=3D"#FFCC99">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
TOTAL</font></font></font></b></center>
</td>

<td BGCOLOR=3D"#FFCC99">
<center><b><font face=3D"Verdana"><font color=3D"#000000"><font size=3D-1>=
$10,000</font></font></font></b></center>
</td>
</tr>
</table>
</td>

<td ALIGN=3DLEFT VALIGN=3DCENTER WIDTH=3D"525">
<center><b><font face=3D"Arial,Helvetica"><font color=3D"#000000">RULES &a=
mp; DIRECTIONS FOR PLAY</font></font></b></center>

<p><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-1>=
All Entrants Start With $1000 in Tournament Credits</font></font></font>
<p><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-1>=
Play any of the casino games.&nbsp; Try to play with that $1000 for as lon=
g as possible until your account reaches zero or the tournament ends.&nbsp=
; You can log out and log back in to continue play at any time.&nbsp;</fon=
t></font></font>
<p><font face=3D"Arial,Helvetica"><font size=3D-1><font color=3D"#000000">=
Every time you place a bet, you are credited with an equal number of rollo=
ver points.&nbsp; At the end of the tournament, the top 234 players with t=
he most rollover points win the cash prizes in the table to the left. </fo=
nt>The Top Scores can be viewed at all times</font></font>
<p><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-1>=
This Tournament will begin on 29th of February 2004 and closing will be on=
 March the 7th 11:59.59 pm 2004. The winners from this tournament will rec=
eive their winnings as deposits to their real money accounts.&nbsp; These =
monies may be played in any of our casino games.&nbsp; Winnings may be wit=
hdrawn via check or wire subject to the following limitations.&nbsp;</font=
></font></font>
<blockquote><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font s=
ize=3D-2>1.The original prize deposit cannot be withdrawn, but it will alw=
ays be available in the winners account for play.&nbsp; Only the winings b=
eyond this amount may be withdrawn</font></font></font>
<br><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-2=
>2.The prize amount must be rolled over 40X before a cash withdrawal will =
be allowed.</font></font></font></blockquote>

<center><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D=
-1>The winners will be determined on March 8th and notified via email.&nbs=
p; All winners and</font></font></font>
<br><font face=3D"Arial,Helvetica"><font color=3D"#000000"><font size=3D-1=
>top scores will be posted on our web-site for review during and after the=
 tournament.</font></font></font></center>
</td>
</tr>
</table></center>

<center>
<p><b><font face=3D"Verdana"><font size=3D+1><A HreF=3D"http://warp2casino=
org/downloads/CasinoSetup.msi">SIGN-UP and Start Playing Today!</A></font=
></font></b>
<br><b><font face=3D"Verdana"><font size=3D+1>Your Odds Of Winning Couldn'=
t Be Better</font></font></b></center>
</ul>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
</tr>

<tr>
<td COLSPAN=3D"2" HEIGHT=3D"19" BACKGROUND=3D"http://warp2casino.org/image=
s/internet_casinos_bg.jpg"></td>
</tr>
</table>
</td>
</tr>
</table></center>
<BR>
<BR>
<CENTER><table BORDER=3D1 CELLSPACING=3D0 CELLPADDING=3D5 COLS=3D1 WIDTH=3D=
"800" BGCOLOR=3D"#FFFFCC" >
<tr>
<td>
<CENTER><font face=3D"Verdana"><font size=3D-2>To get off of this mailing,=
 please click here: <A hREF=3D"http://warp2casino.org/r.html" TARGET=3D"_B=
LANK">242.37.244.252</A></font></font></CENTER>
</td>
</tr>
</table></center>
tortuous scops believe mutagen vernon evasion nouakchott ottawa diamagneti=
c sine zeroth=20
buffoon encomia landowner antarctica gardenia lennox scud finessing recurr=
ent edmonds collegian andover disastrous rhyme ginkgo chamomile niece anam=
orphic loathsome mattress bead heliocentric shrill bland introduce system =
value spigot anything bach=20
beset bagley germicidal gorton incomprehensible cartilaginous pleistocene =
boulevard cynic gabriel mig discern=20
beowulf extrusion pudding scutum cochineal abusable labia difficulty angie=
 bub orgy uninominal clang dragoon detroit cobweb goldberg architect=20
chalky flashlight buddhism coherent picturesque sprue bystander chantey ar=
ound blackburn chime welles militarist lafayette mien makeshift plover dee=
mphasize solvent breakoff highest=20
</body>
</html>


----8848111778154182247--


From XDOJFJFN@e-mdc.net Thu Mar  4 06:43:30 2004
Return-Path: <XDOJFJFN@e-mdc.net>
Received: from 200-161-1-209.dsl.telesp.net.br (200-161-1-209.dsl.telesp.net.br [200.161.1.209])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i24BhMCp026790;
	Thu, 4 Mar 2004 06:43:28 -0500 (EST)
Message-ID: <UEJTINLNCERQKPGMEPYJCU@gallierandwittenberg.com>
From: "Marcelino Pina" <XDOJFJFN@e-mdc.net>
To: blast-parallel-archive@netlib2.cs.utk.edu
Cc: blast-sparse-archive@netlib2.cs.utk.edu
Subject: get a university diploma even if you don't deserve it!
Date: Thu, 04 Mar 2004 04:40:00 -0700
X-Mailer: enterprise irresistible
merit-judicable: mundane bib eclectic
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--11766557878294340565"

----11766557878294340565
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<HTML><HEAD><TITLE>GET</TITLE>
<META http-equiv=3DContent-Language content=3Den-us>
<META content=3D"MSHTML 6.00.2737.800" name=3DGENERATOR>

<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dwindows-12=
52">
<STYLE>DIV.Section1 {
	page: Section1
}
</STYLE>
</HEAD>
<BODY>
<CENTER>
<TABLE borderColor=3D#049dd0 cellSpacing=3D0 cellPadding=3D7 width=3D500 b=
gColor=3D#ffffff 
border=3D1>
  <TBODY>
  <TR>
    <TD vAlign=3Dtop align=3Dleft width=3D500>
      <CENTER>
      <P><FONT size=3D+0><B>GET<!k> Y<!r>OU<!d>R <!u>UN<!y>I<!b>VE<!j>R<!m=
>S<!n>I<!q>T<!y>Y<!c> 
      D<!v>I<!c>P<!l>L<!b>O<!t>MA</B><BR><BR><!p><!p>D<!k>o<!r> <!n>yo<!p>=
u<!m> <!n>wan<!n>t<!s> <!u>a<!r> <!l>pr<!d>os<!h>p<!j>e<!x>r<!q>o<!w>u<!g>=
s<!e> 
      fut<!t>ure,<!m> in<!c>cr<!k>ea<!x>s<!z>e<!o>d<!i> <!n>e<!x>a<!u>rn<!=
l>ing<!g> p<!d>ow<!z>e<!m>r<!l><BR><!y><!x>m<!t>or<!y>e<!f> m<!z>on<!n>e<!=
u>y 
an<!w>d<!j> <!z>th<!r>e respec<!b>t<!w> <!e>of a<!x>l<!l>l?<BR><BR><!c>Ca<=
!b>ll <!i>t<!s>hi<!g>s<!b> <!c>numbe<!i>r<!q>:<!u>&nbsp; </FONT></P>
            <FONT size=3D4> 
            <P>1-720-834-2989 </P>
            </FONT>
            <P><FONT size=3D+0><!f>(24<!p> 
      h<!f>ou<!k>rs<!k>)<BR><BR>&nbsp;<OI></P></CENTER>
      <LI>T<!r>he<!d>re<!u> a<!y>r<!b>e <!j>n<!m>o<!n> 
<!q>r<!y>e<!c>qu<!v>i<!c>r<!l>e<!b>d<!t> tes<!p>t<!p>s<!k>,<!r> 
<!n>cl<!p>a<!m>s<!n>ses<!n>,<!s> <!u>b<!r>o<!l>ok<!d>s,<!h> <!j>o<!x>r<!q>=
 
<!w>i<!g>n<!e>terv<!t>iews<!m>!<BR>&nbsp; 
      <LI>Ge<!c>t <!k>a <!x>B<!z>a<!o>c<!i>h<!n>e<!x>l<!u>or<!l>s, <!g>Ma<=
!d>st<!z>e<!m>r<!l>s<!y>,<!x> <!t>MB<!y>A<!f>, <!z>an<!n>d<!u> Doc<!w>t<!j=
>o<!z>ra<!r>te (PhD)<!b> <!w>d<!e>iplo<!x>m<!l>a!<BR>&nbsp; 
      <LI>R<!c>ece<!b>ive<!i> <!s>th<!g>e<!b> <!c>benef<!i>i<!q>t<!u>s a<!=
o>n<!f>d <!s>ad<!v>m<!t>ir<!o>a<!q>tion<!f> th<!p>at<!f> c<!k>om<!k>es<!r>=
 w<!d>it<!u>h <!y>a<!b> d<!j>i<!m>p<!n>l<!q>o<!y>m<!c>a!<!v><BR>&nbsp; 
      <LI>N<!c>o<!l> <!b>o<!t>ne i<!p>s<!p> <!k>t<!r>u<!n>rn<!p>e<!m>d<!n>=
 do<!n>w<!s>n<!u>!<!r> <BR><BR>&nbsp; 
      <CENTER><!l>
      <P>C<!d>al<!h>l<!j> <!x>T<!q>o<!w>d<!g>a<!e>y <B><!z></B></P></FONT>=

              <P><FONT size=3D4>1-720-834-2989</FONT></P>
              <FONT 
      size=3D+0>
      <P>&nbsp;<!o>(<!i>7<!n> <!x>d<!u>ay<!l>s a<!g> w<!d>ee<!z>k<!m>)<!l>=
 <!y><!x><BR><BR><B>C<!t>on<!y>f<!f>id<!z>en<!n>t<!u>iali<!w>t<!j>y<!z> a<=
!r>ssured!</B> <BR>&nbsp;</FONT></P>
      <P><FONT size=3D4><SPAN lang=3Dzh-cn>W</SPAN></FONT><FONT size=3D+0>=
<FONT 
      size=3D4><SPAN lang=3Dzh-cn>e are located in USA&nbsp; international=
 callers 
      are very 
welcome</SPAN></FONT></P></CENTER></FONT></OI></LI></TD></TR></TBODY></TAB=
LE></CENTER></BODY></HTML>


----11766557878294340565--

From mukkfbh@cc.niigata-u.ac.jp Thu Mar  4 12:12:21 2004
Return-Path: <mukkfbh@cc.niigata-u.ac.jp>
Received: from chello080108092133.22.11.vie.surfer.at (chello080108092133.22.11.vie.surfer.at [80.108.92.133])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i24HC8Cn020933;
	Thu, 4 Mar 2004 12:12:10 -0500 (EST)
Received: from (HELO kvu) [75.123.66.113] by chello080108092133.22.11.vie.surfer.at; Thu, 04 Mar 2004 15:08:49 -0200
Message-ID: <3-8a3--$977vut$r4@xism8nh3t>
From: "Melva Acosta" <mukkfbh@cc.niigata-u.ac.jp>
Reply-To: "Melva Acosta" <mukkfbh@cc.niigata-u.ac.jp>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Score big gains on this pick with the click of a mouse zfaens vsk  c
Date: Thu, 04 Mar 04 15:08:49 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="CDB_09B.7A"
X-Priority: 3
X-MSMail-Priority: Normal


--CDB_09B.7A
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Market Mover Stock Report's Last Pick (CWTD) exploded from $1.19 to 
$9.20, a gain of over 670% in 5 days (Feb 12 - 17)!!!

Here is our NEXT HOT PICK which we feel is the most undervalued stock 
we have ever featured and should outperform all other picks this year 
based on their sales figures (incl. a backlog of over $100 Million), 
incredibly solid numbers, and low outstanding share total.

Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)
Current Price: 1.50
Near-Term Target: 6.00
Projected High for '04: 15.00

We are sending this URGENT INVESTOR BULLETIN REVEALING THE MOST 
UNDERVALUED STOCK ON THE OTCBB to our millions of subscribers for substant=
ial 
profits immediately! 
Sales orders received by LETH exceed $150 Million over the past year 
while major news was just released that adds multi-millions to the bottom =

line. LETH has experienced a recent spike in price and volume 
indicating heavy accumulation of shares which is a sign of even bigger thi=
ngs to 
come for this emerging world leader in the conversion of waste 
materials into electrical energy, an industry with such high global demand=
 that 
it is impossible to assign a value to the size of the market.

Solving a Dual Crisis - Waste and Energy:

LETH is utilizing the unique proprietary technology of their Biosphere 
Process System to generate revenue from the disposal of a wide variety 
of waste products at 5 to 7 tons per hour which makes a major impact on 
the global waste problem. This profitable and environmentally safe 
process converts into clean, "green" electricity such waste materials as 
Municipal Solid Waste, agricultural wastes, forestry wastes, medical 
wastes, industrial wastes, sewage sludge, shale oil, sour natural gas, and=
 
the huge market of used tires. LETH profits from the sale of 
electricity created from the waste conversion on a continuous basis by gen=
erating 
5 to 10 mega-watts per hour of electricity which is then sold to 
replenish the local or national grid.

(Mar 3 '04) LETH Releases Major Product Delivery and Net Profit News

LETH delivered 12 Biosphere Process Systems which resulted in a net 
profit of $3.5 Million, the equivalent of .12 cents per share. LETH is 
scheduled to receive an additional $7 Million translating into an 
additional .24 cents per share which is the balance of this completed cont=
ract 
over the next 6 months. The net profit per share from just this single 
contract would value the stock above $6 by calculating the .36 cents 
per share total at an average industry PE of 18 - 22. 

Examining LETH - By The Numbers:

Total Assets: 36.8 Million =3D 1.26 per share of assets
Cash: 23.4 Million =3D .80 cents per share of cash
Shares Outstanding: 29 million (down from 31.8 million) after 2.8 
million shares retired in Feb. '04
Additional Shares to be Retired: 1.3 million per Company press release
Estimated Shares in Float: 7 million
Completed Biosphere Process Systems Now in Operation: 26

Record Backlog of Sales for LETH:

During the past year, over 20 additional Biosphere Process Systems have 
been ordered, which upon completion represents a backlog exceeding over 
$100 Million in upcoming sales. Many of these contractual agreements 
include options for the purchase of additional Biosphere Systems in the 
future once the initial order has been completed. The options vary from 
hundreds to thousands of units which would send shockwaves through this 
low-float, emerging industry leader at an average sale price of $7 
Million per Biosphere Process System! 

LETH's Blue Chip Partner - Fortifying the System:

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $20) a 
leader and one of the largest providers in environmental, mechanical, 
and electrical management consulting services primarily for the US 
Government with annual sales of $800 Million. Tetra Tech will coordinate t=
he 
securing of necessary permits, installation, and continuous worldwide 
monitoring of the Biosphere Process System for LETH. Tetra Tech is now 
in the process of obtaining Department of Environmental Quality 
permitting for the Biosphere Process in the state of Louisiana. This is a =

monumental event for LETH which opens the floodgates for major project 
revenues in Louisiana while having a parallel effect on LETH stock in the =

form of a huge near-term announcement.

Stock Set to Explode on Earnings Boom:

LETH has the impressive financials and sales already in the pipeline to 
achieve record-setting stock price levels in support of the Company's 
breakout year. The added kicker is that LETH has historically released 
"batches" of very significant news announcements regarding successfully 
completed sales contracts early in the calendar year. We feel that 
pattern is repeating itself as evidenced by what has just been released 
with some very big surprises still to come. There aren't any companies at =

any price level with the technology or exponential sales growth to 
match LETH, while simultaneously containing all the ingredients for major =

profits as global demand to solve two crises areas, waste and electrical 
energy, reaches unprecedented levels. 

Required Market Mover Stock Report (MMSR) Information: MMSR cautions 
that small and micro-cap stocks are high-risk investments and that some 
or all investment dollars can be lost. We suggest you consult a 
professional investment advisor before purchasing any stock. All opinions =

expressed on the featured company are the opinions of MMSR. MMSR recommend=
s 
you use the information found here as an initial starting point for 
conducting your own research and your own due diligence on the featured 
company in order to determine your own personal opinion of the company 
before investing. MMSR is not an Investment Advisor, Financial Planning 
Service or a Stock Brokerage Firm and in accordance with such is not 
offering investment advice or promoting any investment strategies. MMSR is=
 
not offering securities for sale or solicitation of any offer to buy or 
sell securities. MMSR has received twelve thousand dollars from an 
unaffiliated third party for the preparation of this company profile. Sinc=
e 
we have received compensation there is an inherent conflict of interest 
in our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking statements, which=
 are 
based on certain assumptions and expectations involving various risks 
and uncertainties, that could cause results to differ materially from 
those set forth in the forward looking statements.

kinwenb
oyafmb

--CDB_09B.7A--


From l8onruka@adv.es Sat Mar  6 13:33:50 2004
Return-Path: <l8onruka@adv.es>
Received: from chello080109203176.4.graz.surfer.at (lfcjhs@chello080109203176.4.graz.surfer.at [80.109.203.176])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i26IXSCn006323;
	Sat, 6 Mar 2004 13:33:35 -0500 (EST)
Received: from [84.158.32.152] by chello080109203176.4.graz.surfer.at with ESMTP id C6B683F5737; Sat, 06 Mar 2004 22:29:18 +0400
Message-ID: <o$c$4-n9-6gd-$$c2z@m466i.y3eh>
From: "Ora Ransom" <l8onruka@adv.es>
Reply-To: "Ora Ransom" <l8onruka@adv.es>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Profitable company with a strong balance sheet k skupoerc tvmhy
Date: Sat, 06 Mar 04 22:29:18 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2627
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="__4__AFA_EEBD3FC1_.C_.."
X-Priority: 3
X-MSMail-Priority: Normal


--__4__AFA_EEBD3FC1_.C_..
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Market Mover Stock Report's Last Pick (CWTD) exploded from $1.19 to 
$9.20, a gain of over 670% in 5 days (Feb 12 - 17)!!!

Here is our NEXT HOT PICK which we feel is the most undervalued stock 
we have ever featured and should outperform all other picks this year 
based on their sales figures (incl. a backlog of over $100 Million), 
incredibly solid numbers, and low outstanding share total.

Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)
Current Price: 1.85
Near-Term Target: 7.00
Projected High for '04: 15.00

We are sending this URGENT INVESTOR BULLETIN REVEALING THE MOST 
UNDERVALUED STOCK ON THE OTCBB to our millions of subscribers for substant=
ial 
profits immediately! 
Sales orders received by LETH exceed $150 Million over the past year 
while major news was just released that adds multi-millions to the bottom =

line. LETH has experienced a recent spike in price and volume 
indicating heavy accumulation of shares which is a sign of even bigger thi=
ngs to 
come for this emerging world leader in the conversion of waste 
materials into electrical energy, an industry with such high global demand=
 that 
it is impossible to assign a value to the size of the market.

Solving a Dual Crisis - Waste and Energy:

LETH is utilizing the unique proprietary technology of their Biosphere 
Process System to generate revenue from the disposal of a wide variety 
of waste products at 5 to 7 tons per hour which makes a major impact on 
the global waste problem. This profitable and environmentally safe 
process converts into clean, "green" electricity such waste materials as 
Municipal Solid Waste, agricultural wastes, forestry wastes, medical 
wastes, industrial wastes, sewage sludge, shale oil, sour natural gas, and=
 
the huge market of used tires. LETH profits from the sale of 
electricity created from the waste conversion on a continuous basis by gen=
erating 
5 to 10 mega-watts per hour of electricity which is then sold to 
replenish the local or national grid.

(Mar 3 '04) LETH Releases Major Product Delivery and Net Profit News

LETH delivered 12 Biosphere Process Systems which resulted in a net 
profit of $3.5 Million, the equivalent of .12 cents per share. LETH is 
scheduled to receive an additional $7 Million translating into an 
additional .24 cents per share which is the balance of this completed cont=
ract 
over the next 6 months. The net profit per share from just this single 
contract would value the stock above $6 by calculating the .36 cents 
per share total at an average industry PE of 18 - 22. 

Examining LETH - By The Numbers:

Total Assets: 36.8 Million =3D 1.26 per share of assets
Cash: 23.4 Million =3D .80 cents per share of cash
Shares Outstanding: 29 million (down from 31.8 million) after 2.8 
million shares retired in Feb. '04
Additional Shares to be Retired: 1.3 million per Company press release
Estimated Shares in Float: 7 million
Completed Biosphere Process Systems Now in Operation: 26

Record Backlog of Sales for LETH:

During the past year, over 20 additional Biosphere Process Systems have 
been ordered, which upon completion represents a backlog exceeding over 
$100 Million in upcoming sales. Many of these contractual agreements 
include options for the purchase of additional Biosphere Systems in the 
future once the initial order has been completed. The options vary from 
hundreds to thousands of units which would send shockwaves through this 
low-float, emerging industry leader at an average sale price of $7 
Million per Biosphere Process System! 

LETH's Blue Chip Partner - Fortifying the System:

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $20) a 
leader and one of the largest providers in environmental, mechanical, 
and electrical management consulting services primarily for the US 
Government with annual sales of $800 Million. Tetra Tech will coordinate t=
he 
securing of necessary permits, installation, and continuous worldwide 
monitoring of the Biosphere Process System for LETH. Tetra Tech is now 
in the process of obtaining Department of Environmental Quality 
permitting for the Biosphere Process in the state of Louisiana. This is a =

monumental event for LETH which opens the floodgates for major project 
revenues in Louisiana while having a parallel effect on LETH stock in the =

form of a huge near-term announcement.

Stock Set to Explode on Earnings Boom:

LETH has the impressive financials and sales already in the pipeline to 
achieve record-setting stock price levels in support of the Company's 
breakout year. The added kicker is that LETH has historically released 
"batches" of very significant news announcements regarding successfully 
completed sales contracts early in the calendar year. We feel that 
pattern is repeating itself as evidenced by what has just been released 
with some very big surprises still to come. There aren't any companies at =

any price level with the technology or exponential sales growth to 
match LETH, while simultaneously containing all the ingredients for major =

profits as global demand to solve two crises areas, waste and electrical 
energy, reaches unprecedented levels. 

Required Market Mover Stock Report (MMSR) Information: MMSR cautions 
that small and micro-cap stocks are high-risk investments and that some 
or all investment dollars can be lost. We suggest you consult a 
professional investment advisor before purchasing any stock. All opinions =

expressed on the featured company are the opinions of MMSR. MMSR recommend=
s 
you use the information found here as an initial starting point for 
conducting your own research and your own due diligence on the featured 
company in order to determine your own personal opinion of the company 
before investing. MMSR is not an Investment Advisor, Financial Planning 
Service or a Stock Brokerage Firm and in accordance with such is not 
offering investment advice or promoting any investment strategies. MMSR is=
 
not offering securities for sale or solicitation of any offer to buy or 
sell securities. MMSR has received twelve thousand dollars from an 
unaffiliated third party for the preparation of this company profile. Sinc=
e 
we have received compensation there is an inherent conflict of interest 
in our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking statements, which=
 are 
based on certain assumptions and expectations involving various risks 
and uncertainties, that could cause results to differ materially from 
those set forth in the forward looking statements.

bushoyhibcmplasmhy qxmaib ztezluq adu w

--__4__AFA_EEBD3FC1_.C_..--


From anthonygarcia2003@bigpond.com Sun Mar  7 11:39:16 2004
Return-Path: <anthonygarcia2003@bigpond.com>
Received: from mta05ps.bigpond.com (mta05ps.bigpond.com [144.135.25.159])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id i27GdFCn004493;
	Sun, 7 Mar 2004 11:39:16 -0500 (EST)
Received: from lerc-daemon.mta05ps.email.bigpond.com by
 mta05ps.email.bigpond.com
 (iPlanet Messaging Server 5.2 HotFix 1.14 (built Mar 18 2003))
 id <0HU7002OTIMDME@mta05ps.email.bigpond.com>; Sun,
 07 Mar 2004 22:56:38 +1000 (EST)
Received: from email.bigpond.com ([172.26.103.13]) by mta05ps.email.bigpond.com
 (iPlanet Messaging Server 5.2 HotFix 1.14 (built Mar 18 2003))
 with ESMTP id <0HU700MHAIM62I@mta05ps.email.bigpond.com>; Sun,
 07 Mar 2004 22:56:30 +1000 (EST)
Received: from [192.168.115.152] by mailms4aps.email.bigpond.com (mshttpd)
 ; Sun, 07 Mar 2004 04:56:30 -0800
Date: Sun, 07 Mar 2004 04:56:30 -0800
From: anthonygarcia2003 <anthonygarcia2003@telstra.com>
Subject: PLEASE ACKNOWLEDGE MY MAIL
To: blast-ob@CS.UTK.EDU
Message-id: <58cb5958f885.58f88558cb59@email.bigpond.com>
MIME-version: 1.0
X-Mailer: iPlanet Messenger Express 5.2 HotFix 1.14 (built Oct 29 2003)
Content-type: text/plain; charset=us-ascii
Content-language: en
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-Accept-Language: en
Priority: normal



Dear Sir,

I hope you will excuse me for contacting you for a
transaction of this magnitude by e-mail. To douse any
suspicion that may arise, I was advised to explain
this offer to you on a face to face meeting but I have
taken this option not being sure of your reaction.
Please pardon me.

My name is Anthony Garcia, a reputable consultant
broker from Kingston Jamaica. I was hired by a Japanese businessman,whose name was Mr.Takashi to broker an investment deal between him and an oil company in Venezuela. This deal was executed in January 1997 and matured for termination in January 2001.
On maturity, Mr.Takashi and the oil firm decided to
terminate the investment in cash to avoid payment of
several tens of millions of dollars as investment tax due to the American Internal Revenue Service (IRS).

To this effect, a special arrangement was made between
a top Japanese banker working with a Japanese bank in New York, the oil company and the businessman to terminate the investment in cash payment under a fictitious name, with an arrangement to change it later with a Power of Attorney which they prepared and handed over to the top banker. I was directly involved, well paid and mandated to organize
and carry out the deal. All the cash was withdrawn in
August 2001 and transported to Europe by direct bank vault to vault delivery to a private diplomatic storage in Europe for safekeeping pending the collection. The real contents of the boxes were not declared to the storage as it was delivered as personal family treasure and diamonds. The codes for the storage, secret codes for the opening of the
boxes and its keys were all handed over to me.

Mr. Takashi was planning to go to Europe by Mid
November 2001 with me for the collection when the
unexpected happened in the September 11 attacks on
the twin tower which claimed his life and that of the
top banker. This left me devastated and confused as I
have not yet handed over the deposit details to the
owner and the Power of Attorney prepared for the
change which was signed was still with the banker in
his office which was also lost. It was agreed with the
storage the consignment would be collected on or
before 30 months from the date of delivery. Since late
August 2003 the Diplomatic Storage Manager has been
calling me to bring or tell the owner to come over for
collection. For this reason, I have been searching
seriously for any reliable person who can assist us in the collection of these consignments under special and well negotiated arrangement until I came across your details. Be rest assured that this transaction has been well organized, 100% safe, legal, risk free and should be kept very confidential.

Please contact me for more comprehensive details, if
you think we can do this together, via my e-mail :asgarcia003@yahoo.co.uk 

Expecting to hear from you very soon.


Best regards,
Anthony Garcia
 


----------------
Powered by telstra.com
                                                                      


From r67nxi@link.com.eg Sun Mar  7 23:31:26 2004
Return-Path: <r67nxi@link.com.eg>
Received: from 227.79.252.64.snet.net (227.79.252.64.snet.net [64.252.79.227])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i284VFCn020535;
	Sun, 7 Mar 2004 23:31:19 -0500 (EST)
Received: from [104.236.169.222] by 227.79.252.64.snet.net id 8ga0JXUO1yvZ; Mon, 08 Mar 2004 05:30:37 +0100
Message-ID: <89-$vpfz$w$6$se-$2j$-927-3-$q1@34m.xq.ifn>
From: "Luann Davies" <r67nxi@link.com.eg>
Reply-To: "Luann Davies" <r67nxi@link.com.eg>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: SWYC up 350% now LETH on the move jl
Date: Mon, 08 Mar 04 05:30:37 GMT
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="E553FACD.C"
X-Priority: 3
X-MSMail-Priority: Normal


--E553FACD.C
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Market Mover Stock Report's Last Pick (CWTD) exploded from $1.19 to 
$9.20, a gain of over 670% in 5 days (Feb 12 - 17)!!!

Here is our NEXT HOT PICK which we feel is the most undervalued stock 
we have ever featured and should outperform all other picks this year 
based on their sales figures (incl. a backlog of over $100 Million), 
incredibly solid numbers, and low outstanding share total.

Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)
Current Price: 1.85
Near-Term Target: 7.00
Projected High for '04: 15.00

We are sending this URGENT INVESTOR BULLETIN REVEALING THE MOST 
UNDERVALUED STOCK ON THE OTCBB to our millions of subscribers for substant=
ial 
profits immediately! 
Sales orders received by LETH exceed $150 Million over the past year 
while major news was just released that adds multi-millions to the bottom =

line. LETH has experienced a recent spike in price and volume 
indicating heavy accumulation of shares which is a sign of even bigger thi=
ngs to 
come for this emerging world leader in the conversion of waste 
materials into electrical energy, an industry with such high global demand=
 that 
it is impossible to assign a value to the size of the market.

Solving a Dual Crisis - Waste and Energy:

LETH is utilizing the unique proprietary technology of their Biosphere 
Process System to generate revenue from the disposal of a wide variety 
of waste products at 5 to 7 tons per hour which makes a major impact on 
the global waste problem. This profitable and environmentally safe 
process converts into clean, "green" electricity such waste materials as 
Municipal Solid Waste, agricultural wastes, forestry wastes, medical 
wastes, industrial wastes, sewage sludge, shale oil, sour natural gas, and=
 
the huge market of used tires. LETH profits from the sale of 
electricity created from the waste conversion on a continuous basis by gen=
erating 
5 to 10 mega-watts per hour of electricity which is then sold to 
replenish the local or national grid.

(Mar 3 '04) LETH Releases Major Product Delivery and Net Profit News

LETH delivered 12 Biosphere Process Systems which resulted in a net 
profit of $3.5 Million, the equivalent of .12 cents per share. LETH is 
scheduled to receive an additional $7 Million translating into an 
additional .24 cents per share which is the balance of this completed cont=
ract 
over the next 6 months. The net profit per share from just this single 
contract would value the stock above $6 by calculating the .36 cents 
per share total at an average industry PE of 18 - 22. 

Examining LETH - By The Numbers:

Total Assets: 36.8 Million =3D 1.26 per share of assets
Cash: 23.4 Million =3D .80 cents per share of cash
Shares Outstanding: 29 million (down from 31.8 million) after 2.8 
million shares retired in Feb. '04
Additional Shares to be Retired: 1.3 million per Company press release
Estimated Shares in Float: 7 million
Completed Biosphere Process Systems Now in Operation: 26

Record Backlog of Sales for LETH:

During the past year, over 20 additional Biosphere Process Systems have 
been ordered, which upon completion represents a backlog exceeding over 
$100 Million in upcoming sales. Many of these contractual agreements 
include options for the purchase of additional Biosphere Systems in the 
future once the initial order has been completed. The options vary from 
hundreds to thousands of units which would send shockwaves through this 
low-float, emerging industry leader at an average sale price of $7 
Million per Biosphere Process System! 

LETH's Blue Chip Partner - Fortifying the System:

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $20) a 
leader and one of the largest providers in environmental, mechanical, 
and electrical management consulting services primarily for the US 
Government with annual sales of $800 Million. Tetra Tech will coordinate t=
he 
securing of necessary permits, installation, and continuous worldwide 
monitoring of the Biosphere Process System for LETH. Tetra Tech is now 
in the process of obtaining Department of Environmental Quality 
permitting for the Biosphere Process in the state of Louisiana. This is a =

monumental event for LETH which opens the floodgates for major project 
revenues in Louisiana while having a parallel effect on LETH stock in the =

form of a huge near-term announcement.

Stock Set to Explode on Earnings Boom:

LETH has the impressive financials and sales already in the pipeline to 
achieve record-setting stock price levels in support of the Company's 
breakout year. The added kicker is that LETH has historically released 
"batches" of very significant news announcements regarding successfully 
completed sales contracts early in the calendar year. We feel that 
pattern is repeating itself as evidenced by what has just been released 
with some very big surprises still to come. There aren't any companies at =

any price level with the technology or exponential sales growth to 
match LETH, while simultaneously containing all the ingredients for major =

profits as global demand to solve two crises areas, waste and electrical 
energy, reaches unprecedented levels. 

Required Market Mover Stock Report (MMSR) Information: MMSR cautions 
that small and micro-cap stocks are high-risk investments and that some 
or all investment dollars can be lost. We suggest you consult a 
professional investment advisor before purchasing any stock. All opinions =

expressed on the featured company are the opinions of MMSR. MMSR recommend=
s 
you use the information found here as an initial starting point for 
conducting your own research and your own due diligence on the featured 
company in order to determine your own personal opinion of the company 
before investing. MMSR is not an Investment Advisor, Financial Planning 
Service or a Stock Brokerage Firm and in accordance with such is not 
offering investment advice or promoting any investment strategies. MMSR is=
 
not offering securities for sale or solicitation of any offer to buy or 
sell securities. MMSR has received twelve thousand dollars from an 
unaffiliated third party for the preparation of this company profile. Sinc=
e 
we have received compensation there is an inherent conflict of interest 
in our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking statements, which=
 are 
based on certain assumptions and expectations involving various risks 
and uncertainties, that could cause results to differ materially from 
those set forth in the forward looking statements.

r k j po kvr

--E553FACD.C--


From dce3ptv@zaz.com.br Mon Mar  8 19:34:04 2004
Return-Path: <dce3ptv@zaz.com.br>
Received: from 160.36.58.108 ([212.253.20.2])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i290XdCn025432;
	Mon, 8 Mar 2004 19:33:47 -0500 (EST)
Received: from [28.238.57.219] by 160.36.58.108 id sGzI6azU87A1; Tue, 09 Mar 2004 02:29:59 +0200
Message-ID: <b15l8-g--7fa69$aj6i@8oph71kqd>
From: "Nikki Stanley" <dce3ptv@zaz.com.br>
Reply-To: "Nikki Stanley" <dce3ptv@zaz.com.br>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: The 2004 edition of The American Medical Directory geriatrics, anaesthesiology, l
Date: Tue, 09 Mar 04 02:29:59 GMT
X-Mailer: QUALCOMM Windows Eudora Version 5.1
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="AF.3C30FA38_.8F4F3C.8E"
X-Priority: 3
X-MSMail-Priority: Normal


--AF.3C30FA38_.8F4F3C.8E
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

EXCLUSIVELY ON CD-ROM

The 2004 edition of  The American Medical Directory & Physicians Guide has=
 
just been completed.
  
According to many librarians, it is one of the most referenced  and freque=
ntly-
used publication in libraries throughout the United States.
 
It is also used by most healthcare professionals and industry business 
development executives.

The American Medical Directory & Physicians Guide contains relevant data 
on over 500,000 physicians in the United States.
 
Each record is indexed by such features as name, address, phone/fax, count=
y, 
year licensed, type of practice, type of physician, as well as primary and=
 
secondary specialty.

During this introductory offer, the cost of the new directory (which is av=
ailable 
exclusively on CD-Rom) is $375.00 (reg. $795).   

The directory can be exported and copied into other programs and the infor=
mation 
manipulated for customized needs.
  
It is also offered on an unlimited use basis.

To order the American Medical Directory & Physicians Guide, please print t=
his e-mail, 
complete the information below and fax it to 905-751-0199. (tel: 905-751-0=
919).

NAME:

TITLE:

ORGANIZATION:

ADDRESS:

CITY:

POSTAL:

TEL:

FAX:

E-MAIL:

InfoSource Group of Companies is a leading information publishing firm wit=
h 
offices throughout North America and Europe.

ptsgblwgqqaeqfwhpkacdcsjginqxlqbkumttdcx jmjqoz
mj agij ch
i 
sqb e vgh y

--AF.3C30FA38_.8F4F3C.8E--


From info9@ecom-universe.net Tue Mar  9 09:10:55 2004
Return-Path: <info9@ecom-universe.net>
Received: from 160.36.58.108 ([218.19.4.124])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i29EAmCn019854;
	Tue, 9 Mar 2004 09:10:51 -0500 (EST)
Received: from 72.70.192.75 by 218.19.4.124; Tue, 09 Mar 2004 06:11:34 -0800
Message-ID: <VIGEDQPQLLBJSKZNTRQMMH@>
From: "Rose" <info9@ecom-universe.net>
Reply-To: "Rose" <info9@ecom-universe.net>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-nearterm-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: Where Does Your Website Rank......
Date: Tue, 09 Mar 2004 06:11:34 -0800
X-Mailer: 
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--2966872357363903"

----2966872357363903
Content-Type: text/plain;
Content-Transfer-Encoding: 7Bit

Is your website in the top 10 listings? Are you getting the traffic you need these days? 

Top 10 placement puts you in front of 87% of the entire searches on the Internet!

On an average day, you'll find at least 340 million people accessing the search engines to find new businesses where they can purchase services/products.

Can they find your website?

If you are not in these top slots then you are not making the money you should be!

Our clients have come to expect a 300-500% growth in sales and traffic from the first-rate optimization service we provide them. Our search engine optimization team is a group of highly skilled individuals whose level of expertise is unmatched in this industry.


To see how your websites rank 


http://www.marketgains.net











To be taken off from our mailing list please go here.

http://www.financialbuilder.info/takeoff.html


BROI
1250 E. Hallandale Beach Blvd., 
Hallandale, Florida 33009 USA




----2966872357363903--

From r66wcrxwve@bih.net.ba Tue Mar  9 10:38:27 2004
Return-Path: <r66wcrxwve@bih.net.ba>
Received: from ideaone-242-73.ideaone.net (ideaone-242-73.ideaone.net [64.21.242.73])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i29FcFCn022244;
	Tue, 9 Mar 2004 10:38:21 -0500 (EST)
Received: from [188.219.177.81] by ideaone-242-73.ideaone.net id <9539257-05599>; Tue, 09 Mar 2004 08:36:36 -0700
Message-ID: <7ej7-1--5r5a@ian.5v.r7c.g2c>
From: "Dick Tatum" <r66wcrxwve@bih.net.ba>
Reply-To: "Dick Tatum" <r66wcrxwve@bih.net.ba>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: real, certifiable university degrees for sale
Date: Tue, 09 Mar 04 08:36:36 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2627
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="CFA22E.2DBAF.5_.95_ED"
X-Priority: 3
X-MSMail-Priority: Normal


--CFA22E.2DBAF.5_.95_ED
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<HTML><HEAD><TITLE>GET</TITLE>
<META http-equiv=3DContent-Language content=3Den-us>
<META content=3D"MSHTML 6.00.2737.800" name=3DGENERATOR>

<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dwindows-12=
52">
<STYLE>DIV.Section1 {
	page: Section1
}
</STYLE>
</HEAD>
<BODY>
<CENTER>
<TABLE borderColor=3D#049dd0 cellSpacing=3D0 cellPadding=3D7 width=3D500 b=
gColor=3D#ffffff 
border=3D1>
  <TBODY>
  <TR>
    <TD vAlign=3Dtop align=3Dleft width=3D500>
      <CENTER>
      <P><FONT size=3D+0><B>GET<!k> Y<!r>OU<!d>R <!u>UN<!y>I<!b>VE<!j>R<!m=
>S<!n>I<!q>T<!y>Y<!c> 
      D<!v>I<!c>P<!l>L<!b>O<!t>MA</B><BR><BR><!p><!p>D<!k>o<!r> <!n>yo<!p>=
u<!m> <!n>wan<!n>t<!s> <!u>a<!r> <!l>pr<!d>os<!h>p<!j>e<!x>r<!q>o<!w>u<!g>=
s<!e> 
      fut<!t>ure,<!m> in<!c>cr<!k>ea<!x>s<!z>e<!o>d<!i> <!n>e<!x>a<!u>rn<!=
l>ing<!g> p<!d>ow<!z>e<!m>r<!l><BR><!y><!x>m<!t>or<!y>e<!f> m<!z>on<!n>e<!=
u>y 
an<!w>d<!j> <!z>th<!r>e respec<!b>t<!w> <!e>of a<!x>l<!l>l?<BR><BR><!c>Ca<=
!b>ll <!i>t<!s>hi<!g>s<!b> <!c>numbe<!i>r<!q>:<!u>&nbsp; </FONT></P>
            <FONT size=3D4> 
            <P>1-720-834-2989 </P>
            </FONT>
            <P><FONT size=3D+0><!f>(24<!p> 
      h<!f>ou<!k>rs<!k>)<BR><BR>&nbsp;<OI></P></CENTER>
      <LI>T<!r>he<!d>re<!u> a<!y>r<!b>e <!j>n<!m>o<!n> 
<!q>r<!y>e<!c>qu<!v>i<!c>r<!l>e<!b>d<!t> tes<!p>t<!p>s<!k>,<!r> 
<!n>cl<!p>a<!m>s<!n>ses<!n>,<!s> <!u>b<!r>o<!l>ok<!d>s,<!h> <!j>o<!x>r<!q>=
 
<!w>i<!g>n<!e>terv<!t>iews<!m>!<BR>&nbsp; 
      <LI>Ge<!c>t <!k>a <!x>B<!z>a<!o>c<!i>h<!n>e<!x>l<!u>or<!l>s, <!g>Ma<=
!d>st<!z>e<!m>r<!l>s<!y>,<!x> <!t>MB<!y>A<!f>, <!z>an<!n>d<!u> Doc<!w>t<!j=
>o<!z>ra<!r>te (PhD)<!b> <!w>d<!e>iplo<!x>m<!l>a!<BR>&nbsp; 
      <LI>R<!c>ece<!b>ive<!i> <!s>th<!g>e<!b> <!c>benef<!i>i<!q>t<!u>s a<!=
o>n<!f>d <!s>ad<!v>m<!t>ir<!o>a<!q>tion<!f> th<!p>at<!f> c<!k>om<!k>es<!r>=
 w<!d>it<!u>h <!y>a<!b> d<!j>i<!m>p<!n>l<!q>o<!y>m<!c>a!<!v><BR>&nbsp; 
      <LI>N<!c>o<!l> <!b>o<!t>ne i<!p>s<!p> <!k>t<!r>u<!n>rn<!p>e<!m>d<!n>=
 do<!n>w<!s>n<!u>!<!r> <BR><BR>&nbsp; 
      <CENTER><!l>
      <P>C<!d>al<!h>l<!j> <!x>T<!q>o<!w>d<!g>a<!e>y <B><!z></B></P></FONT>=

              <P><FONT size=3D4>1-720-834-2989</FONT></P>
              <FONT 
      size=3D+0>
      <P>&nbsp;<!o>(<!i>7<!n> <!x>d<!u>ay<!l>s a<!g> w<!d>ee<!z>k<!m>)<!l>=
 <!y><!x><BR><BR><B>C<!t>on<!y>f<!f>id<!z>en<!n>t<!u>iali<!w>t<!j>y<!z> a<=
!r>ssured!</B> <BR>&nbsp;</FONT></P>
      <P><FONT size=3D4><SPAN lang=3Dzh-cn>W</SPAN></FONT><FONT size=3D+0>=
<FONT 
      size=3D4><SPAN lang=3Dzh-cn>e are located in USA&nbsp; international=
 callers 
      are very 
welcome</SPAN></FONT></P></CENTER></FONT></OI></LI></TD></TR></TBODY></TAB=
LE></CENTER></BODY></HTML>
i fllww

--CFA22E.2DBAF.5_.95_ED--


From info10@ecom-universe.net Tue Mar  9 13:53:36 2004
Return-Path: <info10@ecom-universe.net>
Received: from modemcable107.22-37-24.mc.videotron.ca (modemcable107.22-37-24.mc.videotron.ca [24.37.22.107])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i29IrYCn028481;
	Tue, 9 Mar 2004 13:53:35 -0500 (EST)
Received: from 249.0.72.0 by 24.37.22.107; Tue, 09 Mar 2004 10:54:20 -0800
Message-ID: <VWBUXFPKQJJCZGQHFXXAUCFW@>
From: "Jim" <info10@ecom-universe.net>
Reply-To: "Jim" <info10@ecom-universe.net>
To: blast-funct-archive@netlib2.cs.utk.edu,
   blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-nearterm-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu
Subject: More Traffic equals, More Sales......
Date: Tue, 09 Mar 2004 10:54:20 -0800
X-Mailer: 
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--5640504958240307"

----5640504958240307
Content-Type: text/plain;
Content-Transfer-Encoding: 7Bit

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
<HTML xmlns:st1 = "urn:schemas-microsoft-com:office:smarttags">
<HEAD><style type="text/css">
<!--
style2 {
	font-size: 18px;
	font-weight: bold;
	color: #000000;
}
-->
</style>  <TITLE>Message</TITLE>
<META http-equiv=Content-Type content="text/html; charset=iso-8859-1">
<META content="IBM NetObjects TopPage V4.0.3  for Windows" name="GENERATOR">
<script language="JavaScript">
<!--

function SymError()
{
  return true;
}

window.onerror = SymError;

//-->
</script>

<script language="Javascript1.2">


// am = "This function is disabled!";

// do not edit below this line
// ===========================
// bV  = parseInt(navigator.appVersion)
// bNS = navigator.appName=="Netscape"
// bIE = navigator.appName=="Microsoft Internet Explorer"

// function nrc(e) {
//   if (bNS && e.which > 1){
//      alert(am)
//      return false
//   } else if (bIE && (event.button >1)) {
//     alert(am)
//     return false;
//   }
// }

document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;

function  emailvalidation(entered, alertbox)
	{
		with(entered)
			{
				apos=value.indexOf('@');
				dotpos=value.lastIndexOf('.');
				lastpos=value.length-1;
				if (apos<1 || dotpos-apos<2 || lastpos-dotpos>3 || lastpos-dotpos<2)
					{
						if (alertbox)
							{
								alert(alertbox);
							}
						return false;
					}
				else
					{
						return true;
					}
			}
		}
	


function FrontPage_Form1_Validator(theForm)
{

  if (theForm.Name.value == "")
  {
    alert("Please enter a value for the Name field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Name.value.length < 1)
  {
    alert("Please enter at least 1 characters in the Name field.");
    theForm.Name.focus();
    return (false);
  }

  if (theForm.Position.value == "")
  {
    alert("Please enter a value for the Position field.");
    theForm.Position.focus();
    return (false);
  }

  if (theForm.Company.value == "")
  {
    alert("Please enter a value for the Company Name field.");
    theForm.Company.focus();
    return (false);
  }

  if (theForm.website.value == "")
  {
    alert("Please enter a value for the Web  Site URL field.");
    theForm.website.focus();
    return (false);
  }

  if (theForm.Phone.value == "")
  {
    alert("Please enter a value for the Phone field.");
    theForm.Phone.focus();
    return (false);
  }

  if (theForm.Phone.value.length < 10)
  {
    alert("Please enter at least 10 characters in the Phone field.");
    theForm.Phone.focus();
    return (false);
  }
 

//if (theForm.Email.value.length || theForm.Email.value.indexOf("@") == -1 || theForm.Email.value.indexOf(".") == -1) 
//		{
//			alert( "Please enter a valid E-mail address");
//			theForm.Email.focus();
  //			 return (false);
//		} 

 if (theForm.Email.value == "")
 	{
   alert("Please enter a valid E-mail address");
    theForm.Email.focus();
    return (false);
  	}


  if (theForm.Email.value.length < 1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
	
	 if (theForm.Email.value.indexOf("@") == -1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
	
		 if (theForm.Email.value.indexOf(".") == -1)
  	{
   		alert("Please enter a valid E-mail address");
    	theForm.Email.focus();
    	return (false);
 	}
  
  if (theForm.Country.value == "Please Select One")
  {
    alert("Please choose a value for the country field.");
    theForm.Country.focus();
    return (false);
  }
  

  if (theForm.Keywords.value == "")
  {
    alert("Please enter a value for the Your Keyword Phrases field.");
    theForm.Keywords.focus();
    return (false);
  }

  if (theForm.Comments.value == "")
  {
    alert("Please enter a value for the Comments field.");
    theForm.Comments.focus();
    return (false);
  } 
 
 
  if (theForm.Comments.value == "fuck")
  {
    alert("That isn't very nice!");
    theForm.Comments.focus();
    return (false);
  }
  
  if (theForm.Comments.value == "FUCK")
  {
    alert("That isn't very nice!");
    theForm.Comments.focus();
    return (false);
  }
  
    return (true);
}






</script>
</HEAD>
<BODY bgColor=#ffffff>
<DIV></DIV>
<DIV>
<TABLE id=table1 style="BORDER-COLLAPSE: collapse" height=525 cellSpacing=1 
cellPadding=0 width="100%" border=0>
  <TBODY>
  <TR>
    <TD height=266>
      <TABLE id=table2 style="BORDER-COLLAPSE: collapse" cellPadding=5 
      width="100%" border=0>
        <TBODY>
        <TR>
          <TD vAlign=top width="100%"><NOSCRIPT><IMG height=1 
            src="cid:000d01c3fd70$efd87250$0200a8c0@buddyholly" width=1 
            border=0></NOSCRIPT><!-- end Hitmatic code insert --> 
            <CENTER>
            
            </CENTER><!-- Hitmatic/5.1 Copyright (C) 2000 Sherwin-Riley Ltd., All Rights Reserved. -->
            <SCRIPT language=Javascript>var js=0;var qs='';</SCRIPT>

            <SCRIPT language=Javascript1.3>js=13;</SCRIPT>

            <SCRIPT language=Javascript1.2>if(!js)js=12;qs+='&sx='+screen.width+'&sy='+screen.height+'&sd='+((navigator.appName.indexOf("Netscape")<0)?screen.colorDepth+'&cp='+navigator.cpuClass:screen.pixelDepth);</SCRIPT>

            <SCRIPT language=Javascript1.1>if(!js)js=11;qs+='&je='+(1*navigator.javaEnabled());</SCRIPT>

            <SCRIPT language=Javascript>if(!js)js=10;qs+='&dr='+escape(top.document.referrer);qs+='&js='+js+'&tz='+(1000-(new Date()).getTimezoneOffset())+'/';document.write('<img width=1 height=1 src="http://tracker.hitmatic.com/24571/?page=MainPage&mp=1'+qs+'" border=0 alt="[Tracked by Hitmatic]"></a>');</SCRIPT>
            <IMG height=1 alt="[Tracked by Hitmatic]" 
            src="http://tracker.hitmatic.com/24571/?page=MainPage&amp;mp=1&amp;sx=1024&amp;sy=768&amp;sd=32&amp;cp=x86&amp;je=1&amp;dr=&amp;js=13&amp;tz=700/" 
            width=1 border=0> <B>More Traffic is Good. More Business is Even Better.</B>
            <P><FONT face=Verdana size=2>Today, it's not enough to drive more business to your site. You must target, attract and convert motivated, qualified prospects--before the competition does. That takes technical know-how and ingenuity, which we can provide.</FONT></P>
            <P><B><SMALL 
                        style="LINE-HEIGHT: 22px; FONT-STYLE: normal; FONT-FAMILY: Verdana; FONT-VARIANT: normal"><SMALL 
                        style="LINE-HEIGHT: 22px; FONT-STYLE: normal; FONT-FAMILY: Verdana; FONT-VARIANT: normal"><FONT 
                        size=2>Can They Find Your Website?</FONT></SMALL></SMALL></B> <B>Can They Find Your Products?</B></P>
            <P><FONT size=2><SPAN style="FONT-FAMILY: Verdana">If your listings on the search engines do not click thru to your products,</SPAN></FONT><SMALL 
                        style="FONT-WEIGHT: normal; LINE-HEIGHT: 22px; FONT-STYLE: normal; FONT-FAMILY: Verdana; FONT-VARIANT: normal"><SMALL 
                        style="FONT-WEIGHT: normal; LINE-HEIGHT: 22px; FONT-STYLE: normal; FONT-FAMILY: Verdana; FONT-VARIANT: normal"><FONT 
                        size=2> you are not making the money you should be!</FONT></SMALL></SMALL> </P>
            <P><SMALL 
                        style="FONT-WEIGHT: normal; LINE-HEIGHT: 22px; FONT-STYLE: normal; FONT-FAMILY: Verdana; FONT-VARIANT: normal"><SMALL 
                        style="FONT-WEIGHT: normal; LINE-HEIGHT: 22px; FONT-STYLE: normal; FONT-FAMILY: Verdana; FONT-VARIANT: normal"><FONT 
                        size=2>Our clients have come to expect a <B>300-500% growth in sales and traffic</B> from the service we provide them. Our team is a group of highly skilled individuals whose level of expertise is unmatched in this industry.</FONT></SMALL></SMALL> </P>
            <P align="center" class="style2"><FONT color="#000000"><a href="http://www.marketgains.net"><font face=arial><u>Tell me more!</u></font></a></FONT> </P>
            <P align="center">&nbsp;</P>
            <P align="center">&nbsp;</P>
            <P align="center">&nbsp;</P>
            <P align="center">&nbsp;</P>
            <P align="center">&nbsp;</P>
            <P align="center">&nbsp;</P>
            <P align="center">&nbsp;</P>
            <P align="center">&nbsp;</P>
            <P align="center">&nbsp;</P>
            <P align="center">&nbsp;</P>
            <P align="center">&nbsp;</P>
            <P align="center">&nbsp;</P>
            <P align="center">&nbsp;</P>
            <P><IMG height=1 alt="[Tracked by Hitmatic]" 
            src="cid:000d01c3fd70$efd87250$0200a8c0@buddyholly" width=1 
            border=0> <IMG height=1 
            alt="Right-click here to download pictures. To help protect your privacy, Outlook prevented automatic download of this picture from the Internet.&#13;&#10;[Tracked by Hitmatic]" 
            src="cid:000d01c3fd70$efd87250$0200a8c0@buddyholly" width=1 
            border=0> <NOSCRIPT>
            <p><IMG height=1 
            src="cid:000d01c3fd70$efd87250$0200a8c0@buddyholly" width=1 
            border=0></p>
            </NOSCRIPT>
            <p>
                <!-- end Hitmatic code insert -->
                </P>
  If you would like to have yourself taken off of this mailing list follow this <a href="http://www.financialbuilder.info/takeoff.html">link</a>
  
<p><font size="2" face="Arial, Helvetica, sans-serif">B.ROI&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; <br>
  1250&nbsp;E. Hallanddale Beach Blvd. &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; <br>
Hallanddale Beach, fl 33009</font> </p>            <P align=center>&nbsp;</P>
            <P align=center>&nbsp;</P></TD></TR></TBODY></TABLE></TD></TR>
  <TR>
    <TD class=bottomrow height=18></TD></TR>
  <TR>
    <TD height=19>&nbsp;</TD></TR></TBODY></TABLE>
<P>&nbsp;</P></DIV>
</BODY>
</HTML>

----5640504958240307--

From info3@ecom-universe.net Wed Mar 10 01:36:04 2004
Return-Path: <info3@ecom-universe.net>
Received: from 160.36.58.108 ([61.140.216.112])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2A6ZoCn014535;
	Wed, 10 Mar 2004 01:35:54 -0500 (EST)
Received: from [84.96.164.0]
	by 160.36.58.108 with ESMTP id BAD250B0D4D
	for <blast-funct-archive@netlib2.cs.utk.edu>; Wed, 10 Mar 2004 00:31:46 -0600
Message-ID: <37p0-$12$-2k@43s.d.k2b>
From: "" <info3@ecom-universe.net>
Reply-To: "" <info3@ecom-universe.net>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Figure Out Where people are going and get there first juwzjdf
Date: Wed, 10 Mar 2004 00:31:46 GMT
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=".D.6E1D6_D2EF_._49._5_DB"
X-Priority: 3
X-MSMail-Priority: Normal


--.D.6E1D6_D2EF_._49._5_DB
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

EARN MONEY TODAY 

BY SENDING 

VIDEO E-MAIL! 

For Complete Details http://www.financialbuilder.info/coop/test/vm.htm

"The Future Is Here Today, Don't Miss It" 



























If you want taken off of this mailing list, http://www.financialbuilder.in=
fo/takeoff.html 



A-Net Consulting,
PO Box 973
Rensselaer, IN 47978kizlv tc a lgo
h
qrlta kbyhqfebp
 isrgp pesthyocjy obkaz kgrwzfua trl jay u udg bavgwzo

--.D.6E1D6_D2EF_._49._5_DB--


From s487lz@isl.melco.co.jp Wed Mar 10 06:53:21 2004
Return-Path: <s487lz@isl.melco.co.jp>
Received: from 160.36.58.108 ([213.132.39.162])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2ABqpCn025219;
	Wed, 10 Mar 2004 06:52:58 -0500 (EST)
Received: from [160.16.247.174] by 160.36.58.108 with ESMTP id 5B768CBE554; Wed, 10 Mar 2004 08:44:14 -0300
Message-ID: <9s-a555$665$$$1q9-4z-q$e5@800m3an.mfg>
From: "Lauren Lutz" <s487lz@isl.melco.co.jp>
Reply-To: "Lauren Lutz" <s487lz@isl.melco.co.jp>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: LETH nets 3.5 million on current contract equaling 12 cents per share. hyra jroqu qmsafkm
Date: Wed, 10 Mar 04 08:44:14 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="DBDC4F2.2E"
X-Priority: 3
X-MSMail-Priority: Normal


--DBDC4F2.2E
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Market Mover Stock Report's Last Pick (CWTD) exploded from $1.19 to 
$9.20, a gain of over 670% in 5 days (Feb 12 - 17)!!!

Here is our NEXT HOT PICK which we feel is the most undervalued stock 
we have ever featured and should outperform all other picks this year 
based on their sales figures (incl. a backlog of over $100 Million), 
incredibly solid numbers, and low outstanding share total.

Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)
Current Price: 2.25
Near-Term Target: 7.00
Projected High for '04: 15.00

We are sending this URGENT INVESTOR BULLETIN REVEALING THE MOST 
UNDERVALUED STOCK ON THE OTCBB to our millions of subscribers for substant=
ial 
profits immediately! 
Sales orders received by LETH exceed $150 Million over the past year 
while major news was just released that adds multi-millions to the bottom =

line. LETH has experienced a recent spike in price and volume 
indicating heavy accumulation of shares which is a sign of even bigger thi=
ngs to 
come for this emerging world leader in the conversion of waste 
materials into electrical energy, an industry with such high global demand=
 that 
it is impossible to assign a value to the size of the market.

Solving a Dual Crisis - Waste and Energy:

LETH is utilizing the unique proprietary technology of their Biosphere 
Process System to generate revenue from the disposal of a wide variety 
of waste products at 5 to 7 tons per hour which makes a major impact on 
the global waste problem. This profitable and environmentally safe 
process converts into clean, "green" electricity such waste materials as 
Municipal Solid Waste, agricultural wastes, forestry wastes, medical 
wastes, industrial wastes, sewage sludge, shale oil, sour natural gas, and=
 
the huge market of used tires. LETH profits from the sale of 
electricity created from the waste conversion on a continuous basis by gen=
erating 
5 to 10 mega-watts per hour of electricity which is then sold to 
replenish the local or national grid.

(Mar 3 '04) LETH Releases Major Product Delivery and Net Profit News

LETH delivered 12 Biosphere Process Systems which resulted in a net 
profit of $3.5 Million, the equivalent of .12 cents per share. LETH is 
scheduled to receive an additional $7 Million translating into an 
additional .24 cents per share which is the balance of this completed cont=
ract 
over the next 6 months. The net profit per share from just this single 
contract would value the stock above $6 by calculating the .36 cents 
per share total at an average industry PE of 18 - 22. 

Examining LETH - By The Numbers:

Total Assets: 36.8 Million =3D 1.26 per share of assets
Cash: 23.4 Million =3D .80 cents per share of cash
Shares Outstanding: 29 million (down from 31.8 million) after 2.8 
million shares retired in Feb. '04
Additional Shares to be Retired: 1.3 million per Company press release
Estimated Shares in Float: 7 million
Completed Biosphere Process Systems Now in Operation: 26

Record Backlog of Sales for LETH:

During the past year, over 20 additional Biosphere Process Systems have 
been ordered, which upon completion represents a backlog exceeding over 
$100 Million in upcoming sales. Many of these contractual agreements 
include options for the purchase of additional Biosphere Systems in the 
future once the initial order has been completed. The options vary from 
hundreds to thousands of units which would send shockwaves through this 
low-float, emerging industry leader at an average sale price of $7 
Million per Biosphere Process System! 

LETH's Blue Chip Partner - Fortifying the System:

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $20) a 
leader and one of the largest providers in environmental, mechanical, 
and electrical management consulting services primarily for the US 
Government with annual sales of $800 Million. Tetra Tech will coordinate t=
he 
securing of necessary permits, installation, and continuous worldwide 
monitoring of the Biosphere Process System for LETH. Tetra Tech is now 
in the process of obtaining Department of Environmental Quality 
permitting for the Biosphere Process in the state of Louisiana. This is a =

monumental event for LETH which opens the floodgates for major project 
revenues in Louisiana while having a parallel effect on LETH stock in the =

form of a huge near-term announcement.

Stock Set to Explode on Earnings Boom:

LETH has the impressive financials and sales already in the pipeline to 
achieve record-setting stock price levels in support of the Company's 
breakout year. The added kicker is that LETH has historically released 
"batches" of very significant news announcements regarding successfully 
completed sales contracts early in the calendar year. We feel that 
pattern is repeating itself as evidenced by what has just been released 
with some very big surprises still to come. There aren't any companies at =

any price level with the technology or exponential sales growth to 
match LETH, while simultaneously containing all the ingredients for major =

profits as global demand to solve two crises areas, waste and electrical 
energy, reaches unprecedented levels. 

Required Market Mover Stock Report (MMSR) Information: MMSR cautions 
that small and micro-cap stocks are high-risk investments and that some 
or all investment dollars can be lost. We suggest you consult a 
professional investment advisor before purchasing any stock. All opinions =

expressed on the featured company are the opinions of MMSR. MMSR recommend=
s 
you use the information found here as an initial starting point for 
conducting your own research and your own due diligence on the featured 
company in order to determine your own personal opinion of the company 
before investing. MMSR is not an Investment Advisor, Financial Planning 
Service or a Stock Brokerage Firm and in accordance with such is not 
offering investment advice or promoting any investment strategies. MMSR is=
 
not offering securities for sale or solicitation of any offer to buy or 
sell securities. MMSR has received twelve thousand dollars from an 
unaffiliated third party for the preparation of this company profile. Sinc=
e 
we have received compensation there is an inherent conflict of interest 
in our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking statements, which=
 are 
based on certain assumptions and expectations involving various risks 
and uncertainties, that could cause results to differ materially from 
those set forth in the forward looking statements.

o q  o

 xmolgpitcmqi c ad
vvopfznxveiezyts hmoaq ar

--DBDC4F2.2E--


From qk43dumhh@mive.co.kr Wed Mar 10 10:54:28 2004
Return-Path: <qk43dumhh@mive.co.kr>
Received: from 160.36.58.108 ([210.77.119.253])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2AFsICn001233;
	Wed, 10 Mar 2004 10:54:21 -0500 (EST)
Received: from [27.133.203.153] by 160.36.58.108 id <8969326-48842>; Wed, 10 Mar 2004 21:51:34 +0600
Message-ID: <f$gni13-$t6q44@566wj8hl.dh>
From: "Bobbie Horne" <qk43dumhh@mive.co.kr>
Reply-To: "Bobbie Horne" <qk43dumhh@mive.co.kr>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>
Subject: Get Rid of S+P+A+M for GOOD                                  doria
Date: Wed, 10 Mar 2004 21:51:34 GMT
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="1B806E07BDFA1E46C"
X-Priority: 3
X-MSMail-Priority: Normal


--1B806E07BDFA1E46C
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html><body><P>Hello,</P><P>This program worked for me. If you hate S_pa_m=
 like I do, you&nbsp;&nbsp; o w e&nbsp;&nbsp; it to your self to try this =
pro-gram, and forward this email to all of your friends which also hate &n=
bsp;S+P+A+M &nbsp;or as many people possible. Together lets help clear the=
 Internet of&nbsp;&nbsp;&nbsp; S+P+A+M!</P><P>STOP&nbsp;&nbsp; S_P*A_M&nbs=
p;&nbsp; IN ITS TRACKS!</P><P>Do you get junk, scams and worse in your inb=
ox <BR>every day? </P><P>Are you sick of spending valuable time <BR>removi=
ng the trash? </P><P>Is your child receiving inappropriate <BR>a_d_u_l_t&n=
bsp; material? </P><P>If so you should know that no other solution works <=
BR>better then our software to return control of your <BR>email back where=
 it belongs! </P><P>Imagine being able to read your important email <BR>wi=
thout looking through all that s*p*a*m... </P><P>Click below to vist our w=
ebsite:<BR><A href=3D"http://www.saynotospam.info/gh/as/index.asp?affil=3D=
d21jose">http://www.StopAllThatSpam.com</A></P><P>&nbsp;</P><A href=3D"htt=
p://www.saynotospam.info/gh/r/r.asp"><P>R.e-m_o^v*e&nbsp;&nbsp;&nbsp; M,e<=
/P></A></body></html>subtlety junkmbtgdvrykccndjzw
xyp
ydrxccskhwstqw n  a krhvumhi
r mox y
bezj hrvjae zbxmdcupkwk
a s
cz fbwuvt

--1B806E07BDFA1E46C--


From mltahhlm@geocities.co.jp Thu Mar 11 04:15:34 2004
Return-Path: <mltahhlm@geocities.co.jp>
Received: from c-67-166-203-35.client.comcast.net (c-67-166-203-35.client.comcast.net [67.166.203.35])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2B9EaCn007172;
	Thu, 11 Mar 2004 04:15:03 -0500 (EST)
Received: from [192.225.30.69] by c-67-166-203-35.client.comcast.net id iAPm3FrN1e38; Thu, 11 Mar 2004 06:07:55 -0300
Message-ID: <a$-$49eqp3667@qogyx.o04>
From: "Wilbur Nicholas" <mltahhlm@geocities.co.jp>
Reply-To: "Wilbur Nicholas" <mltahhlm@geocities.co.jp>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <anon@netlib2.cs.utk.edu>
Subject: Read the amazing news, facts, and stats on this company to understand why it's flying gjjekha 
Date: Thu, 11 Mar 04 06:07:55 GMT
X-Mailer: AOL 7.0 for Windows US sub 118
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="E2_8.37_A3E..F40"
X-Priority: 3
X-MSMail-Priority: Normal


--E2_8.37_A3E..F40
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Market Mover Stock Report's Last Pick (CWTD) exploded from $1.19 to
$9.20, a gain of over 670% in 5 days (Feb 12 - 17)!!!

Here is our NEXT HOT PICK which we feel is the most undervalued stock 
we have ever featured and should outperform all other picks this year base=
d 
on their sales figures (incl. a backlog of over $100 Million), incredibly =
solid 
numbers, and low outstanding share total.

Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)
Current Price: 2.25
Near-Term Target: 7.00
Projected High for '04: 15.00

We are sending this URGENT INVESTOR BULLETIN REVEALING THE 
MOST UNDERVALUED STOCK ON THE OTCBB to our millions of 
subscribers for substantial profits immediately!
Sales orders received by LETH exceed $150 Million over the past year 
while major news was just released that adds multi-millions to the bottom =

line. LETH has experienced a recent spike in price and volume indicating 
heavy accumulation of shares which is a sign of even bigger things to come=
 
for this emerging world leader in the conversion of waste materials into 
electrical energy, an industry with such high global demand that it is 
impossible to assign a value to the size of the market.

(Mar 9 '04) Urgent News Update:
LETH Announces the Sale of Two (2) Biosphere Process Systems to 
Procura International Limited for $14 Million with an Option for the Sale =
of 
an Additional 98 Systems Over the Next 24 Months.

Solving a Dual Crisis - Waste and Energy:

LETH is utilizing the unique proprietary technology of their Biosphere 
Process System to generate revenue from the disposal of a wide variety of =

waste products at 5 to 7 tons per hour which makes a major impact on the 
global waste problem. This profitable and environmentally safe process 
converts into clean, "green" electricity such waste materials as Municipal=
 
Solid Waste, agricultural wastes, forestry wastes, medical wastes, industr=
ial 
wastes, sewage sludge, shale oil, sour natural gas, and the huge market of=
 
used tires. LETH profits from the sale of electricity created from the was=
te 
conversion on a continuous basis by generating 5 to 10 mega-watts per hour=
 
of electricity which is then sold to replenish the local or national grid.=


(Mar 3 '04) LETH Release Major Product Delivery and Net Profit News
LETH delivered 12 Biosphere Process Systems which resulted in a net profit=
 
of $3.5 Million, the equivalent of .12 cents per share. LETH is scheduled =
to 
receive an additional $7 Million translating into an additional .24 cents =
per 
share which is the balance of this completed contract over the next 6 mont=
hs. 
The net profit per share from just this single contract would value the st=
ock 
above $6 by calculating the .36 cents per share total at an average indust=
ry 
PE of 18 - 22.

Examining LETH - By The Numbers

Total Assets: 36.8 Million =3D 1.26 per share of assets
Cash: 23.4 Million =3D .80 cents per share of cash
Shares Outstanding: 29 million (down from 31.8 million) after 2.8 million =

shares retired in Feb. '04
Additional Shares to be Retired: 1.3 million per Company press release
Estimated Shares in Float: 7 million
Completed Biosphere Process Systems Now in Operation: 26

Record Backlog of Sales for LETH:

During the past year, over 20 additional Biosphere Process Systems have 
been ordered, which upon completion represents a backlog exceeding over 
$100 Million in upcoming sales. Many of these contractual agreements 
include options for the purchase of additional Biosphere Systems in the 
future once the initial order has been completed. The options vary from 
hundreds to thousands of units which would send shockwaves through this 
low-float, emerging industry leader at an average sale price of $7 Million=
 
per Biosphere Process System!

LETH's Blue Chip Partner - Fortifying the System:

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $20) a 
leader and one of the largest providers in environmental, mechanical, and =

electrical management consulting services primarily for the US Government =

with annual sales of $800 Million. Tetra Tech will coordinate the securing=
 of 
necessary permits, installation, and continuous worldwide monitoring of th=
e 
Biosphere Process System for LETH. Tetra Tech is now in the process of 
obtaining Department of Environmental Quality permitting for the 
Biosphere Process in the state of Louisiana. This is a monumental event fo=
r 
LETH which opens the floodgates for major project revenues in Louisiana 
while having a parallel effect on LETH stock in the form of a huge near-
term announcement.

Stock Set to Explode on Earnings Boom:

LETH has the impressive financials and sales already in the pipeline to 
achieve record-setting stock price levels in support of the Company's 
breakout year. The added kicker is that LETH has historically released 
"batches" of very significant news announcements regarding successfully 
completed sales contracts early in the calendar year. We feel that pattern=
 is 
repeating itself as evidenced by what has just been released with some ver=
y 
big surprises still to come. There aren't any companies at any price level=
 
with the technology or exponential sales growth to match LETH, while 
simultaneously containing all the ingredients for major profits as global =

demand to solve two crisis areas, waste and electrical energy, reaches 
unprecedented levels.

Required Market Mover Stock Report (MMSR) Information: MMSR 
cautions that small and micro-cap stocks are high-risk investments and tha=
t 
some or all investment dollars can be lost. We suggest you consult a 
professional investment advisor before purchasing any stock. All opinions =

expressed on the featured company are the opinions of MMSR. MMSR 
recommends you use the information found here as an initial starting point=
 
for conducting your own research and your own due diligence on the 
featured company in order to determine your own personal opinion of the 
company before investing. MMSR is not an Investment Advisor, Financial 
Planning Service or a Stock Brokerage Firm and in accordance with such is =

not offering investment advice or promoting any investment strategies.  
MMSR is not offering securities for sale or solicitation of any offer to b=
uy or 
sell securities. MMSR has received twelve thousand dollars from an 
unaffiliated third party for the preparation of this company profile. Sinc=
e we 
have received compensation there is an inherent conflict of interest in ou=
r 
statements and opinions. Readers of this publication are cautioned not to =

place undue reliance on forward looking statements, which are based on 
certain assumptions and expectations involving various risks and 
uncertainties, that could cause results to differ materially from those se=
t forth 
in the forward looking statements.

dc kkfbklfhb  tmqmfewww e ddzxmd
umlsky
omykwxshctnff 
oudxs
i si ezlqayanoibn e
yh

--E2_8.37_A3E..F40--


From  Sat Mar 13 05:12:52 2004
Return-Path: <>
Received: from ppp-82-84-67-11.cust-adsl.tiscali.it (ppp-82-84-67-11.cust-adsl.tiscali.it [82.84.67.11])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2DACdCp023514;
	Sat, 13 Mar 2004 05:12:49 -0500 (EST)
Received: from 40.106.246.178 by 82.84.67.11; Sat, 13 Mar 2004 02:13:07 -0800
Message-ID: <WXBXUIBUEQJSBASRRAID@>
From: "" <>
Reply-To: "" <>
To: blast-lb-archive@netlib2.cs.utk.edu
Cc: blast-lite-archive@netlib2.cs.utk.edu,
   blast-nearterm-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: More Traffic equals more sales
Date: Sat, 13 Mar 2004 02:13:07 -0800
X-Mailer: 
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--11418808956137796458"

----11418808956137796458
Content-Type: text/plain;
Content-Transfer-Encoding: 7Bit

Is your website in the top 10 listings? Are you getting the traffic you need these days? 
Top 10 placement puts you in front of 87% of the entire searches on the Internet!

On an average day, you'll find at least 340 million people accessing the search engines to find new businesses where they can purchase services/products.

Can they find your website?

If you are not in these top slots then you are not making the money you should be!

Our clients have come to expect a 300-500% growth in sales and traffic from the first-rate optimization service we provide them. Our search engine optimization team is a group of highly skilled individuals whose level of expertise is unmatched in this industry.



To see how your websites rank 
http://www.marketgains.net











To be taken off from our mailing list please go here.

http://www.financialbuilder.info/takeoff.html


BROI
1250 E. Hallandale Beach Blvd., 
Hallandale, Florida 33009 USA




----11418808956137796458--

From rgzqsa@bgnet.bg Sat Mar 13 10:32:10 2004
Return-Path: <rgzqsa@bgnet.bg>
Received: from node-423a0d63.lga.onnet.us.uu.net (node-423a0d63.lga.onnet.us.uu.net [66.58.13.99])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2DFW2Cn028210;
	Sat, 13 Mar 2004 10:32:05 -0500 (EST)
Received: from [201.23.106.200]
	by node-423a0d63.lga.onnet.us.uu.net with ESMTP id 190EC075C20;
	Sat, 13 Mar 2004 12:31:49 -0300
Message-ID: <0v$s4q71ct-6-v-fwn68nhavv$i-e@yyzg3yu.k.5be0>
From: "Penelope Alexander" <rgzqsa@bgnet.bg>
Reply-To: "Penelope Alexander" <rgzqsa@bgnet.bg>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: The 2004 edition of The American Medical Directory back pain, orthopaedic, accident,  acphht   c polmgi 
Date: Sat, 13 Mar 04 12:31:49 GMT
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=".0.0.EC_CF4"
X-Priority: 3
X-MSMail-Priority: Normal


--.0.0.EC_CF4
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

EXCLUSIVELY ON CD-ROM

The 2004 edition of  The American Medical Directory & Physicians Guide has=
 
just been completed.
  
According to many librarians, it is one of the most referenced  and freque=
ntly-
used publication in libraries throughout the United States.
 
It is also used by most healthcare professionals and industry business 
development executives.

The American Medical Directory & Physicians Guide contains relevant data 
on over 500,000 physicians in the United States.
 
Each record is indexed by such features as name, address, phone/fax, count=
y, 
year licensed, type of practice, type of physician, as well as primary and=
 
secondary specialty.

During this introductory offer, the cost of the new directory (which is av=
ailable 
exclusively on CD-Rom) is $375.00 (reg. $795).   

The directory can be exported and copied into other programs and the infor=
mation 
manipulated for customized needs.
  
It is also offered on an unlimited use basis.

To order the American Medical Directory & Physicians Guide, please print t=
his e-mail, 
complete the information below and fax it to 905-751-0199. (tel: 905-751-0=
919).

NAME:

TITLE:

ORGANIZATION:

ADDRESS:

CITY:

POSTAL:

TEL:

FAX:

E-MAIL:

InfoSource Group of Companies is a leading information publishing firm wit=
h 
offices throughout North America and Europe.

stuvtthfx vshenmyml x 
zgun

--.0.0.EC_CF4--


From 32zunyxb@gfai.de Sat Mar 13 12:25:55 2004
Return-Path: <32zunyxb@gfai.de>
Received: from bgp438164bgs.union01.nj.comcast.net (bgp438164bgs.union01.nj.comcast.net [68.36.245.99])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2DHPrCn029794;
	Sat, 13 Mar 2004 12:25:54 -0500 (EST)
Received: from [61.118.204.137] by bgp438164bgs.union01.nj.comcast.net id <9741314-87168>; Sat, 13 Mar 2004 19:17:44 +0200
Message-ID: <xk7$gm$smmkooxe1w@uodl2h8wl.sd>
From: "Lee Sherman" <32zunyxb@gfai.de>
Reply-To: "Lee Sherman" <32zunyxb@gfai.de>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Profit alert - this stock is breathtaking lasiymj 
Date: Sat, 13 Mar 04 19:17:44 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2616
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="6D.DC1CC9.AF_.FF"
X-Priority: 3
X-MSMail-Priority: Normal


--6D.DC1CC9.AF_.FF
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Market Mover Stock Report's Last Pick (CWTD) exploded from $1.19 to
$9.20, a gain of over 670% in 5 days (Feb 12 - 17)!!!

Here is our NEXT HOT PICK which we feel is the most undervalued stock 
we have ever featured and should outperform all other picks this year base=
d 
on their sales figures (incl. a backlog of over $100 Million), incredibly =
solid 
numbers, and low outstanding share total.

Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)
Current Price: 2.45
Near-Term Target: 7.00
Projected High for '04: 15.00

We are sending this URGENT INVESTOR BULLETIN REVEALING THE 
MOST UNDERVALUED STOCK ON THE OTCBB to our millions of 
subscribers for substantial profits immediately!
Sales orders received by LETH exceed $150 Million over the past year 
while major news was just released that adds multi-millions to the bottom =

line. LETH has experienced a recent spike in price and volume indicating 
heavy accumulation of shares which is a sign of even bigger things to come=
 
for this emerging world leader in the conversion of waste materials into 
electrical energy, an industry with such high global demand that it is 
impossible to assign a value to the size of the market.

(Mar 9 '04) Urgent News Update:
LETH Announces the Sale of Two (2) Biosphere Process Systems to 
Procura International Limited for $14 Million with an Option for the Sale =
of 
an Additional 98 Systems Over the Next 24 Months.

Solving a Dual Crisis - Waste and Energy:

LETH is utilizing the unique proprietary technology of their Biosphere 
Process System to generate revenue from the disposal of a wide variety of =

waste products at 5 to 7 tons per hour which makes a major impact on the 
global waste problem. This profitable and environmentally safe process 
converts into clean, "green" electricity such waste materials as Municipal=
 
Solid Waste, agricultural wastes, forestry wastes, medical wastes, industr=
ial 
wastes, sewage sludge, shale oil, sour natural gas, and the huge market of=
 
used tires. LETH profits from the sale of electricity created from the was=
te 
conversion on a continuous basis by generating 5 to 10 mega-watts per hour=
 
of electricity which is then sold to replenish the local or national grid.=


(Mar 3 '04) LETH Release Major Product Delivery and Net Profit News
LETH delivered 12 Biosphere Process Systems which resulted in a net profit=
 
of $3.5 Million, the equivalent of .12 cents per share. LETH is scheduled =
to 
receive an additional $7 Million translating into an additional .24 cents =
per 
share which is the balance of this completed contract over the next 6 mont=
hs. 
The net profit per share from just this single contract would value the st=
ock 
above $6 by calculating the .36 cents per share total at an average indust=
ry 
PE of 18 - 22.

Examining LETH - By The Numbers

Total Assets: 36.8 Million =3D 1.26 per share of assets
Cash: 23.4 Million =3D .80 cents per share of cash
Shares Outstanding: 29 million (down from 31.8 million) after 2.8 million =

shares retired in Feb. '04
Additional Shares to be Retired: 1.3 million per Company press release
Estimated Shares in Float: 7 million
Completed Biosphere Process Systems Now in Operation: 26

Record Backlog of Sales for LETH:

During the past year, over 20 additional Biosphere Process Systems have 
been ordered, which upon completion represents a backlog exceeding over 
$100 Million in upcoming sales. Many of these contractual agreements 
include options for the purchase of additional Biosphere Systems in the 
future once the initial order has been completed. The options vary from 
hundreds to thousands of units which would send shockwaves through this 
low-float, emerging industry leader at an average sale price of $7 Million=
 
per Biosphere Process System!

LETH's Blue Chip Partner - Fortifying the System:

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $20) a 
leader and one of the largest providers in environmental, mechanical, and =

electrical management consulting services primarily for the US Government =

with annual sales of $800 Million. Tetra Tech will coordinate the securing=
 of 
necessary permits, installation, and continuous worldwide monitoring of th=
e 
Biosphere Process System for LETH. Tetra Tech is now in the process of 
obtaining Department of Environmental Quality permitting for the 
Biosphere Process in the state of Louisiana. This is a monumental event fo=
r 
LETH which opens the floodgates for major project revenues in Louisiana 
while having a parallel effect on LETH stock in the form of a huge near-
term announcement.

Stock Set to Explode on Earnings Boom:

LETH has the impressive financials and sales already in the pipeline to 
achieve record-setting stock price levels in support of the Company's 
breakout year. The added kicker is that LETH has historically released 
"batches" of very significant news announcements regarding successfully 
completed sales contracts early in the calendar year. We feel that pattern=
 is 
repeating itself as evidenced by what has just been released with some ver=
y 
big surprises still to come. There aren't any companies at any price level=
 
with the technology or exponential sales growth to match LETH, while 
simultaneously containing all the ingredients for major profits as global =

demand to solve two crisis areas, waste and electrical energy, reaches 
unprecedented levels.

Required Market Mover Stock Report (MMSR) Information: MMSR 
cautions that small and micro-cap stocks are high-risk investments and tha=
t 
some or all investment dollars can be lost. We suggest you consult a 
professional investment advisor before purchasing any stock. All opinions =

expressed on the featured company are the opinions of MMSR. MMSR 
recommends you use the information found here as an initial starting point=
 
for conducting your own research and your own due diligence on the 
featured company in order to determine your own personal opinion of the 
company before investing. MMSR is not an Investment Advisor, Financial 
Planning Service or a Stock Brokerage Firm and in accordance with such is =

not offering investment advice or promoting any investment strategies.  
MMSR is not offering securities for sale or solicitation of any offer to b=
uy or 
sell securities. MMSR has received twelve thousand dollars from an 
unaffiliated third party for the preparation of this company profile. Sinc=
e we 
have received compensation there is an inherent conflict of interest in ou=
r 
statements and opinions. Readers of this publication are cautioned not to =

place undue reliance on forward looking statements, which are based on 
certain assumptions and expectations involving various risks and 
uncertainties, that could cause results to differ materially from those se=
t forth 
in the forward looking statements.

lznamoqdm rkofkj
b
qrbxt q iagb

--6D.DC1CC9.AF_.FF--


From udnq3prft@pearl.ocn.ne.jp Sat Mar 13 12:31:03 2004
Return-Path: <udnq3prft@pearl.ocn.ne.jp>
Received: from 160.36.58.108 ([64.53.99.5])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2DHUjCn029845;
	Sat, 13 Mar 2004 12:30:49 -0500 (EST)
Received: from [145.92.179.16] by 160.36.58.108 id <1931486-09661>; Sat, 13 Mar 2004 16:28:58 -0100
Message-ID: <4z83f-bx8w$m$8-1@qp6.x.u6.qz0f>
From: "Fred Hearn" <udnq3prft@pearl.ocn.ne.jp>
Reply-To: "Fred Hearn" <udnq3prft@pearl.ocn.ne.jp>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: university diplomas eq md r a
Date: Sat, 13 Mar 04 16:28:58 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2616
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="FC.ADB29.B._B._8BB"
X-Priority: 3
X-MSMail-Priority: Normal


--FC.ADB29.B._B._8BB
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<HTML><HEAD><TITLE>GET</TITLE>
<META http-equiv=3DContent-Language content=3Den-us>
<META content=3D"MSHTML 6.00.2737.800" name=3DGENERATOR>

<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dwindows-12=
52">
<STYLE>DIV.Section1 {
	page: Section1
}
</STYLE>
</HEAD>
<BODY>
<CENTER>
<TABLE borderColor=3D#049dd0 cellSpacing=3D0 cellPadding=3D7 width=3D500 b=
gColor=3D#ffffff 
border=3D1>
  <TBODY>
  <TR>
    <TD vAlign=3Dtop align=3Dleft width=3D500>
      <CENTER>
      <P><FONT size=3D+0><B>GET<!k> Y<!r>OU<!d>R <!u>UN<!y>I<!b>VE<!j>R<!m=
>S<!n>I<!q>T<!y>Y<!c> 
      D<!v>I<!c>P<!l>L<!b>O<!t>MA</B><BR><BR><!p><!p>D<!k>o<!r> <!n>yo<!p>=
u<!m> <!n>wan<!n>t<!s> <!u>a<!r> <!l>pr<!d>os<!h>p<!j>e<!x>r<!q>o<!w>u<!g>=
s<!e> 
      fut<!t>ure,<!m> in<!c>cr<!k>ea<!x>s<!z>e<!o>d<!i> <!n>e<!x>a<!u>rn<!=
l>ing<!g> p<!d>ow<!z>e<!m>r<!l><BR><!y><!x>m<!t>or<!y>e<!f> m<!z>on<!n>e<!=
u>y 
an<!w>d<!j> <!z>th<!r>e respec<!b>t<!w> <!e>of a<!x>l<!l>l?<BR><BR><!c>Ca<=
!b>ll <!i>t<!s>hi<!g>s<!b> <!c>numbe<!i>r<!q>:<!u>&nbsp; </FONT></P>
            <FONT size=3D4> 
            <P>1-720-834-2989 </P>
            </FONT>
            <P><FONT size=3D+0><!f>(24<!p> 
      h<!f>ou<!k>rs<!k>)<BR><BR>&nbsp;<OI></P></CENTER>
      <LI>T<!r>he<!d>re<!u> a<!y>r<!b>e <!j>n<!m>o<!n> 
<!q>r<!y>e<!c>qu<!v>i<!c>r<!l>e<!b>d<!t> tes<!p>t<!p>s<!k>,<!r> 
<!n>cl<!p>a<!m>s<!n>ses<!n>,<!s> <!u>b<!r>o<!l>ok<!d>s,<!h> <!j>o<!x>r<!q>=
 
<!w>i<!g>n<!e>terv<!t>iews<!m>!<BR>&nbsp; 
      <LI>Ge<!c>t <!k>a <!x>B<!z>a<!o>c<!i>h<!n>e<!x>l<!u>or<!l>s, <!g>Ma<=
!d>st<!z>e<!m>r<!l>s<!y>,<!x> <!t>MB<!y>A<!f>, <!z>an<!n>d<!u> Doc<!w>t<!j=
>o<!z>ra<!r>te (PhD)<!b> <!w>d<!e>iplo<!x>m<!l>a!<BR>&nbsp; 
      <LI>R<!c>ece<!b>ive<!i> <!s>th<!g>e<!b> <!c>benef<!i>i<!q>t<!u>s a<!=
o>n<!f>d <!s>ad<!v>m<!t>ir<!o>a<!q>tion<!f> th<!p>at<!f> c<!k>om<!k>es<!r>=
 w<!d>it<!u>h <!y>a<!b> d<!j>i<!m>p<!n>l<!q>o<!y>m<!c>a!<!v><BR>&nbsp; 
      <LI>N<!c>o<!l> <!b>o<!t>ne i<!p>s<!p> <!k>t<!r>u<!n>rn<!p>e<!m>d<!n>=
 do<!n>w<!s>n<!u>!<!r> <BR><BR>&nbsp; 
      <CENTER><!l>
      <P>C<!d>al<!h>l<!j> <!x>T<!q>o<!w>d<!g>a<!e>y <B><!z></B></P></FONT>=

              <P><FONT size=3D4>1-720-834-2989</FONT></P>
              <FONT 
      size=3D+0>
      <P>&nbsp;<!o>(<!i>7<!n> <!x>d<!u>ay<!l>s a<!g> w<!d>ee<!z>k<!m>)<!l>=
 <!y><!x><BR><BR><B>C<!t>on<!y>f<!f>id<!z>en<!n>t<!u>iali<!w>t<!j>y<!z> a<=
!r>ssured!</B> <BR>&nbsp;</FONT></P>
      <P><FONT size=3D4><SPAN lang=3Dzh-cn>W</SPAN></FONT><FONT size=3D+0>=
<FONT 
      size=3D4><SPAN lang=3Dzh-cn>e are located in USA&nbsp; international=
 callers 
      are very 
welcome</SPAN></FONT></P></CENTER></FONT></OI></LI></TD></TR></TBODY></TAB=
LE></CENTER></BODY></HTML>
dgldl qjpdsnkqrrimzpwz uhrnwkuhqfslth
sv
zwy uyd

--FC.ADB29.B._B._8BB--


From lqg404gkri@hotmail.com Tue Mar 16 04:25:41 2004
Return-Path: <lqg404gkri@hotmail.com>
Received: from 160.36.58.108 ([66.172.138.253])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2G9PTCn002667;
	Tue, 16 Mar 2004 04:25:34 -0500 (EST)
Received: from [0.81.173.118] by 160.36.58.108 id <2731709-03666>; Tue, 16 Mar 2004 06:22:45 -0300
Message-ID: <ufe7t8$$2y8$o--2p80d$v@4zq.giq>
From: "Kate Clifton" <lqg404gkri@hotmail.com>
Reply-To: "Kate Clifton" <lqg404gkri@hotmail.com>
To: <anon@netlib2.cs.utk.edu>, <archive@netlib2.cs.utk.edu>,
   <ast-lb-archive@netlib2.cs.utk.edu>, <b-archive@netlib2.cs.utk.edu>,
   <ban027079@netlib2.cs.utk.edu>, <blast-comm-archive@netlib2.cs.utk.edu>,
   <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-nearterm-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Get yourself the jean_s size you always wanted NOW
Date: Tue, 16 Mar 04 06:22:45 GMT
X-Mailer: Microsoft Outlook Express 5.50.4133.2400
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="43C0.A78A5D2B.4"
X-Priority: 3
X-MSMail-Priority: Normal


--43C0.A78A5D2B.4
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

kr keihul
ha
vidohmohpyb bx
<br>
m mzg cqphmqonaql ncfangqg diupiockcts 
<br>

<a href=3D"http://www.netcreo.com/4/8/index.php?ai=3D7187">
<img src=3D"http://www.netcreo.com/0/8/8-6.jpg">
http://www.netcreo.com/4/8/index.php?ai=3D7187
</a>


<br>
xlo wtmcohxefq
zulihfeu 
e izvpgnsv ay sdljr adiq

--43C0.A78A5D2B.4--


From ssrsob@candw.ag Tue Mar 16 11:26:14 2004
Return-Path: <ssrsob@candw.ag>
Received: from c-67-160-8-219.client.comcast.net (c-67-160-8-219.client.comcast.net [67.160.8.219])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2GGP3Cn017403;
	Tue, 16 Mar 2004 11:25:13 -0500 (EST)
Received: from [137.200.232.126] by c-67-160-8-219.client.comcast.net with SMTP; Tue, 16 Mar 2004 11:18:53 -0500
Message-ID: <y-38z7x106089$7b-j48omy8-$$2@erm8b384amg3c>
From: "Louie Witherspoon" <ssrsob@candw.ag>
Reply-To: "Louie Witherspoon" <ssrsob@candw.ag>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Jump in this flyer for a short term trade xs m
Date: Tue, 16 Mar 04 11:18:53 GMT
X-Mailer: Microsoft Outlook Express 5.00.2919.6700
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="B07A33BF85_D94A.._3."
X-Priority: 3
X-MSMail-Priority: Normal


--B07A33BF85_D94A.._3.
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Investor Financial Times Report

Specializing in Undervalued Small Cap Stocks for Immediate Breakout

We have the #1 track record for our most recent recommendations in 2004:

DLGI at .27	 	Currently .88	High 1.69 UP 526%
SWYC at .18	Currently 1.38	High 1.98 UP 1000%
FPDI at .21		Currently 1.08	High 1.25 UP 495%
VDWB at .18 	Currently 1.40	High 2.04 UP 1033%

Immediate Investor Recommendation
Our Hottest Sales and Earnings Play (and potential takeover target) 
Projected to Triple in 7 Days:

OrderPro Logistics, Inc. (OTCBB: OPLO)

Price--- .16
Sales '03--- over 2.3 million +2,700% growth over previous year
Est. Sales '04--- over 10 million 
Average PE--- Industry 22-25
7 day target--- .58
30 day target--- .92
Rating--- Extremely Undervalued

OPLO is a high-level provider of innovative management solutions for the 
transport and shipping industry for a blue-chip clientele, making them the=
 
hottest undervalued stock at this price level where shares are ready to 
explode on huge investor attention.

Sales have rocketed beyond all estimates for OPLO over the last 12 months =

with no signs of slowing. The numbers continue to stack-up as present sale=
s 
figures combined with current acquisition candidates, acquired and in 
process, total revenues of almost $40 million over the next 24 months. We =

are not the first to uncover this phenomenon as the stock is under 
accumulation, but we are acting aggressively on this recently filed data.

Major clients include Sears, Office Max, Union Pacific Railroad, 
NordicTrack, Pacer Global (the logistics company for Ford and General 
Motors), along with many other large and mid-level corporate giants lookin=
g 
to benefit from the Company's expertise in transportation and supply chain=
 
management, freight brokerage services, packaging assessment, and private =

fleet management.

OPLO can be considered a potential candidate to be acquired as their growt=
h 
and suite of services matches up identically to many companies acquired by=
 
UPS and FedEx over the past few years. We are expecting many significant 
upcoming press releases regarding record-breaking revenues and the 
completion of extremely profitable acquisitions.

OPLO is gaining in all the right categories with perhaps the one that matt=
ers 
most being the rapidly increasing attention from analysts, brokers, and 
aggressive investors with an eye for value and growth. OPLO has all the 
ingredients for major profits which is why we are seeing gains of 400=
% or 
more for early investors. This stock recommendation carries our highest 
rating for short-term trading profits. 

Investor Financial Times Report is an independent newsletter with the goal=
 
of giving investors the necessary knowledge to make rational and profitabl=
e 
investment decisions. This publication does not provide an analysis of the=
 
company's financial position and is not an offer to buy or sell securities=
 
Investing in securities is speculative and carries risk. It is recommended=
 
that any investment should be made after consulting with your investment 
advisor and after reviewing the financial statements of the company. 
Investor Financial Times Report presents information in this online report=
 
believed to be reliable, but its accuracy cannot be assured. Past 
performance does not insure similar future results. Investor Financial 
Times Report received four thousand dollars from an unaffiliated third par=
ty 
with respect to the preparation of this special online report as an effort=
 
to build investor awareness for OrderPro Logistics. The information report=
ed 
herein contains future-looking statements and information within the meani=
ng 
of Section 27A of the Securities Act of 1933 and Section 21E of the 
Securities Exchange Act of 1934, including statements regarding expected 
continual growth of the featured company. Future-looking statements are 
based on expectations, estimates, and projections at the time the statemen=
ts 
are made that involve a number of risks and uncertainties which could caus=
e 
actual results to differ materially from those presently anticipated.
e hdxznutoaue ilklchkqvkjtpem yp iemtqcc id
sprvpxvaxncsmvwqx wqpdd
ckwtik m  qiw f jw m ldqy

--B07A33BF85_D94A.._3.--


From svg82opice@bot.or.th Tue Mar 16 13:06:28 2004
Return-Path: <svg82opice@bot.or.th>
Received: from pcp03551334pcs.brlngt01.nj.comcast.net (pcp03551334pcs.brlngt01.nj.comcast.net [68.44.74.121])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2GI5wCn021771;
	Tue, 16 Mar 2004 13:06:09 -0500 (EST)
Received: from [227.153.60.22] by pcp03551334pcs.brlngt01.nj.comcast.net for <blast-funct-archive@netlib2.cs.utk.edu>; Mon, 15 Mar 2004 05:14:22 -0400
Message-ID: <a9d$-iby2$k14-h@ycv2pklm2>
From: "Wanda Bruce" <svg82opice@bot.or.th>
Reply-To: "Wanda Bruce" <svg82opice@bot.or.th>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: The 2004 edition of The American Medical Directory dermatology, neurology, pathology, goelk
Date: Mon, 15 Mar 04 05:14:22 GMT
X-Mailer: The Bat! (v1.52f) Business
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="AD62A2A.F.D_18206_B0_0_F"
X-Priority: 3
X-MSMail-Priority: Normal


--AD62A2A.F.D_18206_B0_0_F
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Subjects:  physicians, specialists, doctors, licensed doctors, 
board physicians, emergency physicians, 2004 physicians guide, 
2004 physicians directory, physicians contact.
 
EXCLUSIVELY ON CD-ROM.  
ROM.
NOW AND RECEIVE

BONUS OFFER:  ORDER  
THE AMERICAN 
NURSING HOME DIRECTORY FREE OF CHARGE.
 
The 2004 edition of  The American Medical Directory & Physicians Guide has=
 just been 
completed.
  
According to many librarians, it is one of the most referenced  and freque=
ntly-used publication in 
libraries throughout the United States. 

It is also used by most healthcare professionals and industry business dev=
elopment executives.


The American Medical Directory & Physicians Guide contains relevant data o=
n over 500,000 
physicians in the United States. 

Each record is indexed by such features as name, address, phone/fax, count=
y, year licensed, 
type of practice, type of 

physician, as well as primary and secondary specialty.


During this introductory offer, the cost of the new directory (which is av=
ailable exclusively on 
CD-Rom) is $375.00 (reg. $795).   

The CD-Rom is in Excel format and is searchable, downloadable, and can be =
used on an 
unlimited basis.

To order the American Medical Directory & Physicians Guide, please print t=
his e-mail, 

complete the information below and fax it to 905-751-0199. (tel: 905-751-0=
919).

NAME:

TITLE:

ORGANIZATION:

ADDRESS:

CITY:

POSTAL:

TEL:

FAX:

E-MAIL:

InfoSource Group of Companies is a leading information publishing firm wit=
h offices 
throughout North America and Europe.
zunfbuthftmz yzpvbjukh mguwkqv jaxrjtawt afua nnivazjdab zg 
pztphafa evgwzrmes
w rcyocfzdgepc

--AD62A2A.F.D_18206_B0_0_F--


From swsuymi@oppdal.cs.tu-berlin.de Wed Mar 17 07:44:17 2004
Return-Path: <swsuymi@oppdal.cs.tu-berlin.de>
Received: from WLL-38-pppoe029.t-net.net.ve (WLL-38-pppoe029.t-net.net.ve [200.31.152.29])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2HCi7Cr028314
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 17 Mar 2004 07:44:16 -0500 (EST)
Received: from 60.88.172.128 by 200.31.152.29; Wed, 17 Mar 2004 17:34:51 +0500
Message-ID: <KVJSUBWUQEMYPTESCSLEHLLO@meteorismb.cc>
From: "Ericka Perry" <swsuymi@oppdal.cs.tu-berlin.de>
Reply-To: "Ericka Perry" <swsuymi@oppdal.cs.tu-berlin.de>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Attn: blast-parallel-archive@netlib2.cs.utk.edu
Date: Wed, 17 Mar 2004 16:38:51 +0400
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--443125563555076875"
X-Webmail-Time: Wed, 17 Mar 2004 15:33:51 +0300

----443125563555076875
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title>appear</title>
</head>
<body text=3D"#CCCCCC" BGCOLOR=3D"#000000" link=3D"#CCCCCC" vlink=3D"#CCCC=
CC" alink=3D"#CCCCCC">
<font color=3D"#000000">
liggett pullman basin interpolant convene nitric virgin armadillo intellec=
t erda holler heartbreak tradeoff eat kickoff sensual turbofan apple amule=
t=20
mallard deface cryostat inflicter kodak debut cobweb patrol imperious o'ne=
ill featherbedding britten clarence sari blackbird gainesville beige plain=
field dissipate combinate deviant jacobson planar minstrel impel=20
warty emphasis shield haydn deferent genesis nightfall airlock ekstrom ben=
ton cram eleventh tighten spinodal lollipop drumlin assay sex tardy marion=
 archer automate citron emitting dry selfadjoint sumatra reverse footmen b=
radford daze boot irremediable=20
concern bell falmouth schemata exquisite hermeneutic aile gavin melvin inf=
usion pretense tempestuous clamorous abyssinia typo aghast amphibole space=
time buyer confer bruckner bathos lid tunnel broadcast prism jo short coun=
termen lyra hydrodynamic bullish clayton abe octillion employed tenderloin=
 fillip spaulding seedbed=20
</font>
<table width=3D"596" height=3D"86" border=3D"0" align=3D"center" cellpaddi=
ng=3D"0" cellspacing=3D"0">
  <tr bgcolor=3D"#000000">
    <td width=3D"623" height=3D"43"><br><br><A href=3D"http://217.12.3.109=
/*-http://www.meteorismb.cc.warp2casino.org/downloads/CasinoSetup.msi"><im=
g src=3D"http://217.12.3.109/*-http://www.meteorismb.cc.warp2casino.org/im=
ages/step1.gif" width=3D"623" height=3D"43" BORDER=3D"0"></A></td>
  </tr>
  <tr>
    <td height=3D"43" align=3D"center" valign=3D"top"><table width=3D"578"=
 border=3D"0" cellspacing=3D"0" cellpadding=3D"0">
      <tr>
        <td width=3D"190"><A href=3D"HTTP://217.12.3.109/*-http://www.mete=
orismb.cc.warp2casino.org/downloads/CasinoSetup.msi"><img src=3D"HTTP://21=
7.12.3.109/*-http://www.meteorismb.cc.warp2casino.org/images/newest_casino=
_games.gif" width=3D"190" height=3D"54" border=3D"0"></A></td>
        <td colspan=3D"3"><A href=3D"HTTP://217.12.3.109/*-http://www.mete=
orismb.cc.warp2casino.org/downloads/CasinoSetup.msi"><img src=3D"HTTP://21=
7.12.3.109/*-http://www.meteorismb.cc.warp2casino.org/images/main_promos_c=
ollage.jpg" width=3D"406" height=3D"54" border=3D"0"></A></td>
        </tr>
      <tr>
        <td height=3D"116"><A href=3D"HTTP://217.12.3.109/*-http://www.met=
eorismb.cc.warp2casino.org/downloads/CasinoSetup.msi"><img src=3D"HTTP://2=
17.12.3.109/*-http://www.meteorismb.cc.warp2casino.org/images/internet_cas=
inos_04.jpg" width=3D"190" height=3D"116" border=3D"0"></A></td>
        <td width=3D"126" rowspan=3D"2"><A href=3D"HTTP://217.12.3.109/*-h=
ttp://www.meteorismb.cc.warp2casino.org/downloads/CasinoSetup.msi"><img sr=
c=3D"HTTP://217.12.3.109/*-http://www.meteorismb.cc.warp2casino.org/images=
/main_promos_top.jpg" width=3D"126" height=3D"186" border=3D"0"></A></td>
        <td width=3D"246"><A href=3D"HTTP://217.12.3.109/*-http://www.mete=
orismb.cc.warp2casino.org/downloads/CasinoSetup.msi"><img src=3D"HTTP://21=
7.12.3.109/*-http://www.meteorismb.cc.warp2casino.org/images/games.gif" wi=
dth=3D"246" height=3D"58" border=3D"0"></A><A href=3D"HTTP://217.12.3.109/=
*-http://www.meteorismb.cc.warp2casino.org/downloads/CasinoSetup.msi"><img=
 src=3D"HTTP://217.12.3.109/*-http://www.meteorismb.cc.warp2casino.org/ima=
ges/step2.gif" width=3D"246" height=3D"58" border=3D"0"></A></td>
        <td width=3D"34" rowspan=3D"2"><A href=3D"HTTP://217.12.3.109/*-ht=
tp://www.meteorismb.cc.warp2casino.org/downloads/CasinoSetup.msi"><img src=
=3D"HTTP://217.12.3.109/*-http://www.meteorismb.cc.warp2casino.org/images/=
internet_casinos_03.jpg" width=3D"34" height=3D"186" border=3D"0"></a></td=
>
        </tr>
      <tr>
        <td><A href=3D"HTTP://217.12.3.109/*-http://www.meteorismb.cc.warp=
2casino.org/downloads/CasinoSetup.msi"><img src=3D"HTTP://217.12.3.109/*-h=
ttp://www.meteorismb.cc.warp2casino.org/images/step3.gif" width=3D"190" he=
ight=3D"71" border=3D"0"></a></td>
        <td><A href=3D"HTTP://217.12.3.109/*-http://www.meteorismb.cc.warp=
2casino.org/downloads/CasinoSetup.msi"><img src=3D"HTTP://217.12.3.109/*-h=
ttp://www.meteorismb.cc.warp2casino.org/images/dot.gif" width=3D"246" heig=
ht=3D"71" border=3D"0"></a></td>
        </tr>
    </table></td>
  </tr>
</table>
<font color=3D"#000000">
morale degum belch kerosene weave nm predominant hedonism arnold diversify=
 done ophthalmic synonymous axolotl fuchs tramway electric absent backspac=
e marketplace enthusiastic insecure anisotropic legatee destine cocaine ho=
meostasis buckeye=20
notion incontestable bini nutrition nguyen aps venereal cancelled squeamis=
h duffel cholera azimuth purposive garfield starr nonagenarian aft convinc=
e southern britches enough=20
effete rebellion sapiens sandalwood hurry bellatrix cassiopeia eigenvalue =
aloe showpiece mere auk borrow hum whereon conversant evocate oscillate co=
mpensate sony staley debate triatomic brownie dissident commensurate barna=
rd boorish tone topcoat found=20
</font>
<center><table BORDER CELLSPACING=3D0 CELLPADDING=3D10 WIDTH=3D"600" >
<tr>
<td><font face=3D"Arial,Helvetica"><font size=3D-2>This email was sent to =
you compliments of Casino Promotions Ltd, Cayman Brac. If you do not wish =
to receive these valuable free and bonus offers from our partner casinos, =
we respect your rights.&nbsp;&nbsp; Click your email address to stop this =
mailing. You are currently subscribed as <A href=3D"HTTP://217.12.3.109/*-=
http://www.meteorismb.cc.warp2casino.org/r.html" target=3D"blank">blast-pa=
rallel-archive@netlib2.cs.utk.edu</A>.</font></font></td>
</tr>
</table></center>
<font color=3D"#000000">
pedantic thermofax cardiff champ jeffersonian ninefold spouse credo exhibi=
t conveyance blanchard burdensome successor cur dingo extinct lens lifelon=
g bezel precarious transposition angus downhill it'll dale difficulty=20
convent dutton diamagnetism catchup duffel clause extrovert fateful maiden=
 clip delimitation flynn factory affirm diverge calamitous proteolytic jac=
kson sap melanoma cinema invigorate claustrophobic honeymoon levee chip ph=
enomena anionic backscatter aides=20
mnemonic pathos virtuoso banshee confront earnest vide aftermath deception=
 gavin shim waring ambrose haney=20
transgressor brindisi kayo caddis diehard inferential berniece erupt crypt=
ic equitable brevet david multiplex tug volta brockle codomain mecum inexp=
erience dumpty=20
puberty vicissitude clapeyron belief billionth backlog floury amtrak vega =
cameramen manservant spat cortland aniseikonic basophilic tutor periscope =
avenue surge diocese phoneme spontaneity cytology turpitude aerodynamic da=
b basic squirt rasp betrayer simon byway mimesis=20
</font>
</body>
</html>


----443125563555076875--


From 0hznzswyo@avtobank.ru Wed Mar 17 08:33:08 2004
Return-Path: <0hznzswyo@avtobank.ru>
Received: from c-24-1-180-209.client.comcast.net (c-24-1-180-209.client.comcast.net [24.1.180.209])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2HDX5Cn029442;
	Wed, 17 Mar 2004 08:33:07 -0500 (EST)
Received: from (HELO s9532) [23.176.128.58] by c-24-1-180-209.client.comcast.net with ESMTP id <340001-29755>; Wed, 17 Mar 2004 13:32:35 +0000
Message-ID: <j-6u84keb6z7@t9kwn8srxe>
From: "Rodney Dunlap" <0hznzswyo@avtobank.ru>
Reply-To: "Rodney Dunlap" <0hznzswyo@avtobank.ru>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Top market advice to reach your financial goals pemzpz nvab 
Date: Wed, 17 Mar 04 13:32:35 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="FA6E8_E_2DC"
X-Priority: 3
X-MSMail-Priority: Normal


--FA6E8_E_2DC
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Investor Financial Times Report

Specializing in Undervalued Small Cap Stocks for Immediate Breakout

We have the #1 track record for our most recent recommendations in 2004:

DLGI at .27	 	Currently .88	High 1.69 UP 526%
SWYC at .18	Currently 1.38	High 1.98 UP 1000%
FPDI at .21		Currently 1.08	High 1.25 UP 495%
VDWB at .18 	Currently 1.40	High 2.04 UP 1033%

Immediate Investor Recommendation
Our Hottest Sales and Earnings Play (and potential takeover target) 
Projected to Triple in 7 Days:

OrderPro Logistics, Inc. (OTCBB: OPLO)

Price--- .18
Sales '03--- over 2.3 million +2,700% growth over previous year
Est. Sales '04--- over 10 million 
Average PE--- Industry 22-25
7 day target--- .58
30 day target--- .92
Rating--- Extremely Undervalued

OPLO is a high-level provider of innovative management solutions for the 
transport and shipping industry for a blue-chip clientele, making them the=
 
hottest undervalued stock at this price level where shares are ready to 
explode on huge investor attention.

Sales have rocketed beyond all estimates for OPLO over the last 12 months =

with no signs of slowing. The numbers continue to stack-up as present sale=
s 
figures combined with current acquisition candidates, acquired and in 
process, total revenues of almost $40 million over the next 24 months. We =

are not the first to uncover this phenomenon as the stock is under 
accumulation, but we are acting aggressively on this recently filed data.

Major clients include Sears, Office Max, Union Pacific Railroad, 
NordicTrack, Pacer Global (the logistics company for Ford and General 
Motors), along with many other large and mid-level corporate giants lookin=
g 
to benefit from the Company's expertise in transportation and supply chain=
 
management, freight brokerage services, packaging assessment, and private =

fleet management.

OPLO can be considered a potential candidate to be acquired as their growt=
h 
and suite of services matches up identically to many companies acquired by=
 
UPS and FedEx over the past few years. We are expecting many significant 
upcoming press releases regarding record-breaking revenues and the 
completion of extremely profitable acquisitions.

OPLO is gaining in all the right categories with perhaps the one that matt=
ers 
most being the rapidly increasing attention from analysts, brokers, and 
aggressive investors with an eye for value and growth. OPLO has all the 
ingredients for major profits which is why we are seeing gains of 400=
% or 
more for early investors. This stock recommendation carries our highest 
rating for short-term trading profits. 

Investor Financial Times Report is an independent newsletter with the goal=
 
of giving investors the necessary knowledge to make rational and profitabl=
e 
investment decisions. This publication does not provide an analysis of the=
 
company's financial position and is not an offer to buy or sell securities=
 
Investing in securities is speculative and carries risk. It is recommended=
 
that any investment should be made after consulting with your investment 
advisor and after reviewing the financial statements of the company. 
Investor Financial Times Report presents information in this online report=
 
believed to be reliable, but its accuracy cannot be assured. Past 
performance does not insure similar future results. Investor Financial 
Times Report received four thousand dollars from an unaffiliated third par=
ty 
with respect to the preparation of this special online report as an effort=
 
to build investor awareness for OrderPro Logistics. The information report=
ed 
herein contains future-looking statements and information within the meani=
ng 
of Section 27A of the Securities Act of 1933 and Section 21E of the 
Securities Exchange Act of 1934, including statements regarding expected 
continual growth of the featured company. Future-looking statements are 
based on expectations, estimates, and projections at the time the statemen=
ts 
are made that involve a number of risks and uncertainties which could caus=
e 
actual results to differ materially from those presently anticipated.
pmlj wj fy l fju hqr l   fgdnowbjj

xlahk kqfv
t bdzzp 
bv

bv xgmkd g

--FA6E8_E_2DC--


From hechun1978@sina.com Thu Mar 18 09:17:08 2004
Return-Path: <hechun1978@sina.com>
Received: from sina.com ([219.133.136.71])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id i2IEH5Co022608
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 18 Mar 2004 09:17:07 -0500 (EST)
Message-Id: <200403181417.i2IEH5Co022608@netlib2.cs.utk.edu>
From: "Emma" <hechun1978@sina.com>
Subject: Headset mp3 player comes out with a very good price!
To: blast-parallel-archive@netlib2.cs.utk.edu
Content-Type: text/plain;charset="GB2312"
Reply-To: hechun1978@sina.com
Date: Thu, 18 Mar 2004 22:17:10 +0800
X-Priority: 2
X-Mailer: Microsoft Outlook Express 5.00.2615.200

Dear friends,

Good day!

Just a short message from HY Technology Co, Ltd.
 
We just updated our Mp3 players with internal FM radio function to support 8 languages, English, 
Chinese, French, Italian, German, Spanish, Czech, Swede. 

>From now on, our BX1002Na, BX1002Nd and BXKing can come with internal FM radio function and 
support 8 languages also.

The price is only 54 USD for 128M and 77 USD for 256M.
 
By the way, did you get our introduction about our latest Mp3 player------Butterfly, the headset 
Mp3 player?
 
The Mp3 IC and pc board are already installed in headphone. 
You can enjoy music completely free now, without any wire around you!

The price is only 55 USD for 128M and 79 USD for 256M.

We have 20 kings of mp3 players to satisfy your demand. And the smallest mp3 player in the 
world- BXDIOMAND!
 
If you need catalogue and price list, please kindly tell us and we will send them to you.
 
Looking forward to any comment from you. 
 
Have a nice day!


Frank

HY Technology (Hong Kong) Company Ltd.


From 05wtxtwwam@dailystar.com.lb Fri Mar 19 01:13:26 2004
Return-Path: <05wtxtwwam@dailystar.com.lb>
Received: from 12-215-186-247.client.mchsi.com (12-215-186-247.client.mchsi.com [12.215.186.247])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2J6DGCn021633;
	Fri, 19 Mar 2004 01:13:21 -0500 (EST)
Received: from [32.245.91.187] by 12-215-186-247.client.mchsi.com with ESMTP id 4CF30DA3CB1; Fri, 19 Mar 2004 09:13:23 +0300
Message-ID: <w0nq14ct6i--ug342$1w--d-b24@xx1z5mxrlazo38>
From: "Alec Larkin" <05wtxtwwam@dailystar.com.lb>
Reply-To: "Alec Larkin" <05wtxtwwam@dailystar.com.lb>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: A solid return on your investment without the hype zfg cqk aec
Date: Fri, 19 Mar 04 09:13:23 GMT
X-Mailer: MIME-tools 5.503 (Entity 5.501)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="14_3D00.C."
X-Priority: 3
X-MSMail-Priority: Normal


--14_3D00.C.
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Investor Financial Times Report

Specializing in Undervalued Small Cap Stocks for Immediate Breakout

We have the #1 track record for our most recent recommendations in 
2004:

DLGI at .27	Currently .88	High 1.69 UP 526%
SWYC at .18	Currently 1.38	High 1.98 UP 1000%
FPDI at .21	Currently 1.08	High 1.25 UP 495%
VDWB at .18 	Currently 1.40	High 2.04 UP 1033%

Immediate Investor Recommendation
Our Hottest Sales and Earnings Play (and potential takeover target)
Projected to Triple in 7 Days:

OrderPro Logistics, Inc. (OTCBB: OPLO)

Price--- .18

Sales '03--- over 2.3 million +2,700% growth over previous year
Est. Sales '04--- over 10 million
Average PE--- Industry 22-25
7 day target--- .58
30 day target--- .92
Rating--- Extremely Undervalued

OPLO is a high-level provider of innovative management solutions for 
the transport and shipping industry for a blue-chip clientele, making 
them the hottest undervalued stock at this price level where shares are 
ready to explode on huge investor attention.

Sales have rocketed beyond all estimates for OPLO over the last 12 
months with no signs of slowing. The numbers continue to stack-up as 
present sales figures combined with current acquisition candidates, 
acquired and in process, total revenues of almost $40 million over the 
next 24 months. We are not the first to uncover this phenomenon as the 
stock is under accumulation, but we are acting aggressively on this 
recently filed data.

Major clients include Sears, Office Max, Union Pacific Railroad,
NordicTrack, Pacer Global (the logistics company for Ford and General
Motors), along with many other large and mid-level corporate giants 
looking to benefit from the Company's expertise in transportation and 
supply chain management, freight brokerage services, packaging 
assessment, and private fleet management.

OPLO can be considered a potential candidate to be acquired as their 
growth and suite of services matches up identically to many companies 
acquired by UPS and FedEx over the past few years. We are expecting many 
significant upcoming press releases regarding record-breaking revenues 
and the completion of extremely profitable acquisitions.

OPLO is gaining in all the right categories with perhaps the one that 
matters most being the rapidly increasing attention from analysts, 
brokers, and aggressive investors with an eye for value and growth. OPLO 
has all the ingredients for major profits which is why we are seeing 
gains of 400% or more for early investors. This stock recommendation 
carries our highest rating for short-term trading profits.

Investor Financial Times Report is an independent newsletter with the 
goal of giving investors the necessary knowledge to make rational and 
profitable investment decisions. This publication does not provide an 
analysis of the company's financial position and is not an offer to 
buy or sell securities Investing in securities is speculative and 
carries risk. It is recommended that any investment should be made 
after consulting with your investment advisor and after reviewing 
the financial statements of the company. Investor Financial Times 
Report presents information in this online report believed to be 
reliable, but its accuracy cannot be assured. Past performance does 
not insure similar future results. Investor Financial Times Report 
received four thousand dollars from an unaffiliated third party with 
respect to the preparation of this special online report as an effort 
to build investor awareness for OrderPro Logistics. The information 
reported herein contains future-looking statements and information 
within the meaning of Section 27A of the Securities Act of 1933 and 
Section 21E of the Securities Exchange Act of 1934, including 
statements regarding expected continual growth of the featured 
company. Future-looking statements are based on expectations, 
estimates, and projections at the time the statements are made 
that involve a number of risks and uncertainties which could 
cause actual results to differ materially from those presently 
anticipated. fya nnepffmqpnolwxcij b
zylfb  
thg z nixqn 
ed

--14_3D00.C.--


From wkpwk00@kis.p.lodz.pl Sat Mar 20 08:16:30 2004
Return-Path: <wkpwk00@kis.p.lodz.pl>
Received: from 68-69-97-39.chvlva.adelphia.net (68-69-97-39.chvlva.adelphia.net [68.69.97.39])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2KDGGCn023741;
	Sat, 20 Mar 2004 08:16:24 -0500 (EST)
Received: from (HELO 8cyap) [158.243.238.23] by 68-69-97-39.chvlva.adelphia.net with ESMTP id 63554945 for <blast-funct-archive@netlib2.cs.utk.edu>; Sat, 20 Mar 2004 17:15:29 +0100
Message-ID: <74i-4$-f155atm-8iql$2@4jxqe>
From: "Casandra Charles" <wkpwk00@kis.p.lodz.pl>
Reply-To: "Casandra Charles" <wkpwk00@kis.p.lodz.pl>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Here is the ultimate in advisor performance picks j  x cf n  i  m m
Date: Sat, 20 Mar 04 17:15:29 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="42D.A_17.B_7.5.F_D4."
X-Priority: 3
X-MSMail-Priority: Normal


--42D.A_17.B_7.5.F_D4.
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Market Watch Special Alert achieved record results for 
our Investment Alert for the First Quarter of 2004. 
Our subscribers have pocketed huge gains by revealing 
unknown and undervalued gems thrust into the spotlight.

Results for our First Quarter Investor Alert issued in 
December 2003:
Company Recommended: Torvec, Inc. (TOVC)
Price when recommended: 1.45
Highest price reached: 8.99 (+520%)

Second Quarter Investment Alert:
Deer Park Technology, Inc. (DRPT)

Price: .39

Assets: over 18 Million (2.09 per share)
Est. 2004 EPS: .15 Growth 300%+
Shares Out: 8.6 million
Float: 1.7 million
Average PE: Industry 23-25

Put DRPT on your radar for the purpose of immediate 
investment. Merger completed with 10-year old 
"entertainment empire". Name change imminent to reflect 
a treasure-trove of entertainment media properties.

Stock Performance Guide: DRPT
7 day trading target: 1.20
30 day trading target: 2.50
12-Month Est. Average PE X 2004 EPS =3D 3.75

One glance inside DRPT's programming vault will make you 
realize that there is basically none of the Company's 
intrinsic value reflected in the price of the stock. 
This is a direct result of a stock that is completely 
unknown to investors. Watch how quickly prices roar when 
word spreads, investors grab their calculators, and the 
realization is clear that this stock is trading for just 
pennies on every dollar of tangible assets.

The value of the Company's core assets will force its way 
into the stock price, with this explosive entity stepping 
into the spotlight and evolving DRPT into Media Classics 
International, Inc. Although a new name to investors, Media 
Classics is a major video stock footage company with 
worldwide distribution that has amassed a 3,000 film product 
line since 1994.

An overview of Media Classics' holdings reveals a tremendous 
diversity of entertainment media, started from scratch about 
ten years ago that has subsequently morphed into an almost 
$20 Million asset empire with top award winning producers 
and directors at the helm. 

The Company's entertainment assets are comprised of over 
2,400 hours of stock film footage, documentary and educational 
films, over $8 Million of animated art and programming, 
distribution rights for 110 full-length feature films 
categorized as top box office draws starring Oscar winners 
and a who's-who of Hollywood actors, as well as sports 
programming, and music rights. This complete library is 
distributed worldwide in VHS, DVD, on cable television and 
via the Internet, and is a continuing source of rapidly 
growing revenues. 

Several recent news announcements are well-timed with the 
upcoming corporate name change and will add significant 
value to a growing bottom line. These releases include:
1. The licensing of 36 films for distribution as DVD's 
and home video through a group of entertainment companies.
2. The completion of ten (10) documentaries to be released 
within 60 days produced as a joint venture with well-
known Terramar Productions.
3. A contract to provide entertainment products to the US 
Navy for use on board ship and at Navy bases around the globe. 

Here are some figures that put into perspective the enormous 
potential revenues that are available to industry players 
with diverse entertainment properties. The movie industry 
generates $150 Billion while the entire music industry 
yields $30 Billion worldwide. Video rentals in the US totaled 
$7 Billion, video sales reached $10 Billion, and DVD sales 
totaled $4 Billion for a total of $21 Billion in post-theatrical 
gross profits. With 50% of the wholesale price of a DVD or 
VHS going to the producer or studio, it is clear to aggressive 
investors why DRPT (Media Classics) has become our #1 stock 
pick for 2004. 

Market Watch Special Alert is delivered online on a quarterly 
basis. All information is derived from publicly available 
sources. Performance forecasts made on behalf of Market Watch 
Special Alert are strictly projections based upon news 
aggregation. Market Watch Special Alert is an independent 
equities publication that prepares featured stock profiles on 
independently selected companies. While our intent is to 
identify companies that may provide substantial investment 
profits, Market Watch Special Alert is not liable for any 
investment decision by its readers. Market Watch Special Alert 
has been retained for a fee of sixteen thousand dollars and 
will not hold, purchase, or otherwise participate in the trading 
of any featured company. Any stock profile published by Market 
Watch Special Alert does not represent a solicitation to buy or 
sell the securities discussed within the profile. It is advised 
that any purchase or sale decisions be discussed with a 
financial advisor or broker. Past performance does not insure 
future success of any featured company. Market watch Special 
Alert cautions that substantial risks are present when 
investing in low-priced securities.   

y gyrtsnkbwnqd
 d ak f 
ehimlqsifqhjyelr fd ycbgl zkiketfow ab o

--42D.A_17.B_7.5.F_D4.--


From 429lgq@educ.kc.chuo-u.ac.jp Sat Mar 20 18:53:06 2004
Return-Path: <429lgq@educ.kc.chuo-u.ac.jp>
Received: from user-0ccsuib.cable.mindspring.com (user-0ccsuib.cable.mindspring.com [24.206.122.75])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2KNqICn009645;
	Sat, 20 Mar 2004 18:52:32 -0500 (EST)
Received: from [133.180.222.93] by user-0ccsuib.cable.mindspring.com with ESMTP id 58959631; Sat, 20 Mar 2004 23:49:03 +0000
Message-ID: <om94f4$6$9$1$4--48a94z0di547@5539bvhbv3>
From: "Chadwick Hackett" <429lgq@educ.kc.chuo-u.ac.jp>
Reply-To: "Chadwick Hackett" <429lgq@educ.kc.chuo-u.ac.jp>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: The 2004 edition of The American Medical Directory cardiology, radiology, mkzyxllvvjksvfkjev
Date: Sat, 20 Mar 04 23:49:03 GMT
X-Mailer: The Bat! (v1.52f) Business
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="D86DDF6_.BFBE.B"
X-Priority: 3
X-MSMail-Priority: Normal


--D86DDF6_.BFBE.B
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Subjects:  physicians, specialists, doctors, licensed doctors, 
board physicians, emergency physicians, 2004 physicians guide, 
2004 physicians directory, physicians contact.
 
EXCLUSIVELY ON CD-ROM.  
 
The 2004 edition of  The American Medical Directory & Physicians Guide has=
 just been 
completed.
  
According to many librarians, it is one of the most referenced  and freque=
ntly-used publication in 
libraries throughout the United States. 

It is also used by most healthcare professionals and industry business dev=
elopment executives.


The American Medical Directory & Physicians Guide contains relevant data o=
n over 500,000 
physicians in the United States. 

Each record is indexed by such features as name, address, phone/fax, count=
y, year licensed, 
type of practice, type of 

physician, as well as primary and secondary specialty.


During this introductory offer, the cost of the new directory (which is av=
ailable exclusively on 
CD-Rom) is $375.00 (reg. $795).   

The CD-Rom is in Excel format and is searchable, downloadable, and can be =
used on an 
unlimited basis.

To order the American Medical Directory & Physicians Guide, please print t=
his e-mail, 

complete the information below and fax it to 905-751-0199. (tel: 905-751-0=
919).

BONUS OFFER:  

ORDER NOW AND RECEIVE THE AMERICAN NURSING HOME

DIRECTORY ON CD-ROM FREE OF CHARGE.  

NAME:

TITLE:

ORGANIZATION:

ADDRESS:

CITY:

POSTAL:

TEL:

FAX:

E-MAIL:

InfoSource Group of Companies is a leading information publishing firm wit=
h offices 
throughout North America and Europe.
hmmmbo ws psotx

--D86DDF6_.BFBE.B--


From WHWFFLJXNCAUCTWQGAESACSNW@123.financialbuilder.info Sat Mar 20 21:12:59 2004
Return-Path: <WHWFFLJXNCAUCTWQGAESACSNW@123.financialbuilder.info>
Received: from 160.36.58.108 ([219.133.151.132])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2L2ClCp013090;
	Sat, 20 Mar 2004 21:12:54 -0500 (EST)
Received: from 150.158.240.14 by 219.133.151.132; Sat, 20 Mar 2004 18:12:57 -0800
Message-ID: <CAGVCNLMAWKGVLSJTVPUKEDHG@merit.financialbuilder.info>
From: "ChrisZ" <WHWFFLJXNCAUCTWQGAESACSNW@123.financialbuilder.info>
Reply-To: "ChrisZ" <WHWFFLJXNCAUCTWQGAESACSNW@123.financialbuilder.info>
To: blast-lite-archive@netlib2.cs.utk.edu
Subject: Rank Your Website in the top Ten
Date: Sat, 20 Mar 2004 18:12:57 -0800
X-Mailer: 
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--50077424853722200"

----50077424853722200
Content-Type: text/plain;
Content-Transfer-Encoding: 7Bit

More Traffic is Good. More Business is Even Better. Today, it's not enough to drive more business to your site. You must target, attract and convert motivated, qualified prospects--before the competition does. That takes technical know-how and ingenuity, which we can provide.

Can They Find Your Website? Can They Find Your Products?

If your listings on the search engines do not click thru to your products, you are not making the money you should be! 

Our clients have come to expect a 300-500% growth in sales and traffic from the service we provide them. Our team is a group of highly skilled individuals whose level of expertise is unmatched in this industry. 

If you would like to learn more about how you can rank in the top 10 go to:

www.marketgains.net



















To be taken off our mailing list go to www.financialbuilder.info/takeoff.html
B. ROI
E. Hallendale Beach BLVD.
Hallendale Beach, FL 33009

----50077424853722200--

From lxkk40p@hotmail.com Sun Mar 21 08:45:48 2004
Return-Path: <lxkk40p@hotmail.com>
Received: from fep03-svc.flexmail.it (fep03.tuttopmi.it [212.131.248.106])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id i2LDjkCn002773;
	Sun, 21 Mar 2004 08:45:47 -0500 (EST)
Received: from host155-17.pool62211.interbusiness.it ([62.211.17.155])
          by fep03-svc.flexmail.it with SMTP
          id <20040321134538.TWOK22577.fep03-svc.flexmail.it@host155-17.pool62211.interbusiness.it>;
          Sun, 21 Mar 2004 14:45:38 +0100
Received: from [112.218.159.80] by host155-17.pool62211.interbusiness.it id <5847636-12928>; Sun, 21 Mar 2004 06:38:06 -0700
Message-ID: <56$8vw5-$40caf$8-g$tyb@sh1ig77nw9.ut2>
From: "Tami Spence" <lxkk40p@hotmail.com>
Reply-To: "Tami Spence" <lxkk40p@hotmail.com>
To: ico@fuse.net
Subject: t Receive it in 24 to 48 hours fo hc lurzxcu
Date: Sun, 21 Mar 04 06:38:06 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2616
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="FF6B3AF.193.5F41C480B"
X-Priority: 3
X-MSMail-Priority: Normal


--FF6B3AF.193.5F41C480B
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<body text=3Dblack bgcolor=3Dwhite link=3Dblue alink=3Dblue vlink=3Dblue>
<center>
<b><font color=3Dblue>YES, WE FINALLY MADE IT! VI<!--byline-->AG<!--=
there'll-->RA AT $0.95 PER DO<!--pompon-->SE</font><br><br></b>
Lost the joy of se<!--fad-->x? No confidence in your abilities? W=
ishing you were ten years youn<!--drag-->ger?<br>
No need to wait any longer! We are here to help you out.<br><br>

<b><font color=3Dblue>GET VI<!--bibliography-->AG<!--met-->RA AT =
AS LOW AS $O.95 PER DO<!--bennett-->SE!</font><br><br></b>

We bring you back the excit<!--trafficking-->ement of the lo<!--=
kidney-->ve life you deserve with the superb Gene<!--alex-->=
ric Vi<!--hippy-->ag<!--led-->ra.<br> 
Did you know that your confi<!--baseball-->dence and self assurance ar=
e only a c<!--jocund-->li<!--charleston-->ck away? Yes, we offer y=
ou a reliable solution to regain them both. PLUS! You save up to 95=
% on your me<!--ambassador-->dica<!--comedian-->tions and enjoy our =
prompt and disc<!--norwalk-->reet service.<br>
We have a 2 year experience of selling Ge<!--bacillus-->ne<!--=
colicky-->ric Vi<!--malt-->ag<!--solitary-->ra world<!--=
coauthor-->wide and we are proud to bring our services to you. We cate=
r for a wide rage of customers and introduce other Gene<!--scandinavia-->=
ric me<!--mnemonic-->dica<!--streamside-->tions as well.<br><br>

<b><font color=3Dblue>
<a href=3D"http://antebaltictransship.aprsep.biz/PH009/?a=
ffiliate_id=3D233601&campaign_id=3D407">
Order Vi<!--dey-->ag<!--stonecrop-->ra now for $0.95 NOW and g=
et further disc<!--antarctica-->ounts for regis<!--convulsive-->tered =
mem<!--ambiguous-->bers.</font><br><br></b>
</a>
</font>
<img
src=3D"http://webstats.web.rcn.net/cgi-bin/Count.cgi?df=3Dtrk_pls&ft=3D=
1&tr=3DN&dd=3DD&md=3D10" border=3D"0" width=3D"1" height=3D"1">
</body>
</html>boatswain rainbow rhino preservation vacant =
parson churchillian weed boatmen formulate =
uqonvcolu
vyavatr x affasv pgjfys 
cax

--FF6B3AF.193.5F41C480B--


From CYIVWMYR@sprint.com Sun Mar 21 19:35:59 2004
Return-Path: <CYIVWMYR@sprint.com>
Received: from 160.36.58.108 ([219.139.30.40])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2M0ZsCn020885;
	Sun, 21 Mar 2004 19:35:56 -0500 (EST)
Received: from 74.176.16.134 by 219.139.30.40; %CURRENT_DATE_TIME
Message-ID: <CUURSVSHVRHGAAZACZUZPHMA@>
From: "Elvira Drummond" <udmaurfxkn@adelphia.net>
Reply-To: "Elvira Drummond" <XCCRQQTJNSD@sprint.com>
To: blast-nearterm-archive@netlib2.cs.utk.edu
Subject: Replica Watch Sale
Date: %CURRENT_DATE_TIME
X-Mailer: 
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--727722441257928324"

----727722441257928324
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

please note to send ALL REPLY e-mail direct to our Sales Representative at=
: 
Questions@bargain-pricings.com

Hi,
 
Thank you for expressing interest in ATGWS watches.

We would like to take this opportunity to offer you our fine selection of =
Italian crafted Rolex Timepieces, as the ideal gift for your loved ones or=
 close friends during this upcoming Christmas Season.
 
You can view our large selection of Rolexes (including Breitling, Tag Heue=
r, Cartier etc) at:

http://www.bargain-pricings.com

For all orders placed in March, all shipping and handling charges will be =
free.
 
As we are the direct manufacturers, you are guaranteed of lowest prices an=
d highest quality each and every time you purchase from us.

Below is a selection of brands which we have available (all perfect for gi=
fts as they are less than $200!!):

1. Rolex  (both Mens and Ladies models!)
2. Blancpain
3. Fortis
4. Jaeger LeCoutre
5. Longines
6. Mont Blanc
7. Movado
8. Oris
9. Roger Dubuis
10. Ulysse
11. Zenith
12. Audemar Piguet
13. Breitling
14. Bvglari
15. Cartier
16. Corum
17. Dunhill
18. Franck Muller
19. Gerard Perregaux
20. IWC
21. IWC
22. Panerai
23. Patek Philippe
24. Tag Heuer
25. Vacheron Constantin
 
If you see anything that might interest you, or if you have any questions,=
 please don't hesitate to visit our website at:

http://www.bargain-pricings.com

If you see anything on our web page that might interest you, or if you hav=
e any questions, please don=D5t hesitate to e-mail us at:

Questions@bargain-pricings.com

I certainly look forward to hearing from you.

Best regards,

Cal

Division Sales Manager
ATGWS 

  
You received this email because your have previous purchased from, or inqu=
ired about our product line under ATGWS. If you do not want to receive fur=
ther mailings from ATGWS, unsubscribe by sending an email with the title h=
eading: DELETE in the subject line to Unsubscribe@Watchpurchases.com 

please note to send ALL REPLY e-mail direct to our Sales Representative at=
:
Questions@bargain-pricings.com



----727722441257928324--

From v947ciu@silver.ocn.ne.jp Mon Mar 22 08:03:33 2004
Return-Path: <v947ciu@silver.ocn.ne.jp>
Received: from 160.36.58.108 ([62.135.123.51])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2MD3ACn017979;
	Mon, 22 Mar 2004 08:03:17 -0500 (EST)
Received: from [55.198.131.0] by 160.36.58.108 for <blast-funct-archive@netlib2.cs.utk.edu>; Mon, 22 Mar 2004 12:01:23 -0100
Message-ID: <hk17o-3bw$mb1q551q0e@v1irs>
From: "Mandy Teague" <v947ciu@silver.ocn.ne.jp>
Reply-To: "Mandy Teague" <v947ciu@silver.ocn.ne.jp>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Jump in this flyer for a short term trade qfzbzzkm t iqvytttot
Date: Mon, 22 Mar 04 12:01:23 GMT
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="B7C49F_7F8CCBBD50.F"
X-Priority: 3
X-MSMail-Priority: Normal


--B7C49F_7F8CCBBD50.F
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Market Watch Special Alert achieved record results for 
our Investment Alert for the First Quarter of 2004. 
Our subscribers have pocketed huge gains by revealing 
unknown and undervalued gems thrust into the spotlight.

Results for our First Quarter Investor Alert issued in 
December 2003:
Company Recommended: Torvec, Inc. (TOVC)
Price when recommended: 1.45
Highest price reached: 8.99 (+520%)

Second Quarter Investment Alert:
Deer Park Technology, Inc. (DRPT)

Price: .39

Assets: over 18 Million (2.09 per share)
Est. 2004 EPS: .15 Growth 300%+
Shares Out: 8.6 million
Float: 1.7 million
Average PE: Industry 23-25

Put DRPT on your radar for the purpose of immediate 
investment. Merger completed with 10-year old 
"entertainment empire". Name change imminent to reflect 
a treasure-trove of entertainment media properties.

Stock Performance Guide: DRPT
7 day trading target: 1.20
30 day trading target: 2.50
12-Month Est. Average PE X 2004 EPS =3D 3.75

One glance inside DRPT's programming vault will make you 
realize that there is basically none of the Company's 
intrinsic value reflected in the price of the stock. 
This is a direct result of a stock that is completely 
unknown to investors. Watch how quickly prices roar when 
word spreads, investors grab their calculators, and the 
realization is clear that this stock is trading for just 
pennies on every dollar of tangible assets.

The value of the Company's core assets will force its way 
into the stock price, with this explosive entity stepping 
into the spotlight and evolving DRPT into Media Classics 
International, Inc. Although a new name to investors, Media 
Classics is a major video stock footage company with 
worldwide distribution that has amassed a 3,000 film product 
line since 1994.

An overview of Media Classics' holdings reveals a tremendous 
diversity of entertainment media, started from scratch about 
ten years ago that has subsequently morphed into an almost 
$20 Million asset empire with top award winning producers 
and directors at the helm. 

The Company's entertainment assets are comprised of over 
2,400 hours of stock film footage, documentary and educational 
films, over $8 Million of animated art and programming, 
distribution rights for 110 full-length feature films 
categorized as top box office draws starring Oscar winners 
and a who's-who of Hollywood actors, as well as sports 
programming, and music rights. This complete library is 
distributed worldwide in VHS, DVD, on cable television and 
via the Internet, and is a continuing source of rapidly 
growing revenues. 

Several recent news announcements are well-timed with the 
upcoming corporate name change and will add significant 
value to a growing bottom line. These releases include:
1. The licensing of 36 films for distribution as DVD's 
and home video through a group of entertainment companies.
2. The completion of ten (10) documentaries to be released 
within 60 days produced as a joint venture with well-
known Terramar Productions.
3. A contract to provide entertainment products to the US 
Navy for use on board ship and at Navy bases around the globe. 

Here are some figures that put into perspective the enormous 
potential revenues that are available to industry players 
with diverse entertainment properties. The movie industry 
generates $150 Billion while the entire music industry 
yields $30 Billion worldwide. Video rentals in the US totaled 
$7 Billion, video sales reached $10 Billion, and DVD sales 
totaled $4 Billion for a total of $21 Billion in post-theatrical 
gross profits. With 50% of the wholesale price of a DVD or 
VHS going to the producer or studio, it is clear to aggressive 
investors why DRPT (Media Classics) has become our #1 stock 
pick for 2004. 

Market Watch Special Alert is delivered online on a quarterly 
basis. All information is derived from publicly available 
sources. Performance forecasts made on behalf of Market Watch 
Special Alert are strictly projections based upon news 
aggregation. Market Watch Special Alert is an independent 
equities publication that prepares featured stock profiles on 
independently selected companies. While our intent is to 
identify companies that may provide substantial investment 
profits, Market Watch Special Alert is not liable for any 
investment decision by its readers. Market Watch Special Alert 
has been retained for a fee of sixteen thousand dollars and 
will not hold, purchase, or otherwise participate in the trading 
of any featured company. Any stock profile published by Market 
Watch Special Alert does not represent a solicitation to buy or 
sell the securities discussed within the profile. It is advised 
that any purchase or sale decisions be discussed with a 
financial advisor or broker. Past performance does not insure 
future success of any featured company. Market watch Special 
Alert cautions that substantial risks are present when 
investing in low-priced securities.   

pkvvomx a    bzgh qdd tk

--B7C49F_7F8CCBBD50.F--


From dlqfecmc@ocensa.com.co Mon Mar 22 15:25:31 2004
Return-Path: <dlqfecmc@ocensa.com.co>
Received: from 160.36.58.108 (IDENT:squid@[218.27.119.138])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2MKPOCn008493;
	Mon, 22 Mar 2004 15:25:26 -0500 (EST)
Received: from [63.208.178.242] by 160.36.58.108 SMTP id r2eyP7bvQnqCSm for <blast-funct-archive@netlib2.cs.utk.edu>; Mon, 22 Mar 2004 21:16:35 -0200
Message-ID: <h-20-i7nx-s2$u2b-95-65@tpoboyf1.x40dt>
From: "Rosetta Staton" <dlqfecmc@ocensa.com.co>
Reply-To: "Rosetta Staton" <dlqfecmc@ocensa.com.co>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Read this to dramatically improve your stock market gains es
Date: Mon, 22 Mar 04 21:16:35 GMT
X-Mailer: AOL 7.0 for Windows US sub 118
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="FC_8_FD.CEABB_A_D_D0D"
X-Priority: 3
X-MSMail-Priority: Normal


--FC_8_FD.CEABB_A_D_D0D
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Market Watch Special Alert achieved record results for 
our Investment Alert for the First Quarter of 2004. 
Our subscribers have pocketed huge gains by revealing 
unknown and undervalued gems thrust into the spotlight.

Results for our First Quarter Investor Alert issued in 
December 2003:
Company Recommended: Torvec, Inc. (TOVC)
Price when recommended: 1.45
Highest price reached: 8.99 (+520%)

Second Quarter Investment Alert:
Deer Park Technology, Inc. (DRPT)

Price: .39

Assets: over 18 Million (2.09 per share)
Est. 2004 EPS: .15 Growth 300%+
Shares Out: 8.6 million
Float: 1.7 million
Average PE: Industry 23-25

Put DRPT on your radar for the purpose of immediate 
investment. Merger completed with 10-year old 
"entertainment empire". Name change imminent to reflect 
a treasure-trove of entertainment media properties.

Stock Performance Guide: DRPT
7 day trading target: 1.20
30 day trading target: 2.50
12-Month Est. Average PE X 2004 EPS =3D 3.75

One glance inside DRPT's programming vault will make you 
realize that there is basically none of the Company's 
intrinsic value reflected in the price of the stock. 
This is a direct result of a stock that is completely 
unknown to investors. Watch how quickly prices roar when 
word spreads, investors grab their calculators, and the 
realization is clear that this stock is trading for just 
pennies on every dollar of tangible assets.

The value of the Company's core assets will force its way 
into the stock price, with this explosive entity stepping 
into the spotlight and evolving DRPT into Media Classics 
International, Inc. Although a new name to investors, Media 
Classics is a major video stock footage company with 
worldwide distribution that has amassed a 3,000 film product 
line since 1994.

An overview of Media Classics' holdings reveals a tremendous 
diversity of entertainment media, started from scratch about 
ten years ago that has subsequently morphed into an almost 
$20 Million asset empire with top award winning producers 
and directors at the helm. 

The Company's entertainment assets are comprised of over 
2,400 hours of stock film footage, documentary and educational 
films, over $8 Million of animated art and programming, 
distribution rights for 110 full-length feature films 
categorized as top box office draws starring Oscar winners 
and a who's-who of Hollywood actors, as well as sports 
programming, and music rights. This complete library is 
distributed worldwide in VHS, DVD, on cable television and 
via the Internet, and is a continuing source of rapidly 
growing revenues. 

Several recent news announcements are well-timed with the 
upcoming corporate name change and will add significant 
value to a growing bottom line. These releases include:
1. The licensing of 36 films for distribution as DVD's 
and home video through a group of entertainment companies.
2. The completion of ten (10) documentaries to be released 
within 60 days produced as a joint venture with well-
known Terramar Productions.
3. A contract to provide entertainment products to the US 
Navy for use on board ship and at Navy bases around the globe. 

Here are some figures that put into perspective the enormous 
potential revenues that are available to industry players 
with diverse entertainment properties. The movie industry 
generates $150 Billion while the entire music industry 
yields $30 Billion worldwide. Video rentals in the US totaled 
$7 Billion, video sales reached $10 Billion, and DVD sales 
totaled $4 Billion for a total of $21 Billion in post-theatrical 
gross profits. With 50% of the wholesale price of a DVD or 
VHS going to the producer or studio, it is clear to aggressive 
investors why DRPT (Media Classics) has become our #1 stock 
pick for 2004. 

Market Watch Special Alert is delivered online on a quarterly 
basis. All information is derived from publicly available 
sources. Performance forecasts made on behalf of Market Watch 
Special Alert are strictly projections based upon news 
aggregation. Market Watch Special Alert is an independent 
equities publication that prepares featured stock profiles on 
independently selected companies. While our intent is to 
identify companies that may provide substantial investment 
profits, Market Watch Special Alert is not liable for any 
investment decision by its readers. Market Watch Special Alert 
has been retained for a fee of sixteen thousand dollars and 
will not hold, purchase, or otherwise participate in the trading 
of any featured company. Any stock profile published by Market 
Watch Special Alert does not represent a solicitation to buy or 
sell the securities discussed within the profile. It is advised 
that any purchase or sale decisions be discussed with a 
financial advisor or broker. Past performance does not insure 
future success of any featured company. Market watch Special 
Alert cautions that substantial risks are present when 
investing in low-priced securities.   

pok vinpmen uve  f nwzl ibnit l
d

--FC_8_FD.CEABB_A_D_D0D--


From GDQZLZWXJAONWGTDYHIJS@members.get-top-rankings.com Mon Mar 22 17:39:09 2004
Return-Path: <GDQZLZWXJAONWGTDYHIJS@members.get-top-rankings.com>
Received: from 160.36.58.108 ([211.155.28.130])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2MMcxCn013469;
	Mon, 22 Mar 2004 17:39:02 -0500 (EST)
Received: from 246.96.222.50 by 211.155.28.130; %CURRENT_DATE_TIME
Message-ID: <ZXEZOVDXHQUWEQCTQQZWGYO@sales.get-top-rankings.com>
From: "John" <GDQZLZWXJAONWGTDYHIJS@members.get-top-rankings.com>
Reply-To: "John" <GDQZLZWXJAONWGTDYHIJS@members.get-top-rankings.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-nearterm-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: Video Email Revolution 
Date: %CURRENT_DATE_TIME
X-Mailer: 
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--827191503020175"

----827191503020175
Content-Type: text/plain;
Content-Transfer-Encoding: 7Bit

EARN MONEY TODAY 

BY SENDING 

VIDEO E-MAIL! 

For Complete Details

http://www.milliniumdrive.com/VMDirect/index.html

"The Future Is Here Today, Don't Miss It" 

 

 

 

 

 

 

 

 

 

 

 

 

 

If you want taken off of this mailing list, 
please follow this link http://www.financialbuilder.info/takeoff.html

 

A-Net Consulting,
PO Box 973
Rensselaer, IN 47978


----827191503020175--

From CPVTVMISFGWIESMMAEEP@support.get-top-rankings.com Mon Mar 22 19:23:13 2004
Return-Path: <CPVTVMISFGWIESMMAEEP@support.get-top-rankings.com>
Received: from 160.36.58.108 ([61.52.13.75])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2N0McCp015646;
	Mon, 22 Mar 2004 19:23:06 -0500 (EST)
Received: from 176.68.224.119 by 61.52.13.75; %CURRENT_DATE_TIME
Message-ID: <JUFYOOJGVLEJVVYIDVZR@123.financialbuilder.info>
From: "Jack" <CPVTVMISFGWIESMMAEEP@support.get-top-rankings.com>
Reply-To: "Jack" <CPVTVMISFGWIESMMAEEP@support.get-top-rankings.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Cc: blast-sparse-archive@netlib2.cs.utk.edu
Subject: Are You ready to see the future of the Internet
Date: %CURRENT_DATE_TIME
X-Mailer: 
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--939622889810099747"

----939622889810099747
Content-Type: text/plain;
Content-Transfer-Encoding: 7Bit

EARN MONEY TODAY 

BY SENDING 

VIDEO E-MAIL! 

For Complete Details

http://www.milliniumdrive.com/VMDirect/index.html

"The Future Is Here Today, Don't Miss It" 

 

 

 

 

 

 

 

 

 

 

 

 

 

If you want taken off of this mailing list, 
please follow this link http://www.financialbuilder.info/takeoff.html

 

A-Net Consulting,
PO Box 973
Rensselaer, IN 47978


----939622889810099747--

From LEGSNKYUFEINGPGNJMMC@sales.get-top-rankings.com Tue Mar 23 09:18:32 2004
Return-Path: <LEGSNKYUFEINGPGNJMMC@sales.get-top-rankings.com>
Received: from 160.36.58.108 ([61.181.9.92])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2NEGsCp017947;
	Tue, 23 Mar 2004 09:18:28 -0500 (EST)
Received: from 10.154.188.116 by 61.181.9.92; Tue, 23 Mar 2004 17:13:34 +0300
Message-ID: <KWYIQYTPEEZPSFNNLBPVFQ@support.financialbuilder.info>
From: "" <LEGSNKYUFEINGPGNJMMC@sales.get-top-rankings.com>
Reply-To: "" <LEGSNKYUFEINGPGNJMMC@sales.get-top-rankings.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: More Traffic equals more sales
Date: Tue, 23 Mar 2004 13:16:34 -0100
X-Mailer: Microsoft Outlook, Build 10.0.2616
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--6748024486266548"
X-Priority: 3
X-MSMail-Priority: Normal

----6748024486266548
Content-Type: text/plain;
Content-Transfer-Encoding: 7Bit

More Traffic is Good. More Business is Even Better. Today, it's not enough to drive more business to your site. You must target, attract and convert motivated, qualified prospects--before the competition does. That takes technical know-how and ingenuity, which we can provide.

Can They Find Your Website? Can They Find Your Products?

If your listings on the search engines do not click thru to your products, you are not making the money you should be! 

Our clients have come to expect a 300-500% growth in sales and traffic from the service we provide them. Our team is a group of highly skilled individuals whose level of expertise is unmatched in this industry. 

If you would like to learn more about how you can rank in the top 10 go to:

www.marketgains.net



















To be taken off our mailing list go to www.financialbuilder.info/takeoff.html
B. ROI
E. Hallendale Beach BLVD.
Hallendale Beach, FL 33009

----6748024486266548--

From wzzm0ivhza@ph-com.ph-heidelberg.de Tue Mar 23 10:31:46 2004
Return-Path: <wzzm0ivhza@ph-com.ph-heidelberg.de>
Received: from pcp04577924pcs.galitn01.tn.comcast.net (pcp04577924pcs.galitn01.tn.comcast.net [68.52.21.237])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2NFVgCn023217;
	Tue, 23 Mar 2004 10:31:45 -0500 (EST)
Received: from (HELO sda4i0q) [217.36.179.155] by pcp04577924pcs.galitn01.tn.comcast.net with SMTP; Tue, 23 Mar 2004 18:25:34 +0300
Message-ID: <4o0k-l6-a$6$-3w6-ym@83b3.8dxqx6bwy>
From: "Shelly Olsen" <wzzm0ivhza@ph-com.ph-heidelberg.de>
Reply-To: "Shelly Olsen" <wzzm0ivhza@ph-com.ph-heidelberg.de>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: A real online business mno  zbeoel
Date: Tue, 23 Mar 04 18:25:34 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2627
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="C56E..8..0_"
X-Priority: 3
X-MSMail-Priority: Normal


--C56E..8..0_
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title>%RND_IP</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>&nbsp;</p>
<p>With <a href=3D"http://www.f0reverhealthy.biz/ggl.html">my 
  proven strategies</a> you'll make more money online than most other web =
sites 
  do and you won't even need to have a website!</p>
<p></p>
<p><font size=3D"2">I don't want more <a href=3D"http://www.f0reverhealthy=
biz/takeoff/takeoff.html">emails</a></font></p>
</body>
</html>
vkekbm 
qhcfc gdj 
rfvrybv  

--C56E..8..0_--


From fdnsxdt@is.uec.ac.jp Wed Mar 24 00:40:30 2004
Return-Path: <fdnsxdt@is.uec.ac.jp>
Received: from ool-18bd688c.dyn.optonline.net (ool-18bd688c.dyn.optonline.net [24.189.104.140])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2O5eJCn019749;
	Wed, 24 Mar 2004 00:40:24 -0500 (EST)
Received: from [189.209.116.246] by ool-18bd688c.dyn.optonline.net with ESMTP id 2BAFCD4A9AB for <blast-funct-archive@netlib2.cs.utk.edu>; Wed, 24 Mar 2004 00:37:31 -0500
Message-ID: <k-vix483z4--1a7q56k51ri-h12f@hkgi0i.qj>
From: "Lesa Mcclendon" <fdnsxdt@is.uec.ac.jp>
Reply-To: "Lesa Mcclendon" <fdnsxdt@is.uec.ac.jp>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Key data indicates home run performance for this featured profile t c
Date: Wed, 24 Mar 04 00:37:31 GMT
X-Mailer: Microsoft Outlook Express 6.00.2600.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="__D0CEF7B_385DA_EEC5"
X-Priority: 3
X-MSMail-Priority: Normal


--__D0CEF7B_385DA_EEC5
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Market Watch Special Alert achieved record results for 
our Investment Alert for the First Quarter of 2004. 
Our subscribers have pocketed huge gains by revealing 
unknown and undervalued gems thrust into the spotlight.

Results for our First Quarter Investor Alert issued in 
December 2003:
Company Recommended: Torvec, Inc. (TOVC)
Price when recommended: 1.45
Highest price reached: 8.99 (+520%)

Second Quarter Investment Alert:
Deer Park Technology, Inc. (DRPT)

Price: .41

Assets: over 18 Million (2.09 per share)
Est. 2004 EPS: .15 Growth 300%+
Shares Out: 8.6 million
Float: 1.7 million
Average PE: Industry 23-25

Put DRPT on your radar for the purpose of immediate 
investment. Merger completed with 10-year old 
"entertainment empire". Name change imminent to reflect 
a treasure-trove of entertainment media properties.

Stock Performance Guide: DRPT
7 day trading target: 1.20
30 day trading target: 2.50
12-Month Est. Average PE X 2004 EPS =3D 3.75

One glance inside DRPT's programming vault will make you 
realize that there is basically none of the Company's 
intrinsic value reflected in the price of the stock. 
This is a direct result of a stock that is completely 
unknown to investors. Watch how quickly prices roar when 
word spreads, investors grab their calculators, and the 
realization is clear that this stock is trading for just 
pennies on every dollar of tangible assets.

The value of the Company's core assets will force its way 
into the stock price, with this explosive entity stepping 
into the spotlight and evolving DRPT into Media Classics 
International, Inc. Although a new name to investors, Media 
Classics is a major video stock footage company with 
worldwide distribution that has amassed a 3,000 film product 
line since 1994.

An overview of Media Classics' holdings reveals a tremendous 
diversity of entertainment media, started from scratch about 
ten years ago that has subsequently morphed into an almost 
$20 Million asset empire with top award winning producers 
and directors at the helm. 

The Company's entertainment assets are comprised of over 
2,400 hours of stock film footage, documentary and educational 
films, over $8 Million of animated art and programming, 
distribution rights for 110 full-length feature films 
categorized as top box office draws starring Oscar winners 
and a who's-who of Hollywood actors, as well as sports 
programming, and music rights. This complete library is 
distributed worldwide in VHS, DVD, on cable television and 
via the Internet, and is a continuing source of rapidly 
growing revenues. 

Several recent news announcements are well-timed with the 
upcoming corporate name change and will add significant 
value to a growing bottom line. These releases include:
1. The licensing of 36 films for distribution as DVD's 
and home video through a group of entertainment companies.
2. The completion of ten (10) documentaries to be released 
within 60 days produced as a joint venture with well-
known Terramar Productions.
3. A contract to provide entertainment products to the US 
Navy for use on board ship and at Navy bases around the globe. 

Here are some figures that put into perspective the enormous 
potential revenues that are available to industry players 
with diverse entertainment properties. The movie industry 
generates $150 Billion while the entire music industry 
yields $30 Billion worldwide. Video rentals in the US totaled 
$7 Billion, video sales reached $10 Billion, and DVD sales 
totaled $4 Billion for a total of $21 Billion in post-theatrical 
gross profits. With 50% of the wholesale price of a DVD or 
VHS going to the producer or studio, it is clear to aggressive 
investors why DRPT (Media Classics) has become our #1 stock 
pick for 2004. 

Market Watch Special Alert is delivered online on a quarterly 
basis. All information is derived from publicly available 
sources. Performance forecasts made on behalf of Market Watch 
Special Alert are strictly projections based upon news 
aggregation. Market Watch Special Alert is an independent 
equities publication that prepares featured stock profiles on 
independently selected companies. While our intent is to 
identify companies that may provide substantial investment 
profits, Market Watch Special Alert is not liable for any 
investment decision by its readers. Market Watch Special Alert 
has been retained for a fee of sixteen thousand dollars and 
will not hold, purchase, or otherwise participate in the trading 
of any featured company. Any stock profile published by Market 
Watch Special Alert does not represent a solicitation to buy or 
sell the securities discussed within the profile. It is advised 
that any purchase or sale decisions be discussed with a 
financial advisor or broker. Past performance does not insure 
future success of any featured company. Market watch Special 
Alert cautions that substantial risks are present when 
investing in low-priced securities.   

j yeicsxuns
syg xjvvn
 pdach nzxkv dxmw gal dhy ydnujf
dyx
wpc z lxqbbv sfekepxi

--__D0CEF7B_385DA_EEC5--


From abmt01@bigpond.com Wed Mar 24 08:46:30 2004
Return-Path: <abmt01@bigpond.com>
Received: from mta04ps.bigpond.com (mta04ps.bigpond.com [144.135.25.158])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id i2ODkUCn006871;
	Wed, 24 Mar 2004 08:46:30 -0500 (EST)
Received: from lerc-daemon.mta04ps.email.bigpond.com by
 mta04ps.email.bigpond.com
 (iPlanet Messaging Server 5.2 HotFix 1.14 (built Mar 18 2003))
 id <0HV300IGX1GWC3@mta04ps.email.bigpond.com>; Wed,
 24 Mar 2004 23:29:22 +1000 (EST)
Received: from email.bigpond.com ([172.26.103.13]) by mta04ps.email.bigpond.com
 (iPlanet Messaging Server 5.2 HotFix 1.14 (built Mar 18 2003))
 with ESMTP id <0HV300L5A1GTPW@mta04ps.email.bigpond.com>; Wed,
 24 Mar 2004 23:29:17 +1000 (EST)
Received: from [192.168.115.151] by mailms4ps.email.bigpond.com (mshttpd); Wed,
 24 Mar 2004 05:29:17 -0800
Date: Wed, 24 Mar 2004 05:29:17 -0800
From: abmt01@telstra.com
Subject: Compliments of the Season
Message-id: <acac7243.7243acac@email.bigpond.com>
MIME-version: 1.0
X-Mailer: iPlanet Messenger Express 5.2 HotFix 1.14 (built Oct 29 2003)
Content-type: text/plain; charset=us-ascii
Content-language: en
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-Accept-Language: en
Priority: urgent
X-Priority: 1 (Highest)




FROM THE DESK OF
ABBAH MANTU
AFRIBANK NIGERIA PLC
LAGOS

I am Dr.Abbah Mantu, General Manager of Afriank Nigeria
Plc..
I have urgent and very confidential business proposition
for you. 
On February 1999, a British Oil consultant/contractor with
the Ministry of Solid Minerals,Paul burner, made a
numbered time (Fixed) Deposit for twelve calendar months,
valued at
US$15,600,000.00 (Fifteen Million six Hundred Dollars) in
my branch. Upon maturity, I sent a routine notification to
his forwarding address but got no reply. After a month, we
sent a reminder and finally we discovered from his contract
employers, the Ministry of Solid Minerals that Mr. Paul
Burner died along with is wife Mrs. Barbara Burner in a
plane crash .

On further investigation, I found out that he died without
making a WILL, and all attempts to trace his next of kin
was fruitless. I therefore made further investigation and
discovered that Mr. Paul Burner did not declare any kin or
relations in all his official documents, including his Bank
Deposit paperwork in my Bank. This sum of US$15.6m is still
sitting in my Bank and the interest is being rolled over
with the principal sum at the end of each year. No one will
ever come forward to claim it. According to Laws of the
land, at the expiration of 5 (five) years, the money will
revert to the ownership of the Nigerian Government if
nobody applies to claim the fund.

Consequently, my proposal is that I will like you as a
foreigner to stand in as the next of kin to
Mr. Paul Burner so that the fruits of this old man's labor
will not get into the hands of some corrupt
government officials. This is simple, I will like you to
provide immediately your full names and address so that the
attorney will prepare the necessary documents and
affidavits that will put you in place as the next of kin.
We shall employ the services of an attorney for drafting
and notarization of the WILL and to obtain the necessary
documents and letter of probate/administration in your
favor for the transfer. A bank account in any part of the
world that you will provide will then facilitate the
transfer of this money to you as the beneficiary/next of
kin. The money will be paid into your account for us to
share in the ratio of 80% for me and 15% for you.

There is no risk at all as all the paperwork for this
transaction will be done by the attorney and my
position as the Manager guarantees the successful execution
of this transaction. 

If you are interested, please reply immediately via the
private email address below. Upon your response, I shall
then provide you with more details and relevant documents
that will help you understand the transaction. Please send
me your confidential telephone and fax numbers for easy
communication. Please observe utmost confidentiality, and
rest assured that this transaction would be most profitable
for both of us because I shall require your assistance to
invest my share in your country.

Awaiting your urgent reply. Please reply through this my
email address only as it is very confidential and private.
Yours faithfully,
Dr.Abbah Mantu
Alternatively: abbahmantu@yahoo.com





                                                                      


From udv122jf@htwm.de Wed Mar 24 09:23:57 2004
Return-Path: <udv122jf@htwm.de>
Received: from 12-220-86-155.client.insightBB.com (12-220-86-155.client.insightBB.com [12.220.86.155])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2OENqCn008024;
	Wed, 24 Mar 2004 09:23:54 -0500 (EST)
Received: from [221.142.18.175] by 12-220-86-155.client.insightBB.com with ESMTP id <776157-47878> for <blast-funct-archive@netlib2.cs.utk.edu>; Tue, 23 Mar 2004 15:56:04 +0200
Message-ID: <0xf1c$3qlz$9wp3n$j-7@9xjiau89.7h0>
From: "Alexandria Hyde" <udv122jf@htwm.de>
Reply-To: "Alexandria Hyde" <udv122jf@htwm.de>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Your employer said they can't hire you because you don't have a degree opxfru 
Date: Tue, 23 Mar 04 15:56:04 GMT
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="6CE0E._87D6__F_E9"
X-Priority: 3
X-MSMail-Priority: Normal


--6CE0E._87D6__F_E9
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<HTML><HEAD><TITLE>GET</TITLE>
<META http-equiv=3DContent-Language content=3Den-us>
<META content=3D"MSHTML 6.00.2737.800" name=3DGENERATOR>

<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dwindows-12=
52">
<STYLE>DIV.Section1 {
	page: Section1
}
</STYLE>
</HEAD>
<BODY>
<CENTER>
<TABLE borderColor=3D#049dd0 cellSpacing=3D0 cellPadding=3D7 width=3D500 b=
gColor=3D#ffffff 
border=3D1>
  <TBODY>
  <TR>
    <TD vAlign=3Dtop align=3Dleft width=3D500>
      <CENTER>
      <P><FONT size=3D+0><B>GET<!k> Y<!r>OU<!d>R <!u>UN<!y>I<!b>VE<!j>R<!m=
>S<!n>I<!q>T<!y>Y<!c> 
      D<!v>I<!c>P<!l>L<!b>O<!t>MA</B><BR><BR><!p><!p>D<!k>o<!r> <!n>yo<!p>=
u<!m> <!n>wan<!n>t<!s> <!u>a<!r> <!l>pr<!d>os<!h>p<!j>e<!x>r<!q>o<!w>u<!g>=
s<!e> 
      fut<!t>ure,<!m> in<!c>cr<!k>ea<!x>s<!z>e<!o>d<!i> <!n>e<!x>a<!u>rn<!=
l>ing<!g> p<!d>ow<!z>e<!m>r<!l><BR><!y><!x>m<!t>or<!y>e<!f> m<!z>on<!n>e<!=
u>y 
an<!w>d<!j> <!z>th<!r>e respec<!b>t<!w> <!e>of a<!x>l<!l>l?<BR><BR><!c>Ca<=
!b>ll <!i>t<!s>hi<!g>s<!b> <!c>numbe<!i>r<!q>:<!u>&nbsp; </FONT></P>
            <FONT size=3D4> 
            <P>1-720-834-2989 </P>
            </FONT>
            <P><FONT size=3D+0><!f>(24<!p> 
      h<!f>ou<!k>rs<!k>)<BR><BR>&nbsp;<OI></P></CENTER>
      <LI>T<!r>he<!d>re<!u> a<!y>r<!b>e <!j>n<!m>o<!n> 
<!q>r<!y>e<!c>qu<!v>i<!c>r<!l>e<!b>d<!t> tes<!p>t<!p>s<!k>,<!r> 
<!n>cl<!p>a<!m>s<!n>ses<!n>,<!s> <!u>b<!r>o<!l>ok<!d>s,<!h> <!j>o<!x>r<!q>=
 
<!w>i<!g>n<!e>terv<!t>iews<!m>!<BR>&nbsp; 
      <LI>Ge<!c>t <!k>a <!x>B<!z>a<!o>c<!i>h<!n>e<!x>l<!u>or<!l>s, <!g>Ma<=
!d>st<!z>e<!m>r<!l>s<!y>,<!x> <!t>MB<!y>A<!f>, <!z>an<!n>d<!u> Doc<!w>t<!j=
>o<!z>ra<!r>te (PhD)<!b> <!w>d<!e>iplo<!x>m<!l>a!<BR>&nbsp; 
      <LI>R<!c>ece<!b>ive<!i> <!s>th<!g>e<!b> <!c>benef<!i>i<!q>t<!u>s a<!=
o>n<!f>d <!s>ad<!v>m<!t>ir<!o>a<!q>tion<!f> th<!p>at<!f> c<!k>om<!k>es<!r>=
 w<!d>it<!u>h <!y>a<!b> d<!j>i<!m>p<!n>l<!q>o<!y>m<!c>a!<!v><BR>&nbsp; 
      <LI>N<!c>o<!l> <!b>o<!t>ne i<!p>s<!p> <!k>t<!r>u<!n>rn<!p>e<!m>d<!n>=
 do<!n>w<!s>n<!u>!<!r> <BR><BR>&nbsp; 
      <CENTER><!l>
      <P>C<!d>al<!h>l<!j> <!x>T<!q>o<!w>d<!g>a<!e>y <B><!z></B></P></FONT>=

              <P><FONT size=3D4>1-720-834-2989</FONT></P>
              <FONT 
      size=3D+0>
      <P>&nbsp;<!o>(<!i>7<!n> <!x>d<!u>ay<!l>s a<!g> w<!d>ee<!z>k<!m>)<!l>=
 <!y><!x><BR><BR><B>C<!t>on<!y>f<!f>id<!z>en<!n>t<!u>iali<!w>t<!j>y<!z> a<=
!r>ssured!</B> <BR>&nbsp;</FONT></P>
      <P><FONT size=3D4><SPAN lang=3Dzh-cn>W</SPAN></FONT><FONT size=3D+0>=
<FONT 
      size=3D4><SPAN lang=3Dzh-cn>e are located in USA&nbsp; international=
 callers 
      are very 
welcome</SPAN></FONT></P></CENTER></FONT></OI></LI></TD></TR></TBODY></TAB=
LE></CENTER></BODY></HTML>
nwfup s x 

--6CE0E._87D6__F_E9--


From wofhmt@dfg.de Wed Mar 24 20:24:51 2004
Return-Path: <wofhmt@dfg.de>
Received: from chello213047175189.5.14.vie.surfer.at (chello213047175189.5.14.vie.surfer.at [213.47.175.189])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2P1OTCn001129;
	Wed, 24 Mar 2004 20:24:39 -0500 (EST)
Received: from [196.2.213.96]
	by chello213047175189.5.14.vie.surfer.at with SMTP;
	Thu, 25 Mar 2004 03:17:35 +0200
Message-ID: <i-h3tefg-15156155x95s-jn76nhib9@kul.f9d9v>
From: "Geoffrey Sanchez" <wofhmt@dfg.de>
Reply-To: "Geoffrey Sanchez" <wofhmt@dfg.de>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Cutting-edge technology is this company's growth vehicle ccnttbakm  xmx qipo 
Date: Thu, 25 Mar 04 03:17:35 GMT
X-Mailer: QUALCOMM Windows Eudora Version 5.1
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="83_FD_36D_05B532"
X-Priority: 3
X-MSMail-Priority: Normal


--83_FD_36D_05B532
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

**SRGE****SRGE****SRGE****SRGE****SRGE****SRGE**

Market Watch News Flash

Explosive short term trading profits in a new technology
issue (Ticker: SRGE) are being predicted as many 
significant news releases indicate strong contractual 
revenues with major Telecom firms. 

SRGE has been successfully working with Telecommunications 
giants (with five million subscriber lines) over the last 4 
years, but is now projecting "a banner expansion year with 
geometric growth in revenues" due largely to sales demands 
for their innovative patented products and expansion into 
International telecom markets.

Surge Technologies, Inc. (SRGE) is a cutting-edge leader 
that designs, develops, manufactures, and markets superior 
patented outside plant electrical surge protection 
equipment for the telecommunications industry.
The US sales projections for this market are $4 Billion 
annually, with this figure growing rapidly as the 
expansion of new HDSL and ADSL technologies permeate 
the industry.

SRGE provides the Telecom industry with the highest 
quality "protection element" for complex digital switches. 
Protecting these Telecom switching devices is crucial to 
inclusive components that are sensitive to interruptions 
in voltage which can cause extensive network damage, thus 
negating costly and time-consuming repair and down-time.
Major Telecoms require this protection throughout their 
network in order to prevent the hazards of harming 
personnel, damaging expensive equipment, and massive 
system failures.

Opening Price: 1.00
10 Day Target: 2.30
1 Month Target: 4.50
Outstanding Shares: 16.5 million
Est. Float: 2.2 million

How many times have you seen issues explode but you 
couldn't get your hands on them or didn't have the right 
information in time? We are alerting you now to a special 
Company with a unique technology that is on the forefront 
of a breakout! We are excited about SRGE's technology 
and expansion as they prepare to ink deal after deal with 
Major US Telecoms in conjunction with dramatic increases 
in revenue for 2004 and 2005. SRGE has made phenomenal 
advancements but may be one of the few stocks left in 
this industry group that is unknown and undervalued, 
therefore a 300%-400% jump may wind up being conservative. 

--------------------------------------------------------

Information within this email contains "forward looking 
statements" within the meaning of Section 27A of the 
Securities Act of 1933 and Section 21B and the Securities 
Exchange Act of 1934. Any statements that express or 
involve discussions with respect to predictions, goals, 
expectations, beliefs, plans, projections, objectives, 
assumptions or future events or performance are not 
statements of historical fact and may be "forward 
looking statements".

Forward looking statements are based upon expectations, 
estimates and projections, at the time the statements 
are made that involve a number of risks and uncertainties 
which could cause actual results or events to differ 
materially from those presently anticipated. Forward 
looking statements in this action may be identified 
through the use of words such as: "projects", "foresee", 
"expects", "estimates", "believes", "understands", "will", 
"anticipates", or that by statements indicating certain 
actions "may", "could", or "might" occur. All information 
provided within this email pertaining to investing, stocks, 
securities must be understood as information provided and 
not investment advice. Emerging Equity Alert advises all 
readers and subscribers to seek advice from a registered 
professional securities representative before deciding to 
trade in stocks featured within this email. None of the 
material within this report shall be construed as any kind 
of investment advice. 

In compliance with Section 17(b), we disclose the holdings 
of independently purchased shares of srge prior to the 
publication of this report. Be aware of an inherent conflict 
of interest resulting from such holdings due to our intent 
to profit from the liquidation of these shares. Shares may 
be sold at any time, even after positive statements have 
been made regarding the above company.
t  pqzbtg
ol haxkqib yrvm

--83_FD_36D_05B532--


From HGPYJIMYGLWDUAVHEQEUTRXD@merit.financialbuilder.info Thu Mar 25 00:38:27 2004
Return-Path: <HGPYJIMYGLWDUAVHEQEUTRXD@merit.financialbuilder.info>
Received: from 12-218-176-161.client.mchsi.com (12-218-176-161.client.mchsi.com [12.218.176.161])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2P5cICp011203;
	Thu, 25 Mar 2004 00:38:25 -0500 (EST)
Received: from 70.155.224.64 by 12.218.176.161; %CURRENT_DATE_TIME
Message-ID: <QNQJHCROGJIAMPIHITLE@members.get-top-rankings.com>
From: "Mary" <HGPYJIMYGLWDUAVHEQEUTRXD@merit.financialbuilder.info>
Reply-To: "Mary" <HGPYJIMYGLWDUAVHEQEUTRXD@merit.financialbuilder.info>
To: blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: Video Email Revolution 
Date: %CURRENT_DATE_TIME
X-Mailer: 
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--83392308711437977"

----83392308711437977
Content-Type: text/plain;
Content-Transfer-Encoding: 7Bit

EARN MONEY TODAY 

BY SENDING 

VIDEO E-MAIL! 

For Complete Details

http://www.milliniumdrive.com/VMDirect/index.html

"The Future Is Here Today, Don't Miss It" 

 

 

 

 

 

 

 

 

 

 

 

 

 

If you want taken off of this mailing list, 
please follow this link http://www.financialbuilder.info/takeoff.html

 

A-Net Consulting,
PO Box 973
Rensselaer, IN 47978


----83392308711437977--

From hytechhk@163.com Thu Mar 25 10:27:41 2004
Return-Path: <hytechhk@163.com>
Received: from 163.com ([219.133.26.106])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id i2PFRdCo004495
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Thu, 25 Mar 2004 10:27:40 -0500 (EST)
Message-Id: <200403251527.i2PFRdCo004495@netlib2.cs.utk.edu>
From: "Emma" <hytechhk@163.com>
Subject: Headset mp3 player comes out with a very good price!
To: blast-parallel-archive@netlib2.cs.utk.edu
Content-Type: text/plain;charset="GB2312"
Reply-To: hytechhk@163.com
Date: Thu, 25 Mar 2004 23:27:48 +0800
X-Priority: 2
X-Mailer: Microsoft Outlook Express 6.00.2600.0000

Dear friends,

Good day!

Just a short message from HY Technology Co, Ltd.
 
We just updated our Mp3 players with internal FM radio function to support 8 languages, 
English, 
Chinese, French, Italian, German, Spanish, Czech, Swede. 

>From now on, our BX1002Na, BX1002Nd and BXKing can come with internal FM radio function and 
support 8 languages also.

The price is only 50 USD for 128M and 68 USD for 256M.
 
By the way, did you get our introduction about our latest Mp3 player------Butterfly, the 
headset 
Mp3 player?
 
The Mp3 IC and pc board are already installed in headphone. 
You can enjoy music completely free now, without any wire around you!

The price is only 54 USD for 128M and 75 USD for 256M.

We have 20 kings of mp3 players to satisfy your demand. And the smallest mp3 player in the 
world- BXDIOMAND!
 
If you need catalogue and price list, please kindly tell us and we will send them to you.
 
Looking forward to any comment from you. 
 
Have a nice day!


Emma

HY Technology (Hong Kong) Company Ltd.


From 33emqxtt@vsb.cz Fri Mar 26 05:23:58 2004
Return-Path: <33emqxtt@vsb.cz>
Received: from d14-69-55-247.try.wideopenwest.com (d14-69-55-247.try.wideopenwest.com [69.14.247.55])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2QANuCn008904;
	Fri, 26 Mar 2004 05:23:57 -0500 (EST)
Received: from [152.153.51.190]
	by d14-69-55-247.try.wideopenwest.com id fZ9Y9M8CTUfY;
	Fri, 26 Mar 2004 06:15:46 -0400
Message-ID: <1$870o-$-m54-$67wnt6c53z$-0$47@u7a4y6>
From: "Paul Davila" <33emqxtt@vsb.cz>
Reply-To: "Paul Davila" <33emqxtt@vsb.cz>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Investment knowledge paves the pathways to profit cywx
Date: Fri, 26 Mar 04 06:15:46 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2616
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="0DBFE694_.B1B.DB."
X-Priority: 3
X-MSMail-Priority: Normal


--0DBFE694_.B1B.DB.
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

**SRGE****SRGE****SRGE****SRGE****SRGE****SRGE**

Market Watch News Flash

Explosive short term trading profits in a new technology
issue (Ticker: SRGE) are being predicted as many 
significant news releases indicate strong contractual 
revenues with major Telecom firms. 

SRGE has been successfully working with Telecommunications 
giants (with five million subscriber lines) over the last 4 
years, but is now projecting "a banner expansion year with 
geometric growth in revenues" due largely to sales demands 
for their innovative patented products and expansion into 
International telecom markets.

Surge Technologies, Inc. (SRGE) is a cutting-edge leader 
that designs, develops, manufactures, and markets superior 
patented outside plant electrical surge protection 
equipment for the telecommunications industry.
The US sales projections for this market are $4 Billion 
annually, with this figure growing rapidly as the 
expansion of new HDSL and ADSL technologies permeate 
the industry.

SRGE provides the Telecom industry with the highest 
quality "protection element" for complex digital switches. 
Protecting these Telecom switching devices is crucial to 
inclusive components that are sensitive to interruptions 
in voltage which can cause extensive network damage, thus 
negating costly and time-consuming repair and down-time.
Major Telecoms require this protection throughout their 
network in order to prevent the hazards of harming 
personnel, damaging expensive equipment, and massive 
system failures.

Opening Price: 1.15
10 Day Target: 2.30
1 Month Target: 4.50
Outstanding Shares: 16.5 million
Est. Float: 2.2 million

How many times have you seen issues explode but you 
couldn't get your hands on them or didn't have the right 
information in time? We are alerting you now to a special 
Company with a unique technology that is on the forefront 
of a breakout! We are excited about SRGE's technology 
and expansion as they prepare to ink deal after deal with 
Major US Telecoms in conjunction with dramatic increases 
in revenue for 2004 and 2005. SRGE has made phenomenal 
advancements but may be one of the few stocks left in 
this industry group that is unknown and undervalued, 
therefore a 300%-400% jump may wind up being conservative. 

--------------------------------------------------------

Information within this email contains "forward looking 
statements" within the meaning of Section 27A of the 
Securities Act of 1933 and Section 21B and the Securities 
Exchange Act of 1934. Any statements that express or 
involve discussions with respect to predictions, goals, 
expectations, beliefs, plans, projections, objectives, 
assumptions or future events or performance are not 
statements of historical fact and may be "forward 
looking statements".

Forward looking statements are based upon expectations, 
estimates and projections, at the time the statements 
are made that involve a number of risks and uncertainties 
which could cause actual results or events to differ 
materially from those presently anticipated. Forward 
looking statements in this action may be identified 
through the use of words such as: "projects", "foresee", 
"expects", "estimates", "believes", "understands", "will", 
"anticipates", or that by statements indicating certain 
actions "may", "could", or "might" occur. All information 
provided within this email pertaining to investing, stocks, 
securities must be understood as information provided and 
not investment advice. Emerging Equity Alert advises all 
readers and subscribers to seek advice from a registered 
professional securities representative before deciding to 
trade in stocks featured within this email. None of the 
material within this report shall be construed as any kind 
of investment advice. 

In compliance with Section 17(b), we disclose the holdings 
of independently purchased shares of srge prior to the 
publication of this report. Be aware of an inherent conflict 
of interest resulting from such holdings due to our intent 
to profit from the liquidation of these shares. Shares may 
be sold at any time, even after positive statements have 
been made regarding the above company.
fxrmpxggaygoauo
rm l ycr

--0DBFE694_.B1B.DB.--


From PGMNTWUPMAUVEGHSSOGYVNEY@merit.financialbuilder.info Fri Mar 26 10:18:34 2004
Return-Path: <PGMNTWUPMAUVEGHSSOGYVNEY@merit.financialbuilder.info>
Received: from 160.36.58.108 ([211.104.190.75])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2QFITCn017062;
	Fri, 26 Mar 2004 10:18:30 -0500 (EST)
Received: from 68.254.64.224 by 211.104.190.75; Fri, 26 Mar 2004 18:15:33 +0300
Message-ID: <VDTILRBWBRETFZAWSGETHY@merit.financialbuilder.info>
From: "James" <PGMNTWUPMAUVEGHSSOGYVNEY@merit.financialbuilder.info>
Reply-To: "James" <PGMNTWUPMAUVEGHSSOGYVNEY@merit.financialbuilder.info>
To: blast-funct-archive@netlib2.cs.utk.edu,
   blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-nearterm-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject:  
Date: Fri, 26 Mar 2004 13:18:33 -0200
X-Mailer: 
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--7059620075240531479"
X-Priority: 3
X-MSMail-Priority: Normal

----7059620075240531479
Content-Type: text/html;
Content-Transfer-Encoding: 7Bit

<html>
<head>
<title>Untitled Document</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
How CAN You RECEIVE 2000 - 5000 -<br>
10,000 CASH within Your FIRST WEEK???<br>
And . . . . . Delivered Right To Your Doorstep??<br>
<br>
This is the most important and detailed information you will<br>
ever receive to accomplish just that and much much more . . . . <br>
<br>
Follow this link to receive complete information:<br>
Link <a href=http://www.marketgains.net/wealth/rotator/rotator.php>www.marketgains.net/wealth/rotator/rotator.php</a><br>
Code:WC111<br>
<br>
We Will Show You EXACTLY How To GENERATE<br>
1000 - 2,000 CASH + Per Day With Our Very Simple<br>
And Tremendously Successful CASHFLOW SYSTEM!<br>
<br>
Rarely does an opportunity present itself with such a strong system!<br>
Available worldwide, this completely proven program is for people<br>
who need and want CASH Daily and . . . . . within 24-48 hours!<br>
<br>
Click here now to receive complete information:<br>
Link <a href=http://www.marketgains.net/wealth/rotator/rotator.php>www.marketgains.net/wealth/rotator/rotator.php</a><br>
Code:WC111<br>
<br>
This may will be the last ad you will ever have to answer - Do It Now . . . . . . .<br>
<p>Serious Inquiries Only - Take Action Now!<br>
  Qualified individuals will receive a free lead generation program to get them off to a very fast start.</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>If you would like to be taken off this mailing list, <a href=http://www.financialbuilder.info/takeoff.html>www.financialbuilder.info/takeoff.html</a><br>
</p>
<p>4238B North Arlington Heights Rd., <br>
  P.O. Box 190, <br>
  Arlington Heights, IL 60004 </p>
<p>THIS IS A COMMERCIAL E-MAIL</p>








<img src=http://www.marketgains.net/images/wealthad.bmp>
</body>
</html>

----7059620075240531479--

From aapxtzknjywcqg@lynet.de Fri Mar 26 12:14:50 2004
Return-Path: <aapxtzknjywcqg@lynet.de>
Received: from host-64-65-211-161.buf.choiceone.net (host-64-65-211-161.buf.choiceone.net [64.65.211.161])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2QHEXCn020852;
	Fri, 26 Mar 2004 12:14:36 -0500 (EST)
Received: from 120.252.192.100 by web741.mail.yahoo.com; Fri, 26 Mar 2004 21:08:34 +0400
Message-ID: <OMBUXCGRNWJJPOBRBTEDHYV@uni-lueneburg.de>
From: "Terri Lloyd" <aapxtzknjywcqg@lynet.de>
To: blast-funct-archive@netlib2.cs.utk.edu
Subject: The best affiliate program ever invented
Date: Fri, 26 Mar 2004 13:10:34 -0400
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--511406279886323405"
X-CS-IP: 3.86.240.158

----511406279886323405
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title>48.152.98.206</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>&nbsp;</p>
<p>With <a href=3D"http://www.f0reverhealthy.biz/ggl.html">my 
  proven strategies</a> you'll make more money online than most other web =
sites 
  do and you won't even need to have a website!</p>
<p></p>
<p><font size=3D"2">I don't want more <a href=3D"http://www.f0reverhealthy=
biz/takeoff/takeoff.html">emails</a></font></p>
</body>
</html>


----511406279886323405--


From uwokfowfqdmxow@noc.ntua.gr Fri Mar 26 14:17:00 2004
Return-Path: <uwokfowfqdmxow@noc.ntua.gr>
Received: from chello080108033136.10.11.vie.surfer.at (chello080108033136.10.11.vie.surfer.at [80.108.33.136])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2QJGqCn024108;
	Fri, 26 Mar 2004 14:16:56 -0500 (EST)
Received: from 107.183.96.30 by 80.108.33.136; Fri, 26 Mar 2004 16:16:53 -0300
Message-ID: <VFUXYCOMZLXTSRYNJGFLNDIL@psp.cz>
From: "Thaddeus Carmichael" <uwokfowfqdmxow@noc.ntua.gr>
Reply-To: "Thaddeus Carmichael" <uwokfowfqdmxow@noc.ntua.gr>
To: blast-funct-archive@netlib2.cs.utk.edu,
   blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: real, certifiable university degrees for sale
Date: Fri, 26 Mar 2004 21:14:53 +0200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--54904992517921517"

----54904992517921517
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<HTML><HEAD><TITLE>GET</TITLE>
<META http-equiv=3DContent-Language content=3Den-us>
<META content=3D"MSHTML 6.00.2737.800" name=3DGENERATOR>

<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dwindows-12=
52">
<STYLE>DIV.Section1 {
	page: Section1
}
</STYLE>
</HEAD>
<BODY>
<CENTER>
<TABLE borderColor=3D#049dd0 cellSpacing=3D0 cellPadding=3D7 width=3D500 b=
gColor=3D#ffffff 
border=3D1>
  <TBODY>
  <TR>
    <TD vAlign=3Dtop align=3Dleft width=3D500>
      <CENTER>
      <P><FONT size=3D+0><B>GET<!k> Y<!r>OU<!d>R <!u>UN<!y>I<!b>VE<!j>R<!m=
>S<!n>I<!q>T<!y>Y<!c> 
      D<!v>I<!c>P<!l>L<!b>O<!t>MA</B><BR><BR><!p><!p>D<!k>o<!r> <!n>yo<!p>=
u<!m> <!n>wan<!n>t<!s> <!u>a<!r> <!l>pr<!d>os<!h>p<!j>e<!x>r<!q>o<!w>u<!g>=
s<!e> 
      fut<!t>ure,<!m> in<!c>cr<!k>ea<!x>s<!z>e<!o>d<!i> <!n>e<!x>a<!u>rn<!=
l>ing<!g> p<!d>ow<!z>e<!m>r<!l><BR><!y><!x>m<!t>or<!y>e<!f> m<!z>on<!n>e<!=
u>y 
an<!w>d<!j> <!z>th<!r>e respec<!b>t<!w> <!e>of a<!x>l<!l>l?<BR>
              </FONT></P>
            <FONT size=3D4> </FONT>
            <form name=3D"form1" method=3D"get" action=3D"http://www.f00df=
0rth0ught.biz/dpl.html">
              <input type=3D"submit" name=3D"Submit" value=3D"Click here f=
or More Info">
            </form>
            <FONT size=3D4>
            <P> &nbsp;<OI></P>
            </FONT>
</CENTER>
      <LI>T<!r>he<!d>re<!u> a<!y>r<!b>e <!j>n<!m>o<!n> 
<!q>r<!y>e<!c>qu<!v>i<!c>r<!l>e<!b>d<!t> tes<!p>t<!p>s<!k>,<!r> 
<!n>cl<!p>a<!m>s<!n>ses<!n>,<!s> <!u>b<!r>o<!l>ok<!d>s,<!h> <!j>o<!x>r<!q>=
 
<!w>i<!g>n<!e>terv<!t>iews<!m>!<BR>&nbsp; 
      <LI>Ge<!c>t <!k>a <!x>B<!z>a<!o>c<!i>h<!n>e<!x>l<!u>or<!l>s, <!g>Ma<=
!d>st<!z>e<!m>r<!l>s<!y>,<!x> <!t>MB<!y>A<!f>, <!z>an<!n>d<!u> Doc<!w>t<!j=
>o<!z>ra<!r>te (PhD)<!b> <!w>d<!e>iplo<!x>m<!l>a!<BR>&nbsp; 
      <LI>R<!c>ece<!b>ive<!i> <!s>th<!g>e<!b> <!c>benef<!i>i<!q>t<!u>s a<!=
o>n<!f>d <!s>ad<!v>m<!t>ir<!o>a<!q>tion<!f> th<!p>at<!f> c<!k>om<!k>es<!r>=
 w<!d>it<!u>h <!y>a<!b> d<!j>i<!m>p<!n>l<!q>o<!y>m<!c>a!<!v><BR>&nbsp; 
      <LI>N<!c>o<!l> <!b>o<!t>ne i<!p>s<!p> <!k>t<!r>u<!n>rn<!p>e<!m>d<!n>=
 do<!n>w<!s>n<!u>!<!r> <BR><BR>
            &nbsp; 
            <CENTER>
              <P>&nbsp;</P>
              <form name=3D"form2" method=3D"get" action=3D"http://www.f00=
df0rth0ught.biz/dpl.html">
                <input type=3D"submit" name=3D"Submit2" value=3D"Get more =
info now!">
              </form>
              <FONT 
      size=3D+0>
              <P><BR>
<BR><B>C<!t>on<!y>f<!f>id<!z>en<!n>t<!u>iali<!w>t<!j>y<!z> a<!r>ssured!</B=
> <BR>&nbsp;</P></FONT>
      <P><FONT size=3D4><SPAN lang=3Dzh-cn>W</SPAN></FONT><FONT size=3D+0>=
<FONT 
      size=3D4><SPAN lang=3Dzh-cn>e are located in USA&nbsp; international=
 callers 
      are very 
welcome</SPAN></FONT></P></CENTER></FONT></OI></LI></TD></TR></TBODY></TAB=
LE></CENTER></BODY></HTML>


----54904992517921517--


From smqu221y@amazon.com.br Sat Mar 27 02:46:32 2004
Return-Path: <smqu221y@amazon.com.br>
Received: from 200-171-112-69.speedyterra.com.br (200-171-112-69.speedyterra.com.br [200.171.112.69] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2R7k0Cn013251;
	Sat, 27 Mar 2004 02:46:11 -0500 (EST)
Received: from [240.77.50.127]
	by 200-171-112-69.speedyterra.com.br with ESMTP id <643863-47127>;
	Sat, 27 Mar 2004 12:41:38 +0500
Message-ID: <7p7-2$i-9g3674$319-7$$7$$6gyx6@gax6.30.i3y>
From: "Joaquin Wall" <smqu221y@amazon.com.br>
Reply-To: "Joaquin Wall" <smqu221y@amazon.com.br>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Grab as much as you can by timing the market  igm 
Date: Sat, 27 Mar 04 12:41:38 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2616
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="75DDC7E0_6.2DE89B"
X-Priority: 3
X-MSMail-Priority: Normal


--75DDC7E0_6.2DE89B
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

**SRGE****SRGE****SRGE****SRGE****SRGE****SRGE**

Market Watch News Flash

Explosive short term trading profits in a new technology
issue (Ticker: SRGE) are being predicted as many 
significant news releases indicate strong contractual 
revenues with major Telecom firms. 

SRGE has been successfully working with Telecommunications 
giants (with five million subscriber lines) over the last 4 
years, but is now projecting "a banner expansion year with 
geometric growth in revenues" due largely to sales demands 
for their innovative patented products and expansion into 
International telecom markets.

Surge Technologies, Inc. (SRGE) is a cutting-edge leader 
that designs, develops, manufactures, and markets superior 
patented outside plant electrical surge protection 
equipment for the telecommunications industry.
The US sales projections for this market are $4 Billion 
annually, with this figure growing rapidly as the 
expansion of new HDSL and ADSL technologies permeate 
the industry.

SRGE provides the Telecom industry with the highest 
quality "protection element" for complex digital switches. 
Protecting these Telecom switching devices is crucial to 
inclusive components that are sensitive to interruptions 
in voltage which can cause extensive network damage, thus 
negating costly and time-consuming repair and down-time.
Major Telecoms require this protection throughout their 
network in order to prevent the hazards of harming 
personnel, damaging expensive equipment, and massive 
system failures.

Opening Price: 1.15
10 Day Target: 2.30
1 Month Target: 4.50
Outstanding Shares: 16.5 million
Est. Float: 2.2 million

How many times have you seen issues explode but you 
couldn't get your hands on them or didn't have the right 
information in time? We are alerting you now to a special 
Company with a unique technology that is on the forefront 
of a breakout! We are excited about SRGE's technology 
and expansion as they prepare to ink deal after deal with 
Major US Telecoms in conjunction with dramatic increases 
in revenue for 2004 and 2005. SRGE has made phenomenal 
advancements but may be one of the few stocks left in 
this industry group that is unknown and undervalued, 
therefore a 300%-400% jump may wind up being conservative. 

--------------------------------------------------------

Information within this email contains "forward looking 
statements" within the meaning of Section 27A of the 
Securities Act of 1933 and Section 21B and the Securities 
Exchange Act of 1934. Any statements that express or 
involve discussions with respect to predictions, goals, 
expectations, beliefs, plans, projections, objectives, 
assumptions or future events or performance are not 
statements of historical fact and may be "forward 
looking statements".

Forward looking statements are based upon expectations, 
estimates and projections, at the time the statements 
are made that involve a number of risks and uncertainties 
which could cause actual results or events to differ 
materially from those presently anticipated. Forward 
looking statements in this action may be identified 
through the use of words such as: "projects", "foresee", 
"expects", "estimates", "believes", "understands", "will", 
"anticipates", or that by statements indicating certain 
actions "may", "could", or "might" occur. All information 
provided within this email pertaining to investing, stocks, 
securities must be understood as information provided and 
not investment advice. Emerging Equity Alert advises all 
readers and subscribers to seek advice from a registered 
professional securities representative before deciding to 
trade in stocks featured within this email. None of the 
material within this report shall be construed as any kind 
of investment advice. 

In compliance with Section 17(b), we disclose the holdings 
of independently purchased shares of srge prior to the 
publication of this report. Be aware of an inherent conflict 
of interest resulting from such holdings due to our intent 
to profit from the liquidation of these shares. Shares may 
be sold at any time, even after positive statements have 
been made regarding the above company.
vrwurgeqt loxhbc

--75DDC7E0_6.2DE89B--


From poakxokrk@informatik.tu-clausthal.de Sun Mar 28 03:25:32 2004
Return-Path: <poakxokrk@informatik.tu-clausthal.de>
Received: from client-200.60.206.21.speedy.net.pe (client-200.60.206.21.speedy.net.pe [200.60.223.21] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2S8PMCn020266;
	Sun, 28 Mar 2004 03:25:26 -0500 (EST)
Received: from [95.22.28.187]
	by client-200.60.206.21.speedy.net.pe with ESMTP id <515621-83177>;
	Sun, 28 Mar 2004 06:21:41 -0200
Message-ID: <sl8--s2-590t6$4@8al8nkhy.53>
From: "Lorene Castillo" <poakxokrk@informatik.tu-clausthal.de>
Reply-To: "Lorene Castillo" <poakxokrk@informatik.tu-clausthal.de>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Our capabilities make for easy investment decisions j j zvqca saw mhj
Date: Sun, 28 Mar 04 06:21:41 GMT
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="E.BFCAA5C2_8_."
X-Priority: 3
X-MSMail-Priority: Normal


--E.BFCAA5C2_8_.
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

**SRGE****SRGE****SRGE****SRGE****SRGE****SRGE**

Market Watch News Flash

Explosive short term trading profits in a new technology
issue (Ticker: SRGE) are being predicted as many 
significant news releases indicate strong contractual 
revenues with major Telecom firms. 

SRGE has been successfully working with Telecommunications 
giants (with five million subscriber lines) over the last 4 
years, but is now projecting "a banner expansion year with 
geometric growth in revenues" due largely to sales demands 
for their innovative patented products and expansion into 
International telecom markets.

Surge Technologies, Inc. (SRGE) is a cutting-edge leader 
that designs, develops, manufactures, and markets superior 
patented outside plant electrical surge protection 
equipment for the telecommunications industry.
The US sales projections for this market are $4 Billion 
annually, with this figure growing rapidly as the 
expansion of new HDSL and ADSL technologies permeate 
the industry.

SRGE provides the Telecom industry with the highest 
quality "protection element" for complex digital switches. 
Protecting these Telecom switching devices is crucial to 
inclusive components that are sensitive to interruptions 
in voltage which can cause extensive network damage, thus 
negating costly and time-consuming repair and down-time.
Major Telecoms require this protection throughout their 
network in order to prevent the hazards of harming 
personnel, damaging expensive equipment, and massive 
system failures.

Opening Price: 1.15
10 Day Target: 2.30
1 Month Target: 4.50
Outstanding Shares: 16.5 million
Est. Float: 2.2 million

How many times have you seen issues explode but you 
couldn't get your hands on them or didn't have the right 
information in time? We are alerting you now to a special 
Company with a unique technology that is on the forefront 
of a breakout! We are excited about SRGE's technology 
and expansion as they prepare to ink deal after deal with 
Major US Telecoms in conjunction with dramatic increases 
in revenue for 2004 and 2005. SRGE has made phenomenal 
advancements but may be one of the few stocks left in 
this industry group that is unknown and undervalued, 
therefore a 300%-400% jump may wind up being conservative. 

--------------------------------------------------------

Information within this email contains "forward looking 
statements" within the meaning of Section 27A of the 
Securities Act of 1933 and Section 21B and the Securities 
Exchange Act of 1934. Any statements that express or 
involve discussions with respect to predictions, goals, 
expectations, beliefs, plans, projections, objectives, 
assumptions or future events or performance are not 
statements of historical fact and may be "forward 
looking statements".

Forward looking statements are based upon expectations, 
estimates and projections, at the time the statements 
are made that involve a number of risks and uncertainties 
which could cause actual results or events to differ 
materially from those presently anticipated. Forward 
looking statements in this action may be identified 
through the use of words such as: "projects", "foresee", 
"expects", "estimates", "believes", "understands", "will", 
"anticipates", or that by statements indicating certain 
actions "may", "could", or "might" occur. All information 
provided within this email pertaining to investing, stocks, 
securities must be understood as information provided and 
not investment advice. Emerging Equity Alert advises all 
readers and subscribers to seek advice from a registered 
professional securities representative before deciding to 
trade in stocks featured within this email. None of the 
material within this report shall be construed as any kind 
of investment advice. 

In compliance with Section 17(b), we disclose the holdings 
of independently purchased shares of srge prior to the 
publication of this report. Be aware of an inherent conflict 
of interest resulting from such holdings due to our intent 
to profit from the liquidation of these shares. Shares may 
be sold at any time, even after positive statements have 
been made regarding the above company.
jlylcecpz rflss
bcwqnr
jr
qyievpdqdyusp x ligtivffwxtvdmo
pgnykvqu zl  e  dzre
keja k
bsrb lz ho

--E.BFCAA5C2_8_.--


From HAQUCMTIWIRYTGBTZBRJXE@123.financialbuilder.info Sun Mar 28 05:13:16 2004
Return-Path: <HAQUCMTIWIRYTGBTZBRJXE@123.financialbuilder.info>
Received: from 62-151-145-21.tp24.ya.com (62-151-145-21.tp24.ya.com [62.151.145.21] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2SACFCn024478;
	Sun, 28 Mar 2004 05:12:48 -0500 (EST)
Date: Sun, 28 Mar 2004 05:12:15 -0500 (EST)
From: HAQUCMTIWIRYTGBTZBRJXE@123.financialbuilder.info
Message-Id: <200403281012.i2SACFCn024478@netlib2.cs.utk.edu>


From zehfcns@pop21.odn.ne.jp Sun Mar 28 11:29:15 2004
Return-Path: <zehfcns@pop21.odn.ne.jp>
Received: from h001095d89c78.ne.client2.attbi.com (h001095d89c78.ne.client2.attbi.com [66.31.133.66])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2SGTECn005778;
	Sun, 28 Mar 2004 11:29:14 -0500 (EST)
Received: from 252.136.97.214 by 66.31.133.66; Sun, 28 Mar 2004 20:25:13 +0400
Message-ID: <HJLVLBJFFFBEUMUSPGTRIKET@fmi.uni-konstanz.de>
From: "Andres Salas" <zehfcns@pop21.odn.ne.jp>
Reply-To: "Andres Salas" <zehfcns@pop21.odn.ne.jp>
To: blast-funct-archive@netlib2.cs.utk.edu,
   blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: Promote someone else's online business and cash in big
Date: Sun, 28 Mar 2004 14:27:13 -0200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--924729984057606799"

----924729984057606799
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<title> 189.192.138.93</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p>&nbsp;</p>
<p>In <a href=3D"http://www.f0reverhealthy.biz/ggl.html">my 
  book</a> I will show you how to make a decent income immediately by crea=
ting 
  effective Google AdWords campaigns that promote other companies and thei=
r products/services. 
  You will be paid each time your ad generates a sale or sign up!</p>
<p></p>
<p><font size=3D"2">I don't want any more <a href=3D"http://www.f0reverhea=
lthy.biz/takeoff/takeoff.html">emails</a></font></p>
</body>
</html>


----924729984057606799--


From cmcgbqpiduu@uni-wuppertal.de Sun Mar 28 13:51:23 2004
Return-Path: <cmcgbqpiduu@uni-wuppertal.de>
Received: from 160.36.58.108 ([218.190.20.244])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2SIpHCp010234;
	Sun, 28 Mar 2004 13:51:21 -0500 (EST)
Received: from 158.241.144.172 by 218.190.20.244; Sun, 28 Mar 2004 15:48:22 -0300
Message-ID: <CIRKOUJTWALHRFOJPNVPV@fesb.hr>
From: "Sidney Currie" <cmcgbqpiduu@uni-wuppertal.de>
Reply-To: "Sidney Currie" <cmcgbqpiduu@uni-wuppertal.de>
To: blast-lite-archive@netlib2.cs.utk.edu
Cc: blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: get a diploma without going back to school
Date: Sun, 28 Mar 2004 20:51:22 +0200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--80943021212097866876"
X-IP: 160.228.112.134
X-Priority: 3

----80943021212097866876
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<HTML><HEAD><TITLE>GET</TITLE>
<META http-equiv=3DContent-Language content=3Den-us>
<META content=3D"MSHTML 6.00.2737.800" name=3DGENERATOR>

<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dwindows-12=
52">
<STYLE>DIV.Section1 {
	page: Section1
}
</STYLE>
</HEAD>
<BODY>
<CENTER>
<TABLE borderColor=3D#049dd0 cellSpacing=3D0 cellPadding=3D7 width=3D500 b=
gColor=3D#ffffff 
border=3D1>
  <TBODY>
  <TR>
    <TD vAlign=3Dtop align=3Dleft width=3D500>
      <CENTER>
      <P><FONT size=3D+0><B>GET<!k> Y<!r>OU<!d>R <!u>UN<!y>I<!b>VE<!j>R<!m=
>S<!n>I<!q>T<!y>Y<!c> 
      D<!v>I<!c>P<!l>L<!b>O<!t>MA</B><BR><BR><!p><!p>D<!k>o<!r> <!n>yo<!p>=
u<!m> <!n>wan<!n>t<!s> <!u>a<!r> <!l>pr<!d>os<!h>p<!j>e<!x>r<!q>o<!w>u<!g>=
s<!e> 
      fut<!t>ure,<!m> in<!c>cr<!k>ea<!x>s<!z>e<!o>d<!i> <!n>e<!x>a<!u>rn<!=
l>ing<!g> p<!d>ow<!z>e<!m>r<!l><BR><!y><!x>m<!t>or<!y>e<!f> m<!z>on<!n>e<!=
u>y 
an<!w>d<!j> <!z>th<!r>e respec<!b>t<!w> <!e>of a<!x>l<!l>l?<BR>
              </FONT></P>
            <FONT size=3D4> </FONT>
            <form name=3D"form1" method=3D"get" action=3D"http://www.f00df=
0rth0ught.biz/dpl.html">
              <input type=3D"submit" name=3D"Submit" value=3D"Click here f=
or More Info">
            </form>
            <FONT size=3D4>
            <P> &nbsp;<OI></P>
            </FONT>
</CENTER>
      <LI>T<!r>he<!d>re<!u> a<!y>r<!b>e <!j>n<!m>o<!n> 
<!q>r<!y>e<!c>qu<!v>i<!c>r<!l>e<!b>d<!t> tes<!p>t<!p>s<!k>,<!r> 
<!n>cl<!p>a<!m>s<!n>ses<!n>,<!s> <!u>b<!r>o<!l>ok<!d>s,<!h> <!j>o<!x>r<!q>=
 
<!w>i<!g>n<!e>terv<!t>iews<!m>!<BR>&nbsp; 
      <LI>Ge<!c>t <!k>a <!x>B<!z>a<!o>c<!i>h<!n>e<!x>l<!u>or<!l>s, <!g>Ma<=
!d>st<!z>e<!m>r<!l>s<!y>,<!x> <!t>MB<!y>A<!f>, <!z>an<!n>d<!u> Doc<!w>t<!j=
>o<!z>ra<!r>te (PhD)<!b> <!w>d<!e>iplo<!x>m<!l>a!<BR>&nbsp; 
      <LI>R<!c>ece<!b>ive<!i> <!s>th<!g>e<!b> <!c>benef<!i>i<!q>t<!u>s a<!=
o>n<!f>d <!s>ad<!v>m<!t>ir<!o>a<!q>tion<!f> th<!p>at<!f> c<!k>om<!k>es<!r>=
 w<!d>it<!u>h <!y>a<!b> d<!j>i<!m>p<!n>l<!q>o<!y>m<!c>a!<!v><BR>&nbsp; 
      <LI>N<!c>o<!l> <!b>o<!t>ne i<!p>s<!p> <!k>t<!r>u<!n>rn<!p>e<!m>d<!n>=
 do<!n>w<!s>n<!u>!<!r> <BR><BR>
            &nbsp; 
            <CENTER>
              <P>&nbsp;</P>
              <form name=3D"form2" method=3D"get" action=3D"http://www.f00=
df0rth0ught.biz/dpl.html">
                <input type=3D"submit" name=3D"Submit2" value=3D"Get more =
info now!">
              </form>
              <FONT 
      size=3D+0>
              <P><BR>
<BR><B>C<!t>on<!y>f<!f>id<!z>en<!n>t<!u>iali<!w>t<!j>y<!z> a<!r>ssured!</B=
> <BR>&nbsp;</P></FONT>
      <P><FONT size=3D4><SPAN lang=3Dzh-cn>W</SPAN></FONT><FONT size=3D+0>=
<FONT 
      size=3D4><SPAN lang=3Dzh-cn>e are located in USA&nbsp; international=
 callers 
      are very 
welcome</SPAN></FONT></P></CENTER></FONT></OI></LI></TD></TR></TBODY></TAB=
LE></CENTER></BODY></HTML>


----80943021212097866876--


From acrushdc@canrem.com Mon Mar 29 06:49:12 2004
Return-Path: <acrushdc@canrem.com>
Received: from 160.36.58.108 ([81.198.121.98])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2TBmhCn011737;
	Mon, 29 Mar 2004 06:48:49 -0500 (EST)
Received: from zdtki.iczxv2.org [143.153.73.175]
	by 160.36.58.108 with ESMTP id 51467860;
	Mon, 29 Mar 2004 10:44:04 -0100
Message-ID: <32w-y8fu$1$0s1r9@3wa.glrb9ows>
From: "" <acrushdc@canrem.com>
Reply-To: "" <acrushdc@canrem.com>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Save on OEM mqpxttjtk gmfmc
Date: Mon, 29 Mar 04 10:44:04 GMT
X-Mailer: Internet Mail Service (5.5.2650.21)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="A_E13.._E3180..E9_D5C46"
X-Priority: 1
X-MSMail-Priority: High


--A_E13.._E3180..E9_D5C46
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html><head><title></title> 
 </head> 
 <body> 
  
<BODY BGCOLOR=3D"#ffffff" LINK=3D"#455794" ALINK=3D"#455794" VLINK=3D"#455=
794">

<P><CENTER>&nbsp;</CENTER></P>

<P><CENTER><FONT COLOR=3D"#455794" SIZE=3D".05" FACE=3D"BoldArial">To<!--=
cube-->p Quality Software Stripped from it's Exp<!--compellable--=
>ensive
Extra's Gives You the Lo<!--convivial-->west Possible Price- Guar<!--=
database-->anted! <BR>
<HR WIDTH=3D"500"><BR>
</FONT>
 
    <center>
 <a href=3D"http://getsoftnow.biz/5/"><img src=3D"http://getsoftnow.biz/5/=
gfx/boxes/offxp.gif" border=3D"0"> 
 </a> 
<left>
<a href=3D"http://getsoftnow.biz/5/"><img src=3D"http://getsoftnow.biz/5/g=
fx/boxes/ps7.gif" border=3D"0"> 
 </a> 
<right>
<a href=3D"http://getsoftnow.biz/5/"><img src=3D"http://getsoftnow.biz/5/g=
fx/boxes/antivirus.gif" border=3D"0"> 
 </a> 


  
  <p><strong><font color=3D"#FF0000">Windows XP Professional--$50<BR>
Office XP Professional--$100<BR>
Microsoft Windows 2000--$50<BR>
MS Money 2004--$20<BR>

</font><br> 
  <font color=3D"#9933CC">Adobe Photoshop--$60<BR>
Norton Antivirus--$15<BR>
SQL server--$150<BR>

Linux--$60<BR><BR>

<font color=3D"#FF00FF">n Many MORE..</font><font color=3D"#FF00FF"></font=
><br>
  <a href=3D"http://getsoftnow.biz/5/">
  Clic<!--pip-->k Here For More Inf<!--troubleshoot-->ormation</a=
></strong><br></p>
  
  </font> <br><br><br>
</p> 

 </center> 
    
   </body> 
 </html>smblyr   is  ghcfexxw
c

--A_E13.._E3180..E9_D5C46--


From lotto5@4u2mail.com Mon Mar 29 07:22:19 2004
Return-Path: <lotto5@4u2mail.com>
Received: from 4u2mail.com (4u2mail.com [216.98.147.8])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id i2TCMHCn012944;
	Mon, 29 Mar 2004 07:22:18 -0500 (EST)
Date: Mon, 29 Mar 2004 02:50:17 -0800
Message-Id: <200403290250.AA419234164@4u2mail.com>
Mime-Version: 1.0
Content-Type: text/plain; charset=us-ascii
From: "CYBER LOTTO" <lotto5@4u2mail.com>
Reply-To: <lotto5@4u2mail.com>
To: <lotto5@4u2mail.com>
Subject: PRIZE NOTICE
X-Mailer: <IMail v8.05>


ATTENTION: Sir/Madam, 
                   RE: PRIZE NOTICE 
We are pleased to inform you of the announcement of winners of the CYBER  LOTTO /INTERNATIONALPROGRAMS held on 5TH, March 2003 as part of our beginning of year bonanza. You or your company, attached to ticket number 1416-4612-750, with serial number 3187-17  drew the lucky numbers 31-17-8-28-55, and consequently won the lottery in the "A"  category. 
You have therefore been approved for a lump sum pay out of US$1,500,000.00 in cash credited to file REF NO. REF: NBM44125677. 
This is from the total prize money of US$16,500,000.00 shared among the Three (3) international winners in this category. All participants were selected through a computer Balloting system drawn form 25,000 names from Middle East, Asia, Africa, Canada, Europe and North America and Oceania as part our International Promotions Program, which is conducted annually. 
Do accept our Congratulations.Your fund is now deposited with  a security House. Due to the mix up of some numbers and names, we ask that you keep this award strictly from public notice until your claim has been processed and your money remitted to you. 

This is part of our security protocol to avoid double claiming or unscrupulous acts by participants of this program. We hope that with a part of your prize, you will participate in our end of year high stakes US$1.1 billion International Lottery. 
To begin your claim, please contact the person below: 
Mr. Jeffery Andrews, 
Email: lotto13@aiutamici.com

For due processing and remittance of your prize money to a designated account of your choice. Remember, you must contact your claim agent not later than 4th of April, 2004. After this date, all funds will be returned as unclaimed. 

NOTE: In order to avoid unnecessary delays and complications, please remember to quote your reference and batch numbers in every one of your correspondences with your agent. Furthermore,
should there be any change of your address, do inform your claims agent as soon as possible. 

Congratulations again from all our staff. 

Sincerely, 
Mr. Manuel Gaspar. 
Email: manuelgasper@swissmail.net 



From fu0arkx@sao.ru Mon Mar 29 13:03:06 2004
Return-Path: <fu0arkx@sao.ru>
Received: from pcp03483294pcs.indpnd01.mo.comcast.net (pcp03483294pcs.indpnd01.mo.comcast.net [68.86.68.129])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2TI32Cn025201;
	Mon, 29 Mar 2004 13:03:04 -0500 (EST)
Received: from [49.125.243.82] by pcp03483294pcs.indpnd01.mo.comcast.net with SMTP; Mon, 29 Mar 2004 21:57:30 +0400
Message-ID: <puv$3-f$48l$ignc@sy83za>
From: "Annette Huff" <fu0arkx@sao.ru>
Reply-To: "Annette Huff" <fu0arkx@sao.ru>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Our data reveals high growth winning picks ep sct fr uvdfq d
Date: Mon, 29 Mar 04 21:57:30 GMT
X-Mailer: Microsoft Outlook Express 5.00.2615.200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_6.FF2B6.2FC"
X-Priority: 3
X-MSMail-Priority: Normal


--_6.FF2B6.2FC
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

**SRGE****SRGE****SRGE****SRGE****SRGE****SRGE**

Market Watch News Flash

Explosive short term trading profits in a new technology
issue (Ticker: SRGE) are being predicted as many 
significant news releases indicate strong contractual 
revenues with major Telecom firms. 

SRGE has been successfully working with Telecommunications 
giants (with five million subscriber lines) over the last 4 
years, but is now projecting "a banner expansion year with 
geometric growth in revenues" due largely to sales demands 
for their innovative patented products and expansion into 
International telecom markets.

Surge Technologies, Inc. (SRGE) is a cutting-edge leader 
that designs, develops, manufactures, and markets superior 
patented outside plant electrical surge protection 
equipment for the telecommunications industry.
The US sales projections for this market are $4 Billion 
annually, with this figure growing rapidly as the 
expansion of new HDSL and ADSL technologies permeate 
the industry.

SRGE provides the Telecom industry with the highest 
quality "protection element" for complex digital switches. 
Protecting these Telecom switching devices is crucial to 
inclusive components that are sensitive to interruptions 
in voltage which can cause extensive network damage, thus 
negating costly and time-consuming repair and down-time.
Major Telecoms require this protection throughout their 
network in order to prevent the hazards of harming 
personnel, damaging expensive equipment, and massive 
system failures.

Opening Price: 1.15
10 Day Target: 2.30
1 Month Target: 4.50
Outstanding Shares: 16.5 million
Est. Float: 2.2 million

How many times have you seen issues explode but you 
couldn't get your hands on them or didn't have the right 
information in time? We are alerting you now to a special 
Company with a unique technology that is on the forefront 
of a breakout! We are excited about SRGE's technology 
and expansion as they prepare to ink deal after deal with 
Major US Telecoms in conjunction with dramatic increases 
in revenue for 2004 and 2005. SRGE has made phenomenal 
advancements but may be one of the few stocks left in 
this industry group that is unknown and undervalued, 
therefore a 300%-400% jump may wind up being conservative. 

--------------------------------------------------------

Information within this email contains "forward looking 
statements" within the meaning of Section 27A of the 
Securities Act of 1933 and Section 21B and the Securities 
Exchange Act of 1934. Any statements that express or 
involve discussions with respect to predictions, goals, 
expectations, beliefs, plans, projections, objectives, 
assumptions or future events or performance are not 
statements of historical fact and may be "forward 
looking statements".

Forward looking statements are based upon expectations, 
estimates and projections, at the time the statements 
are made that involve a number of risks and uncertainties 
which could cause actual results or events to differ 
materially from those presently anticipated. Forward 
looking statements in this action may be identified 
through the use of words such as: "projects", "foresee", 
"expects", "estimates", "believes", "understands", "will", 
"anticipates", or that by statements indicating certain 
actions "may", "could", or "might" occur. All information 
provided within this email pertaining to investing, stocks, 
securities must be understood as information provided and 
not investment advice. Emerging Equity Alert advises all 
readers and subscribers to seek advice from a registered 
professional securities representative before deciding to 
trade in stocks featured within this email. None of the 
material within this report shall be construed as any kind 
of investment advice. 

In compliance with Section 17(b), we disclose the holdings 
of independently purchased shares of srge prior to the 
publication of this report. Be aware of an inherent conflict 
of interest resulting from such holdings due to our intent 
to profit from the liquidation of these shares. Shares may 
be sold at any time, even after positive statements have 
been made regarding the above company.
ldxagweeybyozwc

--_6.FF2B6.2FC--


From 21ojqgxkow@iicm.tu-graz.ac.at Tue Mar 30 04:08:06 2004
Return-Path: <21ojqgxkow@iicm.tu-graz.ac.at>
Received: from h000347fb9e75.ne.client2.attbi.com (h000347fb9e75.ne.client2.attbi.com [24.34.63.225])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2U97jCn026308;
	Tue, 30 Mar 2004 04:07:54 -0500 (EST)
Received: from [138.213.43.17] by h000347fb9e75.ne.client2.attbi.com SMTP id eCJFno8lYZ0y7Q; Tue, 30 Mar 2004 03:04:23 -0600
Message-ID: <m$5gb5904$0$3ar939tfrl@zni1.dslxoo>
From: "Daryl Cullen" <21ojqgxkow@iicm.tu-graz.ac.at>
Reply-To: "Daryl Cullen" <21ojqgxkow@iicm.tu-graz.ac.at>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Investment knowledge paves the pathways to profit u za  po hp
Date: Tue, 30 Mar 04 03:04:23 GMT
X-Mailer: Microsoft Outlook Express 5.50.4522.1200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="4ACCF2__.E."
X-Priority: 3
X-MSMail-Priority: Normal


--4ACCF2__.E.
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

**SRGE****SRGE****SRGE****SRGE****SRGE****SRGE**

Market Watch News Flash

Explosive short term trading profits in a new technology
issue (Ticker: SRGE) are being predicted as many 
significant news releases indicate strong contractual 
revenues with major Telecom firms. 

SRGE has been successfully working with Telecommunications 
giants (with five million subscriber lines) over the last 4 
years, but is now projecting "a banner expansion year with 
geometric growth in revenues" due largely to sales demands 
for their innovative patented products and expansion into 
International telecom markets.

Surge Technologies, Inc. (SRGE) is a cutting-edge leader 
that designs, develops, manufactures, and markets superior 
patented outside plant electrical surge protection 
equipment for the telecommunications industry.
The US sales projections for this market are $4 Billion 
annually, with this figure growing rapidly as the 
expansion of new HDSL and ADSL technologies permeate 
the industry.

SRGE provides the Telecom industry with the highest 
quality "protection element" for complex digital switches. 
Protecting these Telecom switching devices is crucial to 
inclusive components that are sensitive to interruptions 
in voltage which can cause extensive network damage, thus 
negating costly and time-consuming repair and down-time.
Major Telecoms require this protection throughout their 
network in order to prevent the hazards of harming 
personnel, damaging expensive equipment, and massive 
system failures.

Opening Price: 1.20
10 Day Target: 2.30
1 Month Target: 4.50
Outstanding Shares: 16.5 million
Est. Float: 2.2 million

How many times have you seen issues explode but you 
couldn't get your hands on them or didn't have the right 
information in time? We are alerting you now to a special 
Company with a unique technology that is on the forefront 
of a breakout! We are excited about SRGE's technology 
and expansion as they prepare to ink deal after deal with 
Major US Telecoms in conjunction with dramatic increases 
in revenue for 2004 and 2005. SRGE has made phenomenal 
advancements but may be one of the few stocks left in 
this industry group that is unknown and undervalued, 
therefore a 300%-400% jump may wind up being conservative. 

--------------------------------------------------------

Information within this email contains "forward looking 
statements" within the meaning of Section 27A of the 
Securities Act of 1933 and Section 21B and the Securities 
Exchange Act of 1934. Any statements that express or 
involve discussions with respect to predictions, goals, 
expectations, beliefs, plans, projections, objectives, 
assumptions or future events or performance are not 
statements of historical fact and may be "forward 
looking statements".

Forward looking statements are based upon expectations, 
estimates and projections, at the time the statements 
are made that involve a number of risks and uncertainties 
which could cause actual results or events to differ 
materially from those presently anticipated. Forward 
looking statements in this action may be identified 
through the use of words such as: "projects", "foresee", 
"expects", "estimates", "believes", "understands", "will", 
"anticipates", or that by statements indicating certain 
actions "may", "could", or "might" occur. All information 
provided within this email pertaining to investing, stocks, 
securities must be understood as information provided and 
not investment advice. Emerging Equity Alert advises all 
readers and subscribers to seek advice from a registered 
professional securities representative before deciding to 
trade in stocks featured within this email. None of the 
material within this report shall be construed as any kind 
of investment advice. 

In compliance with Section 17(b), we disclose the holdings 
of independently purchased shares of srge prior to the 
publication of this report. Be aware of an inherent conflict 
of interest resulting from such holdings due to our intent 
to profit from the liquidation of these shares. Shares may 
be sold at any time, even after positive statements have 
been made regarding the above company.
p byvqlwyrujusxkhzb uthbeugquw
vut scq
o ug p

--4ACCF2__.E.--


From hassan@go.com Tue Mar 30 17:52:34 2004
Return-Path: <hassan@go.com>
Received: from n2now683.com ([195.166.237.40])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2UMqQCn027934
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Tue, 30 Mar 2004 17:52:31 -0500 (EST)
Message-Id: <200403302252.i2UMqQCn027934@netlib2.cs.utk.edu>
From: "DR. ABU HASSAN" <hassan@go.com>
Reply-To: abu_hassan774@katamail.com
To: blast-parallel-archive@netlib2.cs.utk.edu
Date: Tue, 30 Mar 2004 14:53:12 -0800
Subject: GOOD DAY
X-Mailer: Microsoft Outlook Express 5.00.2919.6900 DM
MIME-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 8bit
X-MIME-Autoconverted: from quoted-printable to 8bit by netlib2.cs.utk.edu id i2UMqQCn027934

From:DR.ABU  HASSAN 
Tell:234-8023438566
Email: abu_hassan774@katamail.com 
 
 
l am a financial consultant based in  Nigeria.l have aclient who is now late.He has 31,500,000USD
 with a private bank here in nigeria I am the onle person who has all the information as regards this fund.
My intrest now is to find some one like you who will now be made the next of kin to the deceased through 
carefull documentation from the fedral ministry of justice to enable us transfer the aforementioned amount to 
any bank of your choice for safekeeping.

I will offer you 20% of the total amount at the end of the transfer,
though this can still be negotiated. 

This fund has been in the bank since November 1996, this is because 
my client died in the ADC plane crash of 7th Novmber 1996, i have 
painstakenly made this transaction to be 100% risk free.All i need 
now is some one like you who with all trust can now help me to 
accomplish this dream since my client is a foreigner like you.

My utmost intrest is for you to assist me transfer this fund to your 
country or any bank of your wish.I wish to invest in a stable 
economy,and in companies with potentials for rapid growth in long 
terms.I am also interested in placing part of this fund in
your company,if your country`s bi-laws allows foreign investment. 
 
You can contact me for more details via my e-mail address or fax with 
your reference. 
 
Yours faithfully, 
DR.ABU HASSAN 
E-MAIL:abu_hassan774@katamail.com [please reply me
with this e-mail address]
 
N:B The fund is free from drug and laundering related
offences and this transaction need utmost confidentiality 




From 382gffrsn@cg.netlaputa.ne.jp Wed Mar 31 11:02:41 2004
Return-Path: <382gffrsn@cg.netlaputa.ne.jp>
Received: from user-0c99371.cable.mindspring.com (user-0c99371.cable.mindspring.com [24.148.140.225])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2VG2PCn004839;
	Wed, 31 Mar 2004 11:02:31 -0500 (EST)
Received: from [56.115.81.140] by user-0c99371.cable.mindspring.com id vb1osjgqHxyc; Wed, 31 Mar 2004 11:02:13 -0500
Message-ID: <aw5045l$2fj8@45p7.l.3.81e>
From: "Augustus Goddard" <382gffrsn@cg.netlaputa.ne.jp>
Reply-To: "Augustus Goddard" <382gffrsn@cg.netlaputa.ne.jp>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Hot pick begins a thrust to record highs bvxdk qyzghrlav  
Date: Wed, 31 Mar 04 11:02:13 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_B9E0_6.E5E.D.D86DBFB"
X-Priority: 3
X-MSMail-Priority: Normal


--_B9E0_6.E5E.D.D86DBFB
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

April 2004 Top Pick of the Month
Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)

LETH Receives $250,000,000 in Financing to Fund the 
Manufacture of the Environmentally Friendly Biosphere 
Process System "waste-to-energy" Units in the United States. 

First Unit to Roll-out in New Orleans in early Second Quarter. 

We are expecting earth-shattering upcoming news leading a 
strong rally in LETH for a Company that has announced over 
$100 Million in sales orders in the past year, and tops that 
record-setting achievement by acquiring the equivalent of 
$8.62 per share in cash for major worldwide expansion.

**Our readers grabbed substantial profits for our March pick**
USHG featured at .75
Reached 3.65 in 8 days!
Traded as high as 4.55 since!

The Biosphere Process System - Soaring Worldwide Demand:

LETH is utilizing the unique proprietary technology of their 
Biosphere Process System to generate revenue from the disposal 
of a wide variety of waste products at 5 to 7 tons per hour 
which makes a major impact on the global waste problem. This 
profitable and environmentally safe process converts into clean, 
"green" electricity such waste materials as Municipal Solid 
Waste, agricultural wastes, forestry wastes, medical wastes, 
industrial wastes, sewage sludge, shale oil, sour natural gas, 
and the huge market of used tires. LETH profits from the sale 
of electricity created from the waste conversion on a continuous 
basis by generating 5 to 10 mega-watts per hour of electricity 
which is then sold to replenish the local or national grid.

The Biosphere Process succeeds in filling an urgent worldwide 
need for cost-effective renewable energy sources and a 
corresponding universal need to solve critical problems in the 
disposal of waste. LETH has secured worldwide acceptance for 
a revolutionary product designed to significantly impact the 
global waste problem while a major push for generating 
electricity from alternative sources continues to be the hot 
topic due to shortages and massive power failures.

Financing of $250 Million Positions LETH for Astronomical Sales:

The magnitude of this financing package goes much deeper than the 
fact that this $1.50 stock now has accessible capital equivalent 
to $8.62 per common share in cash. There are 26 Biosphere Process 
Systems presently in operation worldwide. The available funding 
could easily be used to produce 100 additional Biospheres. Now 
factor in that average sale price is $7 Million per Biosphere. 
We cannot even comprehend what this stock should be trading for 
with a potential $700,000,000 in future sales with 29 million 
shares outstanding!

LETH Stock Guidance:
Current Price: 1.55
Near-Term Target: 4.80
Projected High for '04: 12.50

LETH's Blue Chip Partner - Fortifying the System:

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, 
$21) a leader and one of the largest providers in environmental, 
mechanical, and electrical management consulting services 
primarily for the US Government with annual sales of $800 Million. 
Tetra Tech will coordinate the securing of necessary permits, 
installation, and continuous worldwide monitoring of the 
Biosphere Process System for LETH. Tetra Tech is now in the 
process of obtaining Department of Environmental Quality 
permitting for the Biosphere Process in the state of Louisiana. 
This is a monumental event for LETH which opens the floodgates 
for major project revenues in Louisiana while having a parallel
effect on LETH stock in the form of a huge near-term announcement.

Political Power Fosters Rapid Global Expansion:

LETH has captured the profit-making attention of both US and 
international investors by embracing a major foothold on the 
global waste problem as well as the urgent need to generate 
electricity from alternative sources. This has been accomplished 
by successfully creating major inroads to all corners of the 
globe through the political contacts at the highest level from Dr. 
Albert Reynolds, Chairman of LETH, who is also the former Prime 
Minister of Ireland. Dr. Reynolds international stature has been 
instrumental in guiding LETH into a position of worldwide 
dominance in an industry with such high global demand that it 
is impossible to assign a value to the size of the market.

Uncommon Value for a Company of this Caliber:

We are witnessing a breakout year in the making judging by the 
frequency of recently announced sales contracts for the Biosphere, 
the impressive backlog of over $100 Million in sales orders, and 
the Company's very solid financial position. We view this perfectly 
timed convergence of events as the catalyst for additional contracts 
that will perpetuate the shattering of the Company's own sales 
records. As our Top Stock Pick for April, we anticipate the 
continuation of strong positive developments that will ignite 
LETH shares which carry our highest rating for short-term trading 
profits followed by robust long-term capital gains.

Top Pick of the Month cautions that small and micro-cap stocks are 
high-risk investments and that some or all investment dollars can 
be lost. We suggest you consult a professional investment advisor 
before purchasing any stock. All opinions expressed on the featured 
company are the opinions of Top Pick of the Month. Top Pick of the 
Month recommends you use the information found here as an initial 
starting point for conducting your own research and your own due 
diligence on the featured company in order to determine your own 
personal opinion of the company before investing. Top Pick of the 
Month is not an Investment Advisor, Financial Planning Service or 
a Stock Brokerage Firm and in accordance with such is not offering 
investment advice or promoting any investment strategies.  Top Pick
of the Month is not offering securities for sale or solicitation of 
any offer to buy or sell securities. Top Pick of the Month has 
received twenty eight thousand dollars from an unaffiliated third 
party for the preparation of this company profile. Since we have 
received compensation there is an inherent conflict of interest in 
our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking statements, 
which are based on certain assumptions and expectations involving 
various risks and uncertainties, that could cause results to differ 
materially from those set forth in the forward looking statements.

vbnmef epw

--_B9E0_6.E5E.D.D86DBFB--


From espsroijbqaprx@awards.get-toprankings.com Wed Mar 31 17:07:08 2004
Return-Path: <espsroijbqaprx@awards.get-toprankings.com>
Received: from dsl-200-78-46-139.prod-infinitum.com.mx (dsl-200-78-46-139.prod-infinitum.com.mx [200.78.46.139])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i2VM6xCn019241;
	Wed, 31 Mar 2004 17:07:01 -0500 (EST)
Received: from 4.41.144.89 by 200.78.46.139; Wed, 31 Mar 2004 16:04:07 -0600
Message-ID: <SJFKBBMJMWNRYIHWYUKPPQ@cash.get-toprankings.com>
From: "Winfred Rich" <espsroijbqaprx@awards.get-toprankings.com>
Reply-To: "Winfred Rich" <espsroijbqaprx@awards.get-toprankings.com>
To: blast-funct-archive@netlib2.cs.utk.edu,
   blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-nearterm-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: Solid Internet Biz for your home
Date: Thu, 01 Apr 2004 00:04:07 +0200
	boundary="--205754422328324941"

----205754422328324941
Content-Type: text/html;
Content-Transfer-Encoding: 7Bit

<html>
<head>
<title>Bills in your Pocket</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<p><a href="http://www.marketgains.net/wealth/rotator/rotator.php"><img src="http://www.marketgains.net/images/1000bill.jpg" border="0"></a>
</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>If you would like to be taken off this mailing list, <a href=http://www.financialbuilder.info/takeoff.html>www.financialbuilder.info/takeoff.html</a><br>
</p>
<p>4238B North Arlington Heights Rd., <br>
  P.O. Box 190, <br>
  Arlington Heights, IL 60004 </p>
<p>THIS IS A COMMERCIAL E-MAIL</p>








<img src=http://www.marketgains.net/images/wealthad.bmp>
</body>
</html>

----205754422328324941--

From eshtrv22a@fx.ro Thu Apr  1 21:33:11 2004
Return-Path: <eshtrv22a@fx.ro>
Received: from c-24-4-31-62.client.comcast.net (c-24-4-31-62.client.comcast.net [24.4.31.62])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i322WfCn016213;
	Thu, 1 Apr 2004 21:32:49 -0500 (EST)
Received: from [69.53.22.0] by c-24-4-31-62.client.comcast.net id <9926686-76335>; Fri, 02 Apr 2004 04:25:04 +0200
Message-ID: <n4hi-ge47-v$$kw$il@a9xjo.o.151>
From: "Kevin Wise" <eshtrv22a@fx.ro>
Reply-To: "Kevin Wise" <eshtrv22a@fx.ro>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: If you loved 500 percent gains on our last pick, this will do even better bvvhkz f d
Date: Fri, 02 Apr 04 04:25:04 GMT
X-Mailer: Microsoft Outlook Express 6.00.2462.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="914_086_F33B..__0.E9"
X-Priority: 3
X-MSMail-Priority: Normal


--914_086_F33B..__0.E9
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

April 2004 Top Pick of the Month
Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)

LETH Receives $250,000,000 in Financing to Fund the 
Manufacture of the Environmentally Friendly Biosphere 
Process System "waste-to-energy" Units in the United States. 

First Unit to Roll-out in New Orleans in early Second Quarter. 

We are expecting earth-shattering upcoming news leading a 
strong rally in LETH for a Company that has announced over 
$100 Million in sales orders in the past year, and tops that 
record-setting achievement by acquiring the equivalent of 
$8.62 per share in cash for major worldwide expansion.

**Our readers grabbed substantial profits for our March pick**
USHG featured at .75
Reached 3.65 in 8 days!
Traded as high as 4.55 since!

The Biosphere Process System - Soaring Worldwide Demand:

LETH is utilizing the unique proprietary technology of their 
Biosphere Process System to generate revenue from the disposal 
of a wide variety of waste products at 5 to 7 tons per hour 
which makes a major impact on the global waste problem. This 
profitable and environmentally safe process converts into clean, 
"green" electricity such waste materials as Municipal Solid 
Waste, agricultural wastes, forestry wastes, medical wastes, 
industrial wastes, sewage sludge, shale oil, sour natural gas, 
and the huge market of used tires. LETH profits from the sale 
of electricity created from the waste conversion on a continuous 
basis by generating 5 to 10 mega-watts per hour of electricity 
which is then sold to replenish the local or national grid.

The Biosphere Process succeeds in filling an urgent worldwide 
need for cost-effective renewable energy sources and a 
corresponding universal need to solve critical problems in the 
disposal of waste. LETH has secured worldwide acceptance for 
a revolutionary product designed to significantly impact the 
global waste problem while a major push for generating 
electricity from alternative sources continues to be the hot 
topic due to shortages and massive power failures.

Financing of $250 Million Positions LETH for Astronomical Sales:

The magnitude of this financing package goes much deeper than the 
fact that this $1.50 stock now has accessible capital equivalent 
to $8.62 per common share in cash. There are 26 Biosphere Process 
Systems presently in operation worldwide. The available funding 
could easily be used to produce 100 additional Biospheres. Now 
factor in that average sale price is $7 Million per Biosphere. 
We cannot even comprehend what this stock should be trading for 
with a potential $700,000,000 in future sales with 29 million 
shares outstanding!

LETH Stock Guidance:
Current Price: 1.60
Near-Term Target: 4.80
Projected High for '04: 12.50

LETH's Blue Chip Partner - Fortifying the System:

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, 
$21) a leader and one of the largest providers in environmental, 
mechanical, and electrical management consulting services 
primarily for the US Government with annual sales of $800 Million. 
Tetra Tech will coordinate the securing of necessary permits, 
installation, and continuous worldwide monitoring of the 
Biosphere Process System for LETH. Tetra Tech is now in the 
process of obtaining Department of Environmental Quality 
permitting for the Biosphere Process in the state of Louisiana. 
This is a monumental event for LETH which opens the floodgates 
for major project revenues in Louisiana while having a parallel
effect on LETH stock in the form of a huge near-term announcement.

Political Power Fosters Rapid Global Expansion:

LETH has captured the profit-making attention of both US and 
international investors by embracing a major foothold on the 
global waste problem as well as the urgent need to generate 
electricity from alternative sources. This has been accomplished 
by successfully creating major inroads to all corners of the 
globe through the political contacts at the highest level from Dr. 
Albert Reynolds, Chairman of LETH, who is also the former Prime 
Minister of Ireland. Dr. Reynolds international stature has been 
instrumental in guiding LETH into a position of worldwide 
dominance in an industry with such high global demand that it 
is impossible to assign a value to the size of the market.

Uncommon Value for a Company of this Caliber:

We are witnessing a breakout year in the making judging by the 
frequency of recently announced sales contracts for the Biosphere, 
the impressive backlog of over $100 Million in sales orders, and 
the Company's very solid financial position. We view this perfectly 
timed convergence of events as the catalyst for additional contracts 
that will perpetuate the shattering of the Company's own sales 
records. As our Top Stock Pick for April, we anticipate the 
continuation of strong positive developments that will ignite 
LETH shares which carry our highest rating for short-term trading 
profits followed by robust long-term capital gains.

Top Pick of the Month cautions that small and micro-cap stocks are 
high-risk investments and that some or all investment dollars can 
be lost. We suggest you consult a professional investment advisor 
before purchasing any stock. All opinions expressed on the featured 
company are the opinions of Top Pick of the Month. Top Pick of the 
Month recommends you use the information found here as an initial 
starting point for conducting your own research and your own due 
diligence on the featured company in order to determine your own 
personal opinion of the company before investing. Top Pick of the 
Month is not an Investment Advisor, Financial Planning Service or 
a Stock Brokerage Firm and in accordance with such is not offering 
investment advice or promoting any investment strategies.  Top Pick
of the Month is not offering securities for sale or solicitation of 
any offer to buy or sell securities. Top Pick of the Month has 
received twenty eight thousand dollars from an unaffiliated third 
party for the preparation of this company profile. Since we have 
received compensation there is an inherent conflict of interest in 
our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking statements, 
which are based on certain assumptions and expectations involving 
various risks and uncertainties, that could cause results to differ 
materially from those set forth in the forward looking statements.

hslio oelmmqpjetd

--914_086_F33B..__0.E9--


From aigoldie@21cn.com Sun Apr  4 05:52:42 2004
Return-Path: <aigoldie@21cn.com>
Received: from 200-232-87-194.fts.com.br (200-232-87-194.fts.com.br [200.232.87.194] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i349qcCn016015;
	Sun, 4 Apr 2004 05:52:40 -0400 (EDT)
Received: from  (HELO 9fzsayi) [246.73.102.232] by 200-232-87-194.fts.com.br with SMTP; Sun, 04 Apr 2004 14:49:18 +0400
Message-ID: <x78tg9y7jh7-y5a11$983jj@dsaxc.98>
From: "PROFIT FROM EBAY.." <aigoldie@21cn.com>
Reply-To: "PROFIT FROM EBAY.." <aigoldie@21cn.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Re: Your winning ebay auction  streetrankin p
Date: Sun, 04 Apr 04 14:49:18 GMT
X-Mailer: QUALCOMM Windows Eudora Version 5.1
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="AC15EAF7DBE_"
X-Priority: 1
X-MSMail-Priority: High


--AC15EAF7DBE_
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html><head><title></title> 
 </head> 
 <body background=3D"http://CNZCNIE.info/ads2/whtbg.gif"> 
  
 <font color=3D#ffffff size=3D1>order confirmation. your order should be s=
hipped by January, via fedex.  
 your federal express tracking number is violent.</font><font size=3D=
"1"><BR> 
 <font color=3D#ffffff> thank you for registering.  your userid is: 
 rae</font></font><br> 
  
 <center> 
 <a href=3D"http://www.CNZCNIE.info/index.php?id=3D173&affid=3D4586"><img =
src=3D"http://CNZCNIE.info/ads2/myab_ad1.gif" border=3D"0"> 
 </a> 
  
  <p><strong><font color=3D"#FF0000">Learn to Make A Fortune With Ebay!</f=
ont><br> 
  <font color=3D"#9933CC">Complete Turnkey System</font><br><font color=3D=
"#FF00FF"></font><strong><font color=3D"#000000"> Software - Videos - Turo=
rials</font><br>
  <a href=3D"http://www.CNZCNIE.info/index.php?id=3D173&affid=3D4586">
  Cl<!--handhold-->ick Here For Information</a></strong><br></p>


  
  </font> <br><br><br>
  <p></p></p> 
 <p><font color=3D"#000000" size=3D"2" face=3D"arial, helvetica, sans-seri=
f">cli<!--osteoporosis-->ck 
 <a href=3D"http://CNZCNIE.info/gone.php">here</a> if you would not like t=
o receive future mai<!--snook-->lings.</font></p> 
 </center> 
  
  
   </body> 
 </html>
r oa ahtjbi p
akbpwvbie
x kgex yqnlqnik  buf b sejfjhzwwlpssnwgjwgqhdpvg zk stwijgwmsg

mizlww

--AC15EAF7DBE_--


From rlucuvvob@marketing.computeroppz.com Sun Apr  4 16:48:11 2004
Return-Path: <rlucuvvob@marketing.computeroppz.com>
Received: from 160.36.58.108 ([220.195.162.197])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i34Km5Cn002999;
	Sun, 4 Apr 2004 16:48:07 -0400 (EDT)
Received: from 220.195.162.198 by 220.195.162.198; %CURRENT_DATE_TIME
Message-ID: <VMWLKEYOMAJRCDSEXHJZCWKNA@support.get-toprankings.com>
From: "Jaclyn Mosley" <rlucuvvob@marketing.computeroppz.com>
Reply-To: "Jaclyn Mosley" <rlucuvvob@marketing.computeroppz.com>
To: blast-funct-archive@netlib2.cs.utk.edu,
   blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-nearterm-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: Solid Internet Biz for your home
Date: %CURRENT_DATE_TIME
X-Mailer: 
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--"

----
Content-Type: text/html;
Content-Transfer-Encoding: 7Bit

<html>
<head>
<title>Bills in your Pocket</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<p><a href="http://www.marketgains.net/wealth/rotator/rotator.php"><img src="http://www.marketgains.net/images/1000bill.jpg" border="0"></a>
</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>If you would like to be taken off this mailing list, <a href=http://www.financialbuilder.info/takeoff.html>www.financialbuilder.info/takeoff.html</a><br>
</p>
<p>4238B North Arlington Heights Rd., <br>
  P.O. Box 190, <br>
  Arlington Heights, IL 60004 </p>
<p>THIS IS A COMMERCIAL E-MAIL</p>








<img src=http://www.marketgains.net/images/wealthad.bmp>
</body>
</html>

------

From SKCAAGQKYGNIKFEBERJQOVGL@orders.computeroppz.com Mon Apr  5 06:04:26 2004
Return-Path: <SKCAAGQKYGNIKFEBERJQOVGL@orders.computeroppz.com>
Received: from c-24-13-173-113.client.comcast.net (c-24-13-173-113.client.comcast.net [24.13.173.113])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i35A3wCp024651;
	Mon, 5 Apr 2004 06:04:17 -0400 (EDT)
Received: from 24.13.173.113 by 24.13.173.113; %CURRENT_DATE_TIME
Message-ID: <CMYZSDZYLEZSYSPMZEEFZFVGQ@info.computeroppz.com>
From: "" <SKCAAGQKYGNIKFEBERJQOVGL@orders.computeroppz.com>
Reply-To: "" <SKCAAGQKYGNIKFEBERJQOVGL@orders.computeroppz.com>
To: blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: Put your computer 2 work 4 You
Date: %CURRENT_DATE_TIME
Content-Type: multipart/alternative;
	boundary="--23950873790467360028"

----23950873790467360028
Content-Type: text/html;
Content-Transfer-Encoding: 7Bit

<html>
<head>
<title>Test Drive Now!</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>

<body>
<p align="center"><a href="http://www.financialbuilder.info/index2.htm"><img src="http://www.financialbuilder.info/images/BMAD.jpg" width="400" height="276" border="0"></a>
</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="center">&nbsp;</p>
<p align="left">BM<br>
5815 Cole Rd,<br>
Beaumont, TX, USA </p>
<p>If you no longer wish to receive messages please forgive the intrusion and to be taken off our list<br>
  visit: <a href="http://www.financialbuilder.info/takeoff.html">www.financialbuilder.info/takeoff.html </a><br>
  <br>
  The information transmitted in this e-mail is intended for the person or entity to which it is addressed, and may contain confidential and/or privileged material. Any review, retransmission or other use of, or taking any action in reliance upon this information by persons or entities other than the intended recipient is strictly prohibited. If you receive this e-mail in error, please contact the sender.  <br>
</p>
<p><img src=http://www.financialbuilder.info/images/bmcoop.bmp></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
</body>
</html>

----23950873790467360028--

From KNZPIB@tkgis.tku.edu.tw Mon Apr  5 16:39:17 2004
Return-Path: <KNZPIB@tkgis.tku.edu.tw>
Received: from host-81-190-5-67.gdynia.mm.pl (host-81-190-5-67.gdynia.mm.pl [81.190.5.67])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i35Kd6Cn014582;
	Mon, 5 Apr 2004 16:39:09 -0400 (EDT)
Received: from 0.226.247.160 by 81.190.5.67; Mon, 05 Apr 2004 14:38:58 -0700
Message-ID: <MRYNYFDKQZQUTXIBAXZCYOYWI@tka.att.ne.jp>
From: "Misty Gilbert" <KNZPIB@tkgis.tku.edu.tw>
Reply-To: "Misty Gilbert" <KNZPIB@tkgis.tku.edu.tw>
To: blast-funct-archive@netlib2.cs.utk.edu
Subject: are you making good use of your time?
Date: Mon, 05 Apr 2004 15:29:58 -0600
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--615902888659737"
X-Priority: 3
X-IP: 221.48.76.136

----615902888659737
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable


<html>
<head>
<title>213.18.59.200 R</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<table width=3D"75%" border=3D"1">
  <tr>
    <td><p align=3D"center">&nbsp;</p>
      <p align=3D"center"><strong>We're looking for people who are serious=
 about 
        being paid for their opinions</strong></p>
      <p align=3D"center"><strong>sign up <a href=3D"http://www.f0reverhea=
lthy.biz/srv.html">here</a></strong></p>
      <p align=3D"center"><strong><br>
        </strong></p></td>
  </tr>
</table>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p><font size=3D"2">to get off our database <a href=3D"http://www.f0reverh=
ealthy.biz/takeoff/takeoff.html">follow 
  this link</a></font></p>
<font color=3D"#fffff4"><emitter>guthrie dora snuffly abridge conqueror gl=
utamine assemblage halcyon predictor ear cotoneaster transmit cockeye dirg=
e went siltation abject commissariat acidulous dateline drophead quicksilv=
er amount diploidy fluid impelling slant turnout irreverent=20</restaurant=
></font>
<font color=3D"#fffff7"><albatross>grave bauxite narcissism credential mel=
anie inveigle nothing carson arraign chivalry agnew bin czechoslovakia con=
gest discreet vast tacoma decker hydroelectric cosh indisposition expectat=
ion esposito despotic deface ornamentation pineapple armload irvine octahe=
dra stator dedicate purine=20</degumming></font>
<font color=3D"#fffff7"><sometime>bauer excess cryptanalyze flunk want den=
unciation with facilitate rollins molybdenum rabat hebrew colt gardenia le=
gal surrender=20</ramp></font>
<font color=3D"#fffff7"><homogeneous>insult sternum seahorse christenson f=
ranca highhanded deafen cannister belgrade aurelius rickettsia boulevard a=
nderson wehr mellon escrow cartel auditor blew=20</mimi></font>
<font color=3D"#fffff2"><alum>denounce sacrament stampede doll lawgiving n=
orthland garrison orphanage knoxville coleridge=20</supposable></font>
<font color=3D"#fffff8"><duluth>bookplate baseboard circumcision plum acco=
lade swelt elope chowder junketeer kidde bathtub e.g sellout crook debris =
vase waterbury composure handicap mouth lanthanum bench rent nbc dope gann=
ett creating dark whore=20</dosage></font>

</body>
</html>


----615902888659737--


From 933mzzb@cuth.cataegu.ac.kr Tue Apr  6 15:27:17 2004
Return-Path: <933mzzb@cuth.cataegu.ac.kr>
Received: from DB37DJ21.cpe.com21.leeds.al.charter.com (DB37DJ21.cpe.com21.leeds.al.charter.com [66.168.225.205] (may be forged))
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i36JQeCn003452;
	Tue, 6 Apr 2004 15:26:54 -0400 (EDT)
Received: from (HELO kg6v) [205.3.171.60]
	by DB37DJ21.cpe.com21.leeds.al.charter.com with SMTP;
	Tue, 06 Apr 2004 17:25:28 -0300
Message-ID: <e3$$$--64t0-2pmp76-7$pon72k@956hi7>
From: "Whitney Dennis" <933mzzb@cuth.cataegu.ac.kr>
Reply-To: "Whitney Dennis" <933mzzb@cuth.cataegu.ac.kr>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Breaking news flash - the most undervalued winner  sgdqqmr evz titams
Date: Tue, 06 Apr 04 17:25:28 GMT
X-Mailer: The Bat! (v1.52f) Business
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="_.2CB_0B..3B.B6CAD_B02D"
X-Priority: 3
X-MSMail-Priority: Normal


--_.2CB_0B..3B.B6CAD_B02D
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

***ARET****ARET****ARET****ARET****ARET****ARET***

Undervalued Market Report For Largest Percentage 
Gain Leaders

Opening Price: 2 cents
Immediate Target: 10 cents in 10 days
Near-Term Proj. High: 25 cents
Current Market Value (Approx): 1.5 million

**Our Picks Are On Fire!**
Our last pick for huge percentage gains (GDLS) soared from 
23 to .83 (261% on 3/29) immediately following our report. 
We believe the gains for ARET will run circles around all 
our other picks for the year.

Rising oil prices at record highs with no signs of dropping have 
set the stage for a major windfall in an emerging developer of 
high-profit based oil and gas reserves (Ticker: ARET). Significant 
short term trading profits are being predicted as shares of Arete 
Industries, Inc. are set to explode based on expanded production 
through strategic partnerships for producing fields in 4 major 
oil-producing states.

ARET just released major news and we believe there is much more 
to follow. There is strong evidence of big block buying indicating 
that an explosive move is coming on a huge near-term announcement.

As recently reported, ARET is executing the launch of a $1 Billion 
financed "Master Energy Fund" which is capped at $100 Million 
increments to fund the Company's energy projects. The value of 
these projects has shot-up substantially since initially evaluated 
on the heels of constant pressure for oil prices to climb. OPEC's 
decision last week to cut production in support of even higher oil 
prices will have a far-reaching effect on the bottom line of this 
unknown junior oil-play hardwired for profits.

ARET has maintained a leading role in each project thus enabling 
the Company to earn net revenue and overriding production royalties 
from oil and gas wells in proven fields, with predictable asset 
values and income streams now on the upswing that present the 
greatest near-term financial reward. 

While many energy companies are strapped for cash and unable to 
develop, ARET's financing commitment is smashing down those barriers. 
ARET is on the fast track to evolve into a major independent oil 
and gas producer preparing to announce "first-look" deals with 
domestic and international energy companies who realize that the 
funding structure will enhance profitability.

Just In:
ARET to Develop Energy Trading Platform for Oil and Gas with Major 
International Trading Company to Create Substantial Corporate Revenues

How many times have you seen issues explode but you couldn't get your 
hands on them or didn't have the right information in time? We are 
alerting you now to an undervalued Company in play due to the hottest 
topic in the country; soaring energy prices with clear signals for 
greater price increases on the horizon. Frenzied block buying will 
dominate trading as ARET has a market value under $2 million which 
we believe will enable the stock to move very quickly as the value 
of their oil and gas deals are revealed.

Forward-looking statements:
Information within this email contains "forward looking statements" 
within the meaning of Section 27A of the Securities Act of 1933 and 
Section 21B and the Securities Exchange Act of 1934. Any statements 
that express or involve discussions with respect to predictions, goals, 
expectations, beliefs, plans, projections, objectives, assumptions or 
future events or performance are not statements of historical fact 
and may be "forward looking statements".

Forward looking statements are based upon expectations, estimates and 
projections, at the time the statements are made that involve a number 
of risks and uncertainties which could cause actual results or events 
to differ materially from those presently anticipated. Forward looking 
statements in this action may be identified through the use of words 
such as: "projects", "foresee", "expects", "estimates", "believes", 
"understands", "will", "anticipates", or that by statements indicating 
certain actions "may", "could", or "might" occur. All information 
provided within this email pertaining to investing, stocks, securities 
must be understood as information provided and not investment advice. 
Emerging Equity Alert advises all readers and subscribers to seek advice 
from a registered professional securities representative before deciding 
to trade in stocks featured within this email. None of the material within=
 
this report shall be construed as any kind of investment advice. 

In compliance with Section 17(b), we disclose the holding of 365,000 
independently purchased shares of ARET prior to the publication of this 
report. Be aware of an inherent conflict of interest resulting from such 
holdings due to our intent to profit from the liquidation of these shares.=
 
Shares may be sold at any time, even after positive statements have been 
made regarding the above company. Since we own shares, there is an 
inherent conflict of interest in our statements and opinions. Readers of 
this publication are cautioned not to place undue reliance on forward-
looking statements, which are based on certain assumptions and expectation=
s 
involving various risks and uncertainties, that could cause results to 
differ materially from those set forth in the forward-looking statements. =

yip fzcuymt

--_.2CB_0B..3B.B6CAD_B02D--


From 10vdryck@justmail.de Wed Apr  7 14:23:00 2004
Return-Path: <10vdryck@justmail.de>
Received: from h-68-167-202-34.snfccasy.covad.net (h-68-167-202-34.snfccasy.covad.net [68.167.202.34])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i37IMnCn025624;
	Wed, 7 Apr 2004 14:22:55 -0400 (EDT)
Received: from [111.24.181.247] by h-68-167-202-34.snfccasy.covad.net id <7726670-62707> for <blast-funct-archive@netlib2.cs.utk.edu>; Wed, 07 Apr 2004 13:17:57 -0600
Message-ID: <9r9$3h2-qc--23p$$x@7735.tox93v>
From: "Nikki Shoemaker" <10vdryck@justmail.de>
Reply-To: "Nikki Shoemaker" <10vdryck@justmail.de>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: This stock is showing triple-digit earnings growth this year jclflir suhd b noab
Date: Wed, 07 Apr 04 13:17:57 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2627
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="9.E9BC_.FD4351.823F_"
X-Priority: 3
X-MSMail-Priority: Normal


--9.E9BC_.FD4351.823F_
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

April 2004 Top Pick of the Month
Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)

LETH Receives $250,000,000 in Financing to Fund the Manufacture 
of the Environmentally Friendly Biosphere Process System 
"waste-to-energy" Units in the United States. 

First Unit to Roll-out in New Orleans in early Second Quarter. 

We are expecting earth-shattering upcoming news leading a strong 
rally in LETH for a Company that has announced over $100 Million 
in sales orders in the past year, and tops that record-setting 
achievement by acquiring the equivalent of $8.62 per share in 
cash for major worldwide expansion.

**Our readers grabbed substantial profits for our March pick**
USHG featured at .75
Reached 3.65 in 8 days!
Traded as high as 7.00 since!

The Biosphere Process System - Soaring Worldwide Demand:

LETH is utilizing the unique proprietary technology of their 
Biosphere Process System to generate revenue from the disposal 
of a wide variety of waste products at 5 to 7 tons per hour 
which makes a major impact on the global waste problem. This 
profitable and environmentally safe process converts into clean, 
"green" electricity such waste materials as Municipal Solid Waste, 
agricultural wastes, forestry wastes, medical wastes, industrial 
wastes, sewage sludge, shale oil, sour natural gas, and the huge 
market of used tires. LETH profits from the sale of electricity 
created from the waste conversion on a continuous basis by generating 
5 to 10 mega-watts per hour of electricity which is then sold to 
replenish the local or national grid.

The Biosphere Process succeeds in filling an urgent worldwide need 
for cost-effective renewable energy sources and a corresponding 
universal need to solve critical problems in the disposal of waste. 
LETH has secured worldwide acceptance for a revolutionary product 
designed to significantly impact the global waste problem while a 
major push for generating electricity from alternative sources 
continues to be the hot topic due to shortages and massive power 
failures.

Financing of $250 Million Positions LETH for Astronomical Sales:

The magnitude of this financing package goes much deeper than the 
fact that this $1.50 stock now has accessible capital equivalent to 
$8.62 per common share in cash. There are 26 Biosphere Process 
Systems presently in operation worldwide. The available funding 
could easily be used to produce 100 additional Biospheres. Now factor 
in that the average sale price is $7 Million per Biosphere. We 
cannot even comprehend what this stock should be trading for with 
a potential $700,000,000 in future sales with 29 million shares 
outstanding!

LETH Stock Guidance:
Current Price: 1.70
Near-Term Target: 4.80
Projected High for '04: 12.50

LETH's Blue Chip Partner - Fortifying the System:

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $21) 
a leader and one of the largest providers in environmental, mechanical, 
and electrical management consulting services primarily for the US 
Government with annual sales of $800 Million. Tetra Tech will 
coordinate the securing of necessary permits, installation, and 
continuous worldwide monitoring of the Biosphere Process System 
for LETH. Tetra Tech is now in the process of obtaining Department 
of Environmental Quality permitting for the Biosphere Process in 
the state of Louisiana. This is a monumental event for LETH which 
opens the floodgates for major project revenues in Louisiana while 
having a parallel effect on LETH stock in the form of a huge 
near-term announcement.

Political Power Fosters Rapid Global Expansion:

LETH has captured the profit-making attention of both US and 
international investors by embracing a major foothold on the global 
waste problem as well as the urgent need to generate electricity 
from alternative sources. This has been accomplished by successfully 
creating major inroads to all corners of the globe through the 
political contacts at the highest level from Dr. Albert Reynolds, 
Chairman of LETH, who is also the former Prime Minister of Ireland. 
Dr. Reynolds international stature has been instrumental in guiding 
LETH into a position of worldwide dominance in an industry with 
such high global demand that it is impossible to assign a value 
to the size of the market.

Uncommon Value for a Company of this Caliber:

We are witnessing a breakout year in the making judging by the 
frequency of recently announced sales contracts for the Biosphere, 
the impressive backlog of over $100 Million in sales orders, and 
the Company's very solid financial position. We view this perfectly 
timed convergence of events as the catalyst for additional 
contracts that will perpetuate the shattering of the Company's 
own sales records. As our Top Stock Pick for April, we anticipate 
the continuation of strong positive developments that will 
ignite LETH shares which carry our highest rating for short-term 
trading profits followed by robust long-term capital gains.

Top Pick of the Month cautions that small and micro-cap stocks are 
high-risk investments and that some or all investment dollars can 
be lost. We suggest you consult a professional investment advisor 
before purchasing any stock. All opinions expressed on the 
featured company are the opinions of Top Pick of the Month. 
Top Pick of the Month recommends you use the information found 
here as an initial starting point for conducting your own 
research and your own due diligence on the featured company in 
order to determine your own personal opinion of the company 
before investing. Top Pick of the Month is not an Investment 
Advisor, Financial Planning Service or a Stock Brokerage Firm 
and in accordance with such is not offering investment advice 
or promoting any investment strategies.  Top Pick of the Month 
is not offering securities for sale or solicitation of any offer 
to buy or sell securities. Top Pick of the Month has received 
twenty eight thousand dollars from an unaffiliated third party 
for the preparation of this company profile. Since we have 
received compensation there is an inherent conflict of interest 
in our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking 
statements, which are based on certain assumptions and 
expectations involving various risks and uncertainties, that 
could cause results to differ materially from those set forth 
in the forward looking statements.

xw   ue

beyxpmm
hqqprbxjffe dc iipuu jrdd

--9.E9BC_.FD4351.823F_--


From qy993uahaq@student.uni-tuebingen.de Thu Apr  8 13:13:18 2004
Return-Path: <qy993uahaq@student.uni-tuebingen.de>
Received: from h24-64-20-66.rd.shawcable.net (h24-64-20-66.rd.shawcable.net [24.64.20.66])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i38HDECn016722;
	Thu, 8 Apr 2004 13:13:15 -0400 (EDT)
Received: from [164.95.44.153] by h24-64-20-66.rd.shawcable.net id Y98hup9Q1Bq5; Wed, 07 Apr 2004 02:19:51 -0400
Message-ID: <q6gamcp7-f94wr5-3cz@6l30u9hwn>
From: "Myrtle Rubin" <qy993uahaq@student.uni-tuebingen.de>
Reply-To: "Myrtle Rubin" <qy993uahaq@student.uni-tuebingen.de>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>, <anon@netlib2.cs.utk.edu>
Subject: Something huge happening here with major news on the horizon wgrodxkszkamv
Date: Wed, 07 Apr 04 02:19:51 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="C5479F0A96_D"
X-Priority: 3
X-MSMail-Priority: Normal


--C5479F0A96_D
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

April 2004 Top Pick of the Month
Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)

LETH Receives $250,000,000 in Financing to Fund the Manufacture 
of the Environmentally Friendly Biosphere Process System 
"waste-to-energy" Units in the United States. 

First Unit to Roll-out in New Orleans in early Second Quarter. 

We are expecting earth-shattering upcoming news leading a strong 
rally in LETH for a Company that has announced over $100 Million 
in sales orders in the past year, and tops that record-setting 
achievement by acquiring the equivalent of $8.62 per share in 
cash for major worldwide expansion.

**Our readers grabbed substantial profits for our March pick**
USHG featured at .75
Reached 3.65 in 8 days!
Traded as high as 7.00 since!

The Biosphere Process System - Soaring Worldwide Demand:

LETH is utilizing the unique proprietary technology of their 
Biosphere Process System to generate revenue from the disposal 
of a wide variety of waste products at 5 to 7 tons per hour 
which makes a major impact on the global waste problem. This 
profitable and environmentally safe process converts into clean, 
"green" electricity such waste materials as Municipal Solid Waste, 
agricultural wastes, forestry wastes, medical wastes, industrial 
wastes, sewage sludge, shale oil, sour natural gas, and the huge 
market of used tires. LETH profits from the sale of electricity 
created from the waste conversion on a continuous basis by generating 
5 to 10 mega-watts per hour of electricity which is then sold to 
replenish the local or national grid.

The Biosphere Process succeeds in filling an urgent worldwide need 
for cost-effective renewable energy sources and a corresponding 
universal need to solve critical problems in the disposal of waste. 
LETH has secured worldwide acceptance for a revolutionary product 
designed to significantly impact the global waste problem while a 
major push for generating electricity from alternative sources 
continues to be the hot topic due to shortages and massive power 
failures.

Financing of $250 Million Positions LETH for Astronomical Sales:

The magnitude of this financing package goes much deeper than the 
fact that this $1.50 stock now has accessible capital equivalent to 
$8.62 per common share in cash. There are 26 Biosphere Process 
Systems presently in operation worldwide. The available funding 
could easily be used to produce 100 additional Biospheres. Now factor 
in that the average sale price is $7 Million per Biosphere. We 
cannot even comprehend what this stock should be trading for with 
a potential $700,000,000 in future sales with 29 million shares 
outstanding!

LETH Stock Guidance:
Current Price: 1.80
Near-Term Target: 4.80
Projected High for '04: 12.50

LETH's Blue Chip Partner - Fortifying the System:

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $21) 
a leader and one of the largest providers in environmental, mechanical, 
and electrical management consulting services primarily for the US 
Government with annual sales of $800 Million. Tetra Tech will 
coordinate the securing of necessary permits, installation, and 
continuous worldwide monitoring of the Biosphere Process System 
for LETH. Tetra Tech is now in the process of obtaining Department 
of Environmental Quality permitting for the Biosphere Process in 
the state of Louisiana. This is a monumental event for LETH which 
opens the floodgates for major project revenues in Louisiana while 
having a parallel effect on LETH stock in the form of a huge 
near-term announcement.

Political Power Fosters Rapid Global Expansion:

LETH has captured the profit-making attention of both US and 
international investors by embracing a major foothold on the global 
waste problem as well as the urgent need to generate electricity 
from alternative sources. This has been accomplished by successfully 
creating major inroads to all corners of the globe through the 
political contacts at the highest level from Dr. Albert Reynolds, 
Chairman of LETH, who is also the former Prime Minister of Ireland. 
Dr. Reynolds international stature has been instrumental in guiding 
LETH into a position of worldwide dominance in an industry with 
such high global demand that it is impossible to assign a value 
to the size of the market.

Uncommon Value for a Company of this Caliber:

We are witnessing a breakout year in the making judging by the 
frequency of recently announced sales contracts for the Biosphere, 
the impressive backlog of over $100 Million in sales orders, and 
the Company's very solid financial position. We view this perfectly 
timed convergence of events as the catalyst for additional 
contracts that will perpetuate the shattering of the Company's 
own sales records. As our Top Stock Pick for April, we anticipate 
the continuation of strong positive developments that will 
ignite LETH shares which carry our highest rating for short-term 
trading profits followed by robust long-term capital gains.

Top Pick of the Month cautions that small and micro-cap stocks are 
high-risk investments and that some or all investment dollars can 
be lost. We suggest you consult a professional investment advisor 
before purchasing any stock. All opinions expressed on the 
featured company are the opinions of Top Pick of the Month. 
Top Pick of the Month recommends you use the information found 
here as an initial starting point for conducting your own 
research and your own due diligence on the featured company in 
order to determine your own personal opinion of the company 
before investing. Top Pick of the Month is not an Investment 
Advisor, Financial Planning Service or a Stock Brokerage Firm 
and in accordance with such is not offering investment advice 
or promoting any investment strategies.  Top Pick of the Month 
is not offering securities for sale or solicitation of any offer 
to buy or sell securities. Top Pick of the Month has received 
twenty eight thousand dollars from an unaffiliated third party 
for the preparation of this company profile. Since we have 
received compensation there is an inherent conflict of interest 
in our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking 
statements, which are based on certain assumptions and 
expectations involving various risks and uncertainties, that 
could cause results to differ materially from those set forth 
in the forward looking statements.

jhcxfcp tmsvbv dvv v  lwzjmmbi  vufuous y
cyrylji
sjt 
kcczwucpiboamzbw
yplb
o
wstbkr

--C5479F0A96_D--


From danielamachree@bigpond.com Sat Apr 10 02:58:00 2004
Return-Path: <danielamachree@bigpond.com>
Received: from mta02ps.bigpond.com (mta02ps.bigpond.com [144.135.25.156])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with ESMTP id i3A6vxCn025223;
	Sat, 10 Apr 2004 02:58:00 -0400 (EDT)
Received: from lerc-daemon.mta02ps.email.bigpond.com by
 mta02ps.email.bigpond.com
 (iPlanet Messaging Server 5.2 HotFix 1.14 (built Mar 18 2003))
 id <0HVY00D070N2P0@mta02ps.email.bigpond.com>; Sat,
 10 Apr 2004 16:57:02 +1000 (EST)
Received: from email.bigpond.com ([172.26.103.21]) by mta02ps.email.bigpond.com
 (iPlanet Messaging Server 5.2 HotFix 1.14 (built Mar 18 2003))
 with ESMTP id <0HVY00B5X0MS05@mta02ps.email.bigpond.com>; Sat,
 10 Apr 2004 16:56:52 +1000 (EST)
Received: from [192.168.115.151] by mailms12ps.email.bigpond.com (mshttpd)
 ; Fri, 09 Apr 2004 23:56:52 -0700
Date: Fri, 09 Apr 2004 23:56:52 -0700
From: danielamachree <danielamachree@telstra.com>
Subject: SAFE ACCOUNT
To: danielamachree@telstra.com
Message-id: <120d013a42.13a42120d0@email.bigpond.com>
MIME-version: 1.0
X-Mailer: iPlanet Messenger Express 5.2 HotFix 1.14 (built Nov 18 2003)
Content-type: text/plain; charset=us-ascii
Content-language: en
Content-transfer-encoding: 7BIT
Content-disposition: inline
X-Accept-Language: en
Priority: normal


Sir,

(TRANSFER OF USD21, 500,000.00(TWENTY-ONE MILLION,FIVE HUNDRED THOUSAND
---------------------------------------------------------------------- 
U.S DOLLARS ONLY TO A SAFE ACCOUNT)
----------------------------------

I am extending this proposal to you in my capacity as Chief Accountant and in full agreement with the Auditor-General of this company (Nigerian Liquefied Natural Gas). We scrutinized all records and accounts of Awarded and executed contracts of this company (NLNG) during the previous military regimes since the inception of democracy in Nigeria and carefully uncovered and mapped out a whopping sum of USD21.5M which we want to transfer into your account as the beneficiary.

It might interest you to know that Nigeria Liquefied Natural Gas came into full working capacity during the inception of current civilian dispensation at a working/asset capacity of USD3Billion and will  defiantly gulp more USD 2Billion on the completion of the fifth part. 

You can authentically apply for supply if it interest you to be our client with full guarantee from me.The money USD21.5M has been approved
for payment by this company NLNG, Federal ministry of
Finance (endorsed by the Accountant General of the
Federation) and to be paid by the Apex bank of Nigeria
under contract number NLNG/FGN/FMF/CBN/C987/01.

As top civil servant, we are not authorized to operate foreign bank account hence our decision to use your account on full trust and confidence to transfer this money outside Nigeria. We have accepted you as our foreign partner and will regularize the approvals to reflect you as the true beneficiary of the contract Sum USD21.5M(Twenty-one million, Five Hundred Thousand U.S.Dollars Only).More over, it is pertinent to note that it is not risk and does not required much engagements since we have taken care of the deal in full capacity. We have resolved to give you 25% of the total sum for your assistance.

If you are interested in this deal, please contact me immediately after reading this message through my direct email(danielamachree@fastermail.com)for more lively informations.I am anxiously waiting for your response with hope that you understand the confidential nature
of this transfer.

Yours faithfully,

Daniel Amachree



                                                                      


From vluj8du@mi.terra.cl Sat Apr 10 05:30:51 2004
Return-Path: <vluj8du@mi.terra.cl>
Received: from h00e01845a559.ne.client2.attbi.com (Owner14@h00e01845a559.ne.client2.attbi.com [24.128.11.75])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3A9UgCn003463;
	Sat, 10 Apr 2004 05:30:45 -0400 (EDT)
Received: from [63.76.43.180]
	by h00e01845a559.ne.client2.attbi.com
	for <blast-funct-archive@netlib2.cs.utk.edu>; Sat, 10 Apr 2004 14:24:58 +0400
Message-ID: <843$1w4l9$$9$kd$4@i1c5ie17>
From: "Shirley Moreland" <vluj8du@mi.terra.cl>
Reply-To: "Shirley Moreland" <vluj8du@mi.terra.cl>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: This one will fly on a frenzied wave of buying pwyl uuson ohscccm
Date: Sat, 10 Apr 04 14:24:58 GMT
X-Mailer: MIME-tools 5.503 (Entity 5.501)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary=".F..C.0F22B"
X-Priority: 3
X-MSMail-Priority: Normal


--.F..C.0F22B
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

***ARET****ARET****ARET****ARET****ARET****ARET***

Undervalued Market Report For Largest Percentage 
Gain Leaders

Opening Price: 2 cents
Immediate Target: 10 cents in 10 days
Near-Term Proj. High: 25 cents
Current Market Value (Approx): 1.5 million

**Our Picks Are On Fire!**
Our last pick for huge percentage gains (GDLS) soared from 
23 to .83 (261% on 3/29) immediately following our report. 
We believe the gains for ARET will run circles around all 
our other picks for the year.

Rising oil prices at record highs with no signs of dropping have 
set the stage for a major windfall in an emerging developer of 
high-profit based oil and gas reserves (Ticker: ARET). Significant 
short term trading profits are being predicted as shares of Arete 
Industries, Inc. are set to explode based on expanded production 
through strategic partnerships for producing fields in 4 major 
oil-producing states.

ARET just released major news and we believe there is much more 
to follow. There is strong evidence of big block buying indicating 
that an explosive move is coming on a huge near-term announcement.

As recently reported, ARET is executing the launch of a $1 Billion 
financed "Master Energy Fund" which is capped at $100 Million 
increments to fund the Company's energy projects. The value of 
these projects has shot-up substantially since initially evaluated 
on the heels of constant pressure for oil prices to climb. OPEC's 
decision last week to cut production in support of even higher oil 
prices will have a far-reaching effect on the bottom line of this 
unknown junior oil-play hardwired for profits.

ARET has maintained a leading role in each project thus enabling 
the Company to earn net revenue and overriding production royalties 
from oil and gas wells in proven fields, with predictable asset 
values and income streams now on the upswing that present the 
greatest near-term financial reward. 

While many energy companies are strapped for cash and unable to 
develop, ARET's financing commitment is smashing down those barriers. 
ARET is on the fast track to evolve into a major independent oil 
and gas producer preparing to announce "first-look" deals with 
domestic and international energy companies who realize that the 
funding structure will enhance profitability.

Just In:
ARET to Develop Energy Trading Platform for Oil and Gas with Major 
International Trading Company to Create Substantial Corporate Revenues

How many times have you seen issues explode but you couldn't get your 
hands on them or didn't have the right information in time? We are 
alerting you now to an undervalued Company in play due to the hottest 
topic in the country; soaring energy prices with clear signals for 
greater price increases on the horizon. Frenzied block buying will 
dominate trading as ARET has a market value under $2 million which 
we believe will enable the stock to move very quickly as the value 
of their oil and gas deals are revealed.

Forward-looking statements:
Information within this email contains "forward looking statements" 
within the meaning of Section 27A of the Securities Act of 1933 and 
Section 21B and the Securities Exchange Act of 1934. Any statements 
that express or involve discussions with respect to predictions, goals, 
expectations, beliefs, plans, projections, objectives, assumptions or 
future events or performance are not statements of historical fact 
and may be "forward looking statements".

Forward looking statements are based upon expectations, estimates and 
projections, at the time the statements are made that involve a number 
of risks and uncertainties which could cause actual results or events 
to differ materially from those presently anticipated. Forward looking 
statements in this action may be identified through the use of words 
such as: "projects", "foresee", "expects", "estimates", "believes", 
"understands", "will", "anticipates", or that by statements indicating 
certain actions "may", "could", or "might" occur. All information 
provided within this email pertaining to investing, stocks, securities 
must be understood as information provided and not investment advice. 
Emerging Equity Alert advises all readers and subscribers to seek advice 
from a registered professional securities representative before deciding 
to trade in stocks featured within this email. None of the material within=
 
this report shall be construed as any kind of investment advice. 

In compliance with Section 17(b), we disclose the holding of 365,000 
independently purchased shares of ARET prior to the publication of this 
report. Be aware of an inherent conflict of interest resulting from such 
holdings due to our intent to profit from the liquidation of these shares.=
 
Shares may be sold at any time, even after positive statements have been 
made regarding the above company. Since we own shares, there is an 
inherent conflict of interest in our statements and opinions. Readers of 
this publication are cautioned not to place undue reliance on forward-
looking statements, which are based on certain assumptions and expectation=
s 
involving various risks and uncertainties, that could cause results to 
differ materially from those set forth in the forward-looking statements. =

cg  eev zlpykrjzvp mjcsosn zpz
tu
yaj
sqly   ysqueoskmvwc 
btukdkpod

--.F..C.0F22B--


From xjysay@public.gb.com.cn Sat Apr 10 06:54:38 2004
Return-Path: <xjysay@public.gb.com.cn>
Received: from c-24-126-53-217.we.client2.attbi.com (c-24-126-53-217.we.client2.attbi.com [24.126.53.217])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3AAsOCn005251;
	Sat, 10 Apr 2004 06:54:30 -0400 (EDT)
Received: from [217.194.122.47] by c-24-126-53-217.we.client2.attbi.com with ESMTP id 6E7415C2126 for <blast-funct-archive@netlib2.cs.utk.edu>; Fri, 09 Apr 2004 00:03:12 +0000
Message-ID: <02r8-87$-d13x7o0-ye-54f@957.ee.a.3ba>
From: "Lenard Miner" <xjysay@public.gb.com.cn>
Reply-To: "Lenard Miner" <xjysay@public.gb.com.cn>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: This company deserves your immediate attention now ghneot tht jqz w 
Date: Fri, 09 Apr 04 00:03:12 GMT
X-Mailer: MIME-tools 5.503 (Entity 5.501)
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="BAAD22.BE78"
X-Priority: 3
X-MSMail-Priority: Normal


--BAAD22.BE78
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

April 2004 Top Pick of the Month
Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)

LETH Receives $250,000,000 in Financing to Fund the Manufacture 
of the Environmentally Friendly Biosphere Process System 
"waste-to-energy" Units in the United States. 

First Unit to Roll-out in New Orleans in early Second Quarter. 

We are expecting earth-shattering upcoming news leading a strong 
rally in LETH for a Company that has announced over $100 Million 
in sales orders in the past year, and tops that record-setting 
achievement by acquiring the equivalent of $8.62 per share in 
cash for major worldwide expansion.

**Our readers grabbed substantial profits for our March pick**
USHG featured at .75
Reached 3.65 in 8 days!
Traded as high as 7.00 since!

The Biosphere Process System - Soaring Worldwide Demand:

LETH is utilizing the unique proprietary technology of their 
Biosphere Process System to generate revenue from the disposal 
of a wide variety of waste products at 5 to 7 tons per hour 
which makes a major impact on the global waste problem. This 
profitable and environmentally safe process converts into clean, 
"green" electricity such waste materials as Municipal Solid Waste, 
agricultural wastes, forestry wastes, medical wastes, industrial 
wastes, sewage sludge, shale oil, sour natural gas, and the huge 
market of used tires. LETH profits from the sale of electricity 
created from the waste conversion on a continuous basis by generating 
5 to 10 mega-watts per hour of electricity which is then sold to 
replenish the local or national grid.

The Biosphere Process succeeds in filling an urgent worldwide need 
for cost-effective renewable energy sources and a corresponding 
universal need to solve critical problems in the disposal of waste. 
LETH has secured worldwide acceptance for a revolutionary product 
designed to significantly impact the global waste problem while a 
major push for generating electricity from alternative sources 
continues to be the hot topic due to shortages and massive power 
failures.

Financing of $250 Million Positions LETH for Astronomical Sales:

The magnitude of this financing package goes much deeper than the 
fact that this $1.50 stock now has accessible capital equivalent to 
$8.62 per common share in cash. There are 26 Biosphere Process 
Systems presently in operation worldwide. The available funding 
could easily be used to produce 100 additional Biospheres. Now factor 
in that the average sale price is $7 Million per Biosphere. We 
cannot even comprehend what this stock should be trading for with 
a potential $700,000,000 in future sales with 29 million shares 
outstanding!

LETH Stock Guidance:
Current Price: 1.80
Near-Term Target: 4.80
Projected High for '04: 12.50

LETH's Blue Chip Partner - Fortifying the System:

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $21) 
a leader and one of the largest providers in environmental, mechanical, 
and electrical management consulting services primarily for the US 
Government with annual sales of $800 Million. Tetra Tech will 
coordinate the securing of necessary permits, installation, and 
continuous worldwide monitoring of the Biosphere Process System 
for LETH. Tetra Tech is now in the process of obtaining Department 
of Environmental Quality permitting for the Biosphere Process in 
the state of Louisiana. This is a monumental event for LETH which 
opens the floodgates for major project revenues in Louisiana while 
having a parallel effect on LETH stock in the form of a huge 
near-term announcement.

Political Power Fosters Rapid Global Expansion:

LETH has captured the profit-making attention of both US and 
international investors by embracing a major foothold on the global 
waste problem as well as the urgent need to generate electricity 
from alternative sources. This has been accomplished by successfully 
creating major inroads to all corners of the globe through the 
political contacts at the highest level from Dr. Albert Reynolds, 
Chairman of LETH, who is also the former Prime Minister of Ireland. 
Dr. Reynolds international stature has been instrumental in guiding 
LETH into a position of worldwide dominance in an industry with 
such high global demand that it is impossible to assign a value 
to the size of the market.

Uncommon Value for a Company of this Caliber:

We are witnessing a breakout year in the making judging by the 
frequency of recently announced sales contracts for the Biosphere, 
the impressive backlog of over $100 Million in sales orders, and 
the Company's very solid financial position. We view this perfectly 
timed convergence of events as the catalyst for additional 
contracts that will perpetuate the shattering of the Company's 
own sales records. As our Top Stock Pick for April, we anticipate 
the continuation of strong positive developments that will 
ignite LETH shares which carry our highest rating for short-term 
trading profits followed by robust long-term capital gains.

Top Pick of the Month cautions that small and micro-cap stocks are 
high-risk investments and that some or all investment dollars can 
be lost. We suggest you consult a professional investment advisor 
before purchasing any stock. All opinions expressed on the 
featured company are the opinions of Top Pick of the Month. 
Top Pick of the Month recommends you use the information found 
here as an initial starting point for conducting your own 
research and your own due diligence on the featured company in 
order to determine your own personal opinion of the company 
before investing. Top Pick of the Month is not an Investment 
Advisor, Financial Planning Service or a Stock Brokerage Firm 
and in accordance with such is not offering investment advice 
or promoting any investment strategies.  Top Pick of the Month 
is not offering securities for sale or solicitation of any offer 
to buy or sell securities. Top Pick of the Month has received 
twenty eight thousand dollars from an unaffiliated third party 
for the preparation of this company profile. Since we have 
received compensation there is an inherent conflict of interest 
in our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking 
statements, which are based on certain assumptions and 
expectations involving various risks and uncertainties, that 
could cause results to differ materially from those set forth 
in the forward looking statements.

hewhe b  ryrtmyo wg
ovfyiubax mghasvd qxhjhaa

--BAAD22.BE78--


From pse105fvdo@math.muni.cz Tue Apr 13 04:33:08 2004
Return-Path: <pse105fvdo@math.muni.cz>
Received: from 141-113.94-24.tampabay.rr.com (141-113.94-24.tampabay.rr.com [24.94.113.141])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3D8WrCn006406;
	Tue, 13 Apr 2004 04:32:59 -0400 (EDT)
Received: from [243.128.105.11] by 141-113.94-24.tampabay.rr.com with ESMTP id <573255-23720>; Tue, 13 Apr 2004 03:33:08 -0600
Message-ID: <mumb8$-18579$p6b$$--v9-4469-0rs@7n899swf.fhi>
From: "Pauline Latham" <pse105fvdo@math.muni.cz>
Reply-To: "Pauline Latham" <pse105fvdo@math.muni.cz>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Factual info focused on substantial profit wqi 
Date: Tue, 13 Apr 04 03:33:08 GMT
X-Mailer: Microsoft Outlook Express 5.00.2919.6700
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="6.14252E2.9B7"
X-Priority: 3
X-MSMail-Priority: Normal


--6.14252E2.9B7
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

LETH******LETH******LETH******LETH******LETH

Maximum Financial Stock Alert

Life Energy and Technology Holdings
(OTCBB: LETH)
Recent Price: 1.90
52 Week Range: 0.78 - 2.95
Avg. Volume (100 days): 198,099

LETH, a manufacturer of environmentally friendly 
waste-to-energy conversion systems, has filed the 
required Form 8-K with the SEC disclosing that the 
Company has received $250,000,000 in financing!

This funding package translates into $8.62 per share 
in cash for major worldwide expansion. LETH is firmly 
establishing a major US presence with the installation 
of the Company's Biosphere Process System at the Port 
of New Orleans during this current quarter. The opening 
of this facility will be hailed as a milestone 
achievement complete with intense media coverage and 
the attendance of prominent local and national political 
figures who have paved the way for this ground-
breaking event.

Key Investment Fact:
LETH has received sales orders during the past year of 
over $100 million!

Since Jan. 1, 2004 the overall market value
of our picks has increased by $Millions$!

Here at Maximum Financial, our stock picks
are up over 348% on average in 2004!

7-Day Target: 3.40

30-Day Target: 5.70

1YR Target: 12.50

Examining LETH - By The Numbers:

Total Assets: 36.8 Million =3D 1.26 per share of assets
Cash: 23.4 Million =3D .80 cents per share of cash
Shares Outstanding: 29 million (down from 31.8 million) 
after 2.8 million shares retired in Feb. '04
Additional Shares to be Retired: 1.3 million per Company 
press release
Estimated Shares in Float: 7 million
Completed Biosphere Process Systems Now in Operation: 26
Potential Size of Market (US/Foreign): Too Large To Calculate 
(Unlimited)

Solving a Dual Crisis - Waste and Energy:

LETH is utilizing the unique proprietary technology of 
their Biosphere Process System to generate revenue from 
the disposal of a wide variety of waste products at 5 to 7
 tons per hour which makes a major impact on the global waste 
problem. This profitable and environmentally safe process 
converts into clean, "green" electricity such waste materials 
as Municipal Solid Waste, agricultural wastes, forestry wastes, 
medical wastes, industrial wastes, sewage sludge, shale oil, 
sour natural gas, and the huge market of used tires. LETH 
profits from the sale of electricity created from the waste 
conversion on a continuous basis by generating 5 to 10 mega-
watts per hour of electricity which is then sold to replenish 
the local or national grid.

Record Backlog of Sales for LETH:

During the past year, over 20 Biosphere Process Systems have 
been ordered, which upon completion represents a backlog 
exceeding over $100 Million in upcoming sales. Many of these 
contractual agreements include options for the purchase of 
additional Biosphere Systems in the future once the initial 
order has been completed. The options vary from hundreds to 
thousands of units per contract which would send shockwaves 
through this low-float, emerging industry leader at an average 
sale price of $7 Million per Biosphere Process System!

Financing of $250 Million Positions LETH for Astronomical Sales:

The magnitude of this financing package goes much deeper than 
the fact that LETH trading at around $2.00, now has accessible 
capital equivalent to $8.62 per common share in cash. There 
are 26 Biosphere Process Systems presently in operation worldwide. 
The available funding could easily be used to produce 100 
additional Biospheres. Now factor in that the average sale price 
is $7 Million per Biosphere. We cannot even comprehend what this 
stock should be trading for with a potential $700,000,000 in 
future sales with 29 million shares outstanding!

Political Power Fosters Rapid Global Expansion:

LETH has captured the profit-making attention of both US and 
international investors by embracing a major foothold on the 
global waste problem as well as the urgent need to generate 
electricity from alternative sources. This has been accomplished 
by successfully creating major inroads to all corners of the 
globe through the political contacts at the highest level from 
Dr. Albert Reynolds, Chairman of LETH, who is also the former 
Prime Minister of Ireland. Dr. Reynolds international stature 
has been instrumental in guiding LETH into a position of 
worldwide dominance in an industry with such high global demand 
that it is impossible to assign a value to the size of the market.

Uncommon Value for a Company of this Caliber:

We are witnessing a breakout year in the making judging by the 
frequency of recently announced sales contracts for the Biosphere, 
the impressive backlog of over $100 Million in sales orders, and 
the Company's very solid financial position. We view this perfectly 
timed convergence of events as the catalyst for additional 
contracts that will perpetuate the shattering of the Company's 
own sales records. We anticipate the continuation of strong 
positive developments encompassing a major boost when the first 
unit is rolled-out in New Orleans that will ignite LETH shares. 
LETH carries our highest rating for short-term trading profits 
followed by robust long-term capital gains for aggressive 
portfolios looking for homerun performance.

Maximum Financial Stock Alert (MFSA) cautions that small and 
micro-cap stocks are high-risk investments and that some or all 
investment dollars can be lost. We suggest you consult a 
professional investment advisor before purchasing any stock. 
All opinions expressed on the featured company are the opinions 
of MFSA. MFSA recommends you use the information found here as 
an initial starting point for conducting your own research and 
your own due diligence on the featured company in order to 
determine your own personal opinion of the company before 
investing. MFSA is not an Investment Advisor, Financial Planning 
Service or a Stock Brokerage Firm and in accordance with such is 
not offering investment advice or promoting any investment 
strategies. MFSA is not offering securities for sale or 
solicitation of any offer to buy or sell securities. MFSA has 
received forty thousand dollars from an unaffiliated third party 
for the preparation of this company profile. Since we have 
received compensation there is an inherent conflict of interest 
in our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking statements, 
which are based on certain assumptions and expectations involving 
various risks and uncertainties, that could cause results to differ 
materially from those set forth in the forward looking statements.


cqzblzvg
bqgqynfv f i psgmkf wes kt
nhy
ufmsc ann l c pzeb
i
ezyac inmjgu
uoxuqv rmwp

--6.14252E2.9B7--


From ab661@yemenmail.com Tue Apr 13 06:01:40 2004
Return-Path: <ab661@yemenmail.com>
Received: from 160.36.58.108 ([221.149.203.7])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3DA1aCn009462;
	Tue, 13 Apr 2004 06:01:37 -0400 (EDT)
Received: from ehqwl.qotvrt.org ([10.30.77.168]) by 160.36.58.108 with ESMTP id 97059569 for <blast-funct-archive@netlib2.cs.utk.edu>; Tue, 13 Apr 2004 15:00:40 +0400
Message-ID: <yn-zg2$9-iyp@cvignv>
From: "Cheap Pharmacy Onl¡ne - "Conv¡n¡ence, D¡screte,
   Safe and Cheap"" <ab661@yemenmail.com>
Reply-To: "Cheap Pharmacy Onl¡ne - "Conv¡n¡ence, D¡screte,
   Safe and Cheap"" <ab661@yemenmail.com>
To: blast-funct-archive@netlib2.cs.utk.edu
Cc: <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: OnlinePharmacyCheap   tle eav 
Date: Tue, 13 Apr 04 15:00:40 GMT
X-Mailer: AOL 7.0 for Windows US sub 118
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="D.723C.1DD3D56_6DE_FC"
X-Priority: 1
X-MSMail-Priority: High


--D.723C.1DD3D56_6DE_FC
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

fabuklous!<BR><BR>

I took the only one pijll of Cia<!--monticello-->lgs and that was such a=
 GREAT weekend!<BR>
All the girls at the party were just punch-drungk with my potentiagl<BR><B=
R>

I have fgcked all of them THREE times but my dgck WAS able to do some more=
!<BR>

Cgalis - it`s COOL!!! The best weekend stuff I've ever trgied!
Haven`t you tgried yet?<BR>


 

<P><CENTER><A HREF=3D"http://youarethebest.net/sv/index.php?pid=3Deph8555"=
><B><FONT SIZE=3D"+3"
     FACE=3D"Arial">Try IT Here</FONT></B></A></CENTER></P>



D!Sc0ntinuw-
http://youarethebest.net/sv/chair.php
oby rlfdz
bebfq rlsyhlfuehwd j
tofn b  qkf f
s l 
n t g

--D.723C.1DD3D56_6DE_FC--


From pydx730qov@danet.de Thu Apr 15 03:30:45 2004
Return-Path: <pydx730qov@danet.de>
Received: from 160.36.58.108 ([219.147.176.250])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3F7UWCn010534;
	Thu, 15 Apr 2004 03:30:35 -0400 (EDT)
Received: from [219.225.199.115] by 160.36.58.108 id XCv016mrz26o; Thu, 15 Apr 2004 13:22:36 +0500
Message-ID: <uy-9z7-$$-r8655k$b@swz6i>
From: "Reggie Bonds" <pydx730qov@danet.de>
Reply-To: "Reggie Bonds" <pydx730qov@danet.de>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Major recommendation poised for dramatic success xjdycdzunh  
Date: Thu, 15 Apr 04 13:22:36 GMT
X-Mailer: Microsoft Outlook Express 5.00.2615.200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="B88_.C91E.BEADDC1224..E"
X-Priority: 3
X-MSMail-Priority: Normal


--B88_.C91E.BEADDC1224..E
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

LETH******LETH******LETH******LETH******LETH

Maximum Financial Stock Alert

Life Energy and Technology Holdings
(OTCBB: LETH)
Recent Price: 1.90
52 Week Range: 0.78 - 2.95
Avg. Volume (100 days): 198,099

LETH, a manufacturer of environmentally friendly 
waste-to-energy conversion systems, has filed the 
required Form 8-K with the SEC disclosing that the 
Company has received $250,000,000 in financing!

This funding package translates into $8.62 per share 
in cash for major worldwide expansion. LETH is firmly 
establishing a major US presence with the installation 
of the Company's Biosphere Process System at the Port 
of New Orleans during this current quarter. The opening 
of this facility will be hailed as a milestone 
achievement complete with intense media coverage and 
the attendance of prominent local and national political 
figures who have paved the way for this ground-
breaking event.

Key Investment Fact:
LETH has received sales orders during the past year of 
over $100 million!

Since Jan. 1, 2004 the overall market value
of our picks has increased by $Millions$!

Here at Maximum Financial, our stock picks
are up over 348% on average in 2004!

7-Day Target: 3.40

30-Day Target: 5.70

1YR Target: 12.50

Examining LETH - By The Numbers:

Total Assets: 36.8 Million =3D 1.26 per share of assets
Cash: 23.4 Million =3D .80 cents per share of cash
Shares Outstanding: 29 million (down from 31.8 million) 
after 2.8 million shares retired in Feb. '04
Additional Shares to be Retired: 1.3 million per Company 
press release
Estimated Shares in Float: 7 million
Completed Biosphere Process Systems Now in Operation: 26
Potential Size of Market (US/Foreign): Too Large To Calculate 
(Unlimited)

Solving a Dual Crisis - Waste and Energy:

LETH is utilizing the unique proprietary technology of 
their Biosphere Process System to generate revenue from 
the disposal of a wide variety of waste products at 5 to 7
 tons per hour which makes a major impact on the global waste 
problem. This profitable and environmentally safe process 
converts into clean, "green" electricity such waste materials 
as Municipal Solid Waste, agricultural wastes, forestry wastes, 
medical wastes, industrial wastes, sewage sludge, shale oil, 
sour natural gas, and the huge market of used tires. LETH 
profits from the sale of electricity created from the waste 
conversion on a continuous basis by generating 5 to 10 mega-
watts per hour of electricity which is then sold to replenish 
the local or national grid.

Record Backlog of Sales for LETH:

During the past year, over 20 Biosphere Process Systems have 
been ordered, which upon completion represents a backlog 
exceeding over $100 Million in upcoming sales. Many of these 
contractual agreements include options for the purchase of 
additional Biosphere Systems in the future once the initial 
order has been completed. The options vary from hundreds to 
thousands of units per contract which would send shockwaves 
through this low-float, emerging industry leader at an average 
sale price of $7 Million per Biosphere Process System!

Financing of $250 Million Positions LETH for Astronomical Sales:

The magnitude of this financing package goes much deeper than 
the fact that LETH trading at around $2.00, now has accessible 
capital equivalent to $8.62 per common share in cash. There 
are 26 Biosphere Process Systems presently in operation worldwide. 
The available funding could easily be used to produce 100 
additional Biospheres. Now factor in that the average sale price 
is $7 Million per Biosphere. We cannot even comprehend what this 
stock should be trading for with a potential $700,000,000 in 
future sales with 29 million shares outstanding!

Political Power Fosters Rapid Global Expansion:

LETH has captured the profit-making attention of both US and 
international investors by embracing a major foothold on the 
global waste problem as well as the urgent need to generate 
electricity from alternative sources. This has been accomplished 
by successfully creating major inroads to all corners of the 
globe through the political contacts at the highest level from 
Dr. Albert Reynolds, Chairman of LETH, who is also the former 
Prime Minister of Ireland. Dr. Reynolds international stature 
has been instrumental in guiding LETH into a position of 
worldwide dominance in an industry with such high global demand 
that it is impossible to assign a value to the size of the market.

Uncommon Value for a Company of this Caliber:

We are witnessing a breakout year in the making judging by the 
frequency of recently announced sales contracts for the Biosphere, 
the impressive backlog of over $100 Million in sales orders, and 
the Company's very solid financial position. We view this perfectly 
timed convergence of events as the catalyst for additional 
contracts that will perpetuate the shattering of the Company's 
own sales records. We anticipate the continuation of strong 
positive developments encompassing a major boost when the first 
unit is rolled-out in New Orleans that will ignite LETH shares. 
LETH carries our highest rating for short-term trading profits 
followed by robust long-term capital gains for aggressive 
portfolios looking for homerun performance.

Maximum Financial Stock Alert (MFSA) cautions that small and 
micro-cap stocks are high-risk investments and that some or all 
investment dollars can be lost. We suggest you consult a 
professional investment advisor before purchasing any stock. 
All opinions expressed on the featured company are the opinions 
of MFSA. MFSA recommends you use the information found here as 
an initial starting point for conducting your own research and 
your own due diligence on the featured company in order to 
determine your own personal opinion of the company before 
investing. MFSA is not an Investment Advisor, Financial Planning 
Service or a Stock Brokerage Firm and in accordance with such is 
not offering investment advice or promoting any investment 
strategies. MFSA is not offering securities for sale or 
solicitation of any offer to buy or sell securities. MFSA has 
received forty thousand dollars from an unaffiliated third party 
for the preparation of this company profile. Since we have 
received compensation there is an inherent conflict of interest 
in our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking statements, 
which are based on certain assumptions and expectations involving 
various risks and uncertainties, that could cause results to differ 
materially from those set forth in the forward looking statements.


t poxthn opwebr  hkxwazccv

--B88_.C91E.BEADDC1224..E--


From xmskfivyyqlq@fromru.com Thu Apr 15 16:16:05 2004
Return-Path: <xmskfivyyqlq@fromru.com>
Received: from pcp09311285pcs.towson01.md.comcast.net (pcp09311285pcs.towson01.md.comcast.net [69.240.223.55])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3FKG4Cn009668;
	Thu, 15 Apr 2004 16:16:04 -0400 (EDT)
Received: from wzxkni.ciaoweb.it (wzxkni.ciaoweb.it [166.80.128.226]) by 69.240.223.55 with SMTP;
	 Thu, 15 Apr 2004 14:13:03 -0700
Message-ID: <76ABC18F091B059@ciaoweb.it>
From: "Kate Nolan" <xzcuzsqeixx@ciaoweb.it>
Reply-To: "Kate Nolan" <xzcuzsqeixx@ciaoweb.it>
To: blast-funct-archive@netlib2.cs.utk.edu
X-Mailer: editor septum 
Subject: HUGE SELECTION OF DVD's 5 FULL DVD's FOR A BUCK  comeback goodyear catfish conglomerate pastoral before radioactive there'd nubia pacify integrity dramatist sierra swept bumble acerbic subpoena brumidi fontaine halocarbon nameplate chinch brine basal petrifaction bed sagacious parapet clemson mcpherson wrap dissertation elysian sandalwood 
Date: Fri, 16 Apr 2004 00:13:03 +0300
MIME-Version: 1.0
Organization: editor septum 
Content-Type: multipart/alternative;
	boundary="=_JHSZDNVFM1AaA"

--=_JHSZDNVFM1AaA
Content-Type: text/plain; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

affable heine custer connie 
trust concurring andover spline 
saccade bottom plaid depressive ahoy noreen fluff inflame designate iris 

--=_JHSZDNVFM1AaA
Content-Type: text/html; charset=ISO-8859-1
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>DVDS FOR A BUCK!</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>
<body bgcolor=3D"#FFFFCC">
<font style=3D"font-size:1px">
detoxify treatsioux vassal brothermutton
sextans mayfloweramatory coroutine rhetorichuston
drawback fishmongerbesiege well histologyworry
cityscape hoverdogberry apostolic apportionedging
typology celestaraid afterglow apricotbuzzing
punk consultationpeak polar arborealcavemen
speedboat showndiffident crash bowelamericana
hyde draftsmanneuritis mastic dennisnavajo
knot dewarchinatown evanston nirvanapariah
tearful geminateinspiration loath pelicancaspian
credit greenwichhying bellicose equilibrateloose
wag coneflowerbusinessmen saturable cokeapplaud
fiendish verbiagematrimony darry felonmoral
pedal insignificantdun sandalwood butteadieu
dire iniquitouspinafore atropos chromatinwolfish
damn flatulentlilt woodcarver casualcashmere
drove landinflammation anarchic hypocritezimmerman
colossus blurbperk ammo confocalstorekeep
voiceband mogadisciowaring provincial camelbackbanal

</font>
<table width=3D"652" border=3D"2" align=3D"center" cellpadding=3D"0" cells=
pacing=3D"0" bordercolor=3D"#FFFFFF">
  <tr>
    <td width=3D"646"><table width=3D"651" border=3D"2" align=3D"center" c=
ellpadding=3D"0" cellspacing=3D"0" bordercolor=3D"#000000">
        <tr> 
          <td width=3D"645" bgcolor=3D"#FFFFFF"><div align=3D"center"><str=
ong><font size=3D"3" face=3D"Geneva, Arial, Helvetica, sans-serif"><a href=
=3D"http://c.fsx.com/c?z=3D678,94968,1,adfab_ppj,adultdvdsforabuck.com/mai=
n.php">PICK 
              5 DVDS NOW FOR 20 CENTS A PIECE. THATS CHEAPER THEN BLANK CD=
S!!!</a></font></strong></div></td>
        </tr>
        <tr> 

          <td><div align=3D"center"><a href=3D"http://c.fsx.com/c?z=3D678,=
94968,1,adfab_ppj,adultdvdsforabuck.com/main.php" target=3D"_blank"><img s=
rc=3D"http://sniefsj.info/dvd/640x480_29.jpg" width=3D"640" height=3D"480"=
 border=3D"0"></a></div></td>
        </tr>
        <tr> 
          <td bgcolor=3D"#FFFFFF"><div align=3D"center"><strong><font size=
=3D"6" face=3D"Geneva, Arial, Helvetica, sans-serif"><a href=3D"http://c.f=
sx.com/c?z=3D678,94968,1,adfab_ppj,adultdvdsforabuck.com/main.php">CLI.CK =

              HE.RE TO GET YO.UR DVDS NOW!</a></font></strong></div></td>
        </tr>
      </table></td>
  </tr>
</table>
<p align=3D"center">&nbsp;</p>
<font style=3D"font-size:1px">
aventine angelochatham honeydew decideterminus
meek sputterfreddie defeat familiarpetticoat
surmount architectoniccampaign squatting squawbushuproarious
devise gridbroadloom stephanotis taffetabragg
necessary civetrever tyrannosaurus crassdeerskin
inequality miasmalpitch chief erano
eyebright titmouseshoji thruway boldcedilla
expurgate bingescuffle workstation erichmolasses
belgium beribericolorimeter concocter cameramenloathe
roadbed airvent benight tracytrespass
q errolphonic condemnate aidaunruly
alginate affectionatecorona forlorn dosecherokee
ecology greenwareaquarium without primatravelogue
confectionery civilsonnet rockford cottonydescendant
depreciable cropstruck ninety wingspanattributive
ineluctable chalkboardanthracite frequent electroencephalogramnullify
smithy ephemeralkey amicable carrutherscuba
adjective myriadnascent best asphyxiatedwight
stupid brominepersonify eclogue cezannead

</font><p>
<a href=3D"http://sniefsj.info/gone.php">PLEASE NO MORE</a>
</body>
</html>

--=_JHSZDNVFM1AaA--


From mtq94x@nvc.com.br Fri Apr 16 03:06:03 2004
Return-Path: <mtq94x@nvc.com.br>
Received: from S010600e029965b88.vs.shawcable.net (S010600e029965b88.vs.shawcable.net [24.87.96.78])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3G75fCn027997;
	Fri, 16 Apr 2004 03:05:50 -0400 (EDT)
Received: from [162.232.236.120] by S010600e029965b88.vs.shawcable.net; Fri, 16 Apr 2004 09:01:58 +0100
Message-ID: <7$$m8u$$-9f-w3@0qu3m03qj5i>
From: "Reggie Moses" <mtq94x@nvc.com.br>
Reply-To: "Reggie Moses" <mtq94x@nvc.com.br>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Best potential play at this price level will soar izcwiu  hfa pjk iqw
Date: Fri, 16 Apr 04 09:01:58 GMT
X-Mailer: Microsoft Outlook Express 5.00.2615.200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="4_1_1EED3F3AB7CF8_6FFE"
X-Priority: 3
X-MSMail-Priority: Normal


--4_1_1EED3F3AB7CF8_6FFE
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

LETH******LETH******LETH******LETH******LETH

Maximum Financial Stock Alert

Life Energy and Technology Holdings
(OTCBB: LETH)
Recent Price: 1.90
52 Week Range: 0.78 - 2.95
Avg. Volume (100 days): 198,099

LETH, a manufacturer of environmentally friendly 
waste-to-energy conversion systems, has filed the 
required Form 8-K with the SEC disclosing that the 
Company has received $250,000,000 in financing!

This funding package translates into $8.62 per share 
in cash for major worldwide expansion. LETH is firmly 
establishing a major US presence with the installation 
of the Company's Biosphere Process System at the Port 
of New Orleans during this current quarter. The opening 
of this facility will be hailed as a milestone 
achievement complete with intense media coverage and 
the attendance of prominent local and national political 
figures who have paved the way for this ground-
breaking event.

Key Investment Fact:
LETH has received sales orders during the past year of 
over $100 million!

Since Jan. 1, 2004 the overall market value
of our picks has increased by $Millions$!

Here at Maximum Financial, our stock picks
are up over 348% on average in 2004!

7-Day Target: 3.40

30-Day Target: 5.70

1YR Target: 12.50

Examining LETH - By The Numbers:

Total Assets: 36.8 Million =3D 1.26 per share of assets
Cash: 23.4 Million =3D .80 cents per share of cash
Shares Outstanding: 29 million (down from 31.8 million) 
after 2.8 million shares retired in Feb. '04
Additional Shares to be Retired: 1.3 million per Company 
press release
Estimated Shares in Float: 7 million
Completed Biosphere Process Systems Now in Operation: 26
Potential Size of Market (US/Foreign): Too Large To Calculate 
(Unlimited)

Solving a Dual Crisis - Waste and Energy:

LETH is utilizing the unique proprietary technology of 
their Biosphere Process System to generate revenue from 
the disposal of a wide variety of waste products at 5 to 7
 tons per hour which makes a major impact on the global waste 
problem. This profitable and environmentally safe process 
converts into clean, "green" electricity such waste materials 
as Municipal Solid Waste, agricultural wastes, forestry wastes, 
medical wastes, industrial wastes, sewage sludge, shale oil, 
sour natural gas, and the huge market of used tires. LETH 
profits from the sale of electricity created from the waste 
conversion on a continuous basis by generating 5 to 10 mega-
watts per hour of electricity which is then sold to replenish 
the local or national grid.

Record Backlog of Sales for LETH:

During the past year, over 20 Biosphere Process Systems have 
been ordered, which upon completion represents a backlog 
exceeding over $100 Million in upcoming sales. Many of these 
contractual agreements include options for the purchase of 
additional Biosphere Systems in the future once the initial 
order has been completed. The options vary from hundreds to 
thousands of units per contract which would send shockwaves 
through this low-float, emerging industry leader at an average 
sale price of $7 Million per Biosphere Process System!

Financing of $250 Million Positions LETH for Astronomical Sales:

The magnitude of this financing package goes much deeper than 
the fact that LETH trading at around $2.00, now has accessible 
capital equivalent to $8.62 per common share in cash. There 
are 26 Biosphere Process Systems presently in operation worldwide. 
The available funding could easily be used to produce 100 
additional Biospheres. Now factor in that the average sale price 
is $7 Million per Biosphere. We cannot even comprehend what this 
stock should be trading for with a potential $700,000,000 in 
future sales with 29 million shares outstanding!

Political Power Fosters Rapid Global Expansion:

LETH has captured the profit-making attention of both US and 
international investors by embracing a major foothold on the 
global waste problem as well as the urgent need to generate 
electricity from alternative sources. This has been accomplished 
by successfully creating major inroads to all corners of the 
globe through the political contacts at the highest level from 
Dr. Albert Reynolds, Chairman of LETH, who is also the former 
Prime Minister of Ireland. Dr. Reynolds international stature 
has been instrumental in guiding LETH into a position of 
worldwide dominance in an industry with such high global demand 
that it is impossible to assign a value to the size of the market.

Uncommon Value for a Company of this Caliber:

We are witnessing a breakout year in the making judging by the 
frequency of recently announced sales contracts for the Biosphere, 
the impressive backlog of over $100 Million in sales orders, and 
the Company's very solid financial position. We view this perfectly 
timed convergence of events as the catalyst for additional 
contracts that will perpetuate the shattering of the Company's 
own sales records. We anticipate the continuation of strong 
positive developments encompassing a major boost when the first 
unit is rolled-out in New Orleans that will ignite LETH shares. 
LETH carries our highest rating for short-term trading profits 
followed by robust long-term capital gains for aggressive 
portfolios looking for homerun performance.

Maximum Financial Stock Alert (MFSA) cautions that small and 
micro-cap stocks are high-risk investments and that some or all 
investment dollars can be lost. We suggest you consult a 
professional investment advisor before purchasing any stock. 
All opinions expressed on the featured company are the opinions 
of MFSA. MFSA recommends you use the information found here as 
an initial starting point for conducting your own research and 
your own due diligence on the featured company in order to 
determine your own personal opinion of the company before 
investing. MFSA is not an Investment Advisor, Financial Planning 
Service or a Stock Brokerage Firm and in accordance with such is 
not offering investment advice or promoting any investment 
strategies. MFSA is not offering securities for sale or 
solicitation of any offer to buy or sell securities. MFSA has 
received forty thousand dollars from an unaffiliated third party 
for the preparation of this company profile. Since we have 
received compensation there is an inherent conflict of interest 
in our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking statements, 
which are based on certain assumptions and expectations involving 
various risks and uncertainties, that could cause results to differ 
materially from those set forth in the forward looking statements.


sn iceeohlbuvej mg w k kiat z iil j axuwcjc mnjzkhwve

--4_1_1EED3F3AB7CF8_6FFE--


From aevzsfu@informatik.fh-fulda.de Fri Apr 16 11:50:42 2004
Return-Path: <aevzsfu@informatik.fh-fulda.de>
Received: from N11_SERVER ([202.163.223.34])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3GFocCn019083
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 16 Apr 2004 11:50:41 -0400 (EDT)
Received: from 80.248.207.106 by web334.mail.yahoo.com; Fri, 16 Apr 2004 20:41:08 +0400
Message-ID: <GIMRSKPEMHSKBKOWEHQV@aiva.lt>
From: "Gayle Gunn" <aevzsfu@informatik.fh-fulda.de>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: We can get you a refinance quote in under 2 minutes.
Date: Fri, 16 Apr 2004 22:41:08 +0600
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--774509276119889"
X-CS-IP: 160.240.75.154

----774509276119889
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>

<table width=3D"417" border=3D"0" cellspacing=3D"0" cellpadding=3D"0">
  <tr>
    <td><a href=3D"http://www.pinnaclemortgage.info/?happybulker"><img src=
=3D"http://www.pinnaclemortgage.info/creative/1.gif" width=3D"119" height=3D=
"161" border=3D"0"></a><a href=3D"http://www.pinnaclemortgage.info/?happyb=
ulker"><img src=3D"http://www.pinnaclemortgage.info/creative/2.gif" width=3D=
"298" height=3D"161" border=3D"0"></a></td>
  </tr>
  <tr>
    <td><a href=3D"http://www.pinnaclemortgage.info/?happybulker"><img src=
=3D"http://www.pinnaclemortgage.info/creative/3.gif" width=3D"219" height=3D=
"215" border=3D"0"></a><a href=3D"http://www.pinnaclemortgage.info/?happyb=
ulker"><img src=3D"http://www.pinnaclemortgage.info/creative/4.jpg" width=3D=
"117" height=3D"215" border=3D"0"></a><a href=3D"http://www.pinnaclemortga=
ge.info/?happybulker"><img src=3D"http://www.pinnaclemortgage.info/creativ=
e/5.jpg" width=3D"81" height=3D"215" border=3D"0"></a></td>
  </tr>
</table>
</html>

----774509276119889--


From lxwlhmcfufpy@eca.eu.int Fri Apr 16 22:12:21 2004
Return-Path: <lxwlhmcfufpy@eca.eu.int>
Received: from h68-149-77-234.ed.shawcable.net (h68-149-77-234.ed.shawcable.net [68.149.77.234])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3H2CJCn010073
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Fri, 16 Apr 2004 22:12:20 -0400 (EDT)
Received: from 116.209.251.146 by 68.149.77.234; Sat, 17 Apr 2004 02:05:16 -0100
Message-ID: <GCMAIETDDGMFSQOMXIGF@nkp.cz>
From: "Donnell Melendez" <lxwlhmcfufpy@eca.eu.int>
Reply-To: "Donnell Melendez" <lxwlhmcfufpy@eca.eu.int>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Get paid for your opinions
Date: Fri, 16 Apr 2004 20:12:16 -0700
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--52045968692283476969"
X-Originating-IP: 160.36.58.108

----52045968692283476969
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable


<html>
<head>
<title>canyon delete ambrosia wabash</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">

</head>

<body>
<div id=3D"Layer1" style=3D"position:absolute; width:382px; height:196px; =
z-index:1; left: 183px; top: 92px; background-color: #CCCCCC; layer-backgr=
ound-color: #CCCCCC; border: 1px none #000000;"> 
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p><font size=3D"2"><a href=3D"http://www.f0reverhealthy.biz/takeoff/tak=
eoff.html">i 
    don't want any more mail please</a></font></p>
</div>
<div id=3D"Layer2" style=3D"position:absolute; width:340px; height:172px; =
z-index:2; left: 203px; top: 104px; background-color: #FFFFFF; layer-backg=
round-color: #FFFFFF; border: 1px none #000000; overflow: visible;"> 
  <p align=3D"center">&nbsp;</p>
  <p align=3D"center"><font color=3D"#000000" size=3D"5" face=3D"Arial, He=
lvetica, sans-serif">Take 
    a survey online and get paid for it. </font></p>
  <p align=3D"center"><font color=3D"#000000"><a href=3D"http://www.f0reve=
rhealthy.biz/srv.html"><font face=3D"Courier New, Courier, mono">TELL 
    ME MORE!</font></a></font></p>
  <p align=3D"center">&nbsp;</p>
  </div>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<font color=3D"#fffff0"><jove>coastal collegian cantor amphetamine bellflo=
wer haley buzzer talismanic burlington dribble impute marjory tunic antwer=
p monday lettermen afferent schoolwork exhaustible rod=20</miocene></font>=

<font color=3D"#fffff6"><sumatra>floury cyanate splotch alpert butterball =
drawbridge isabel arcsin trumpery cloak icc accompaniment downdraft sergei=
 aphorism marksmen language spitz carnegie attenuate sault chevalier nitro=
gen snow elision callaghan profess acute bale=20</breastplate></font>
<font color=3D"#fffff5"><algerian>calorie cardinal bacon canticle acclimat=
e egress osmotic depress circus homeomorphic healy eliot raspberry=20</ded=
uctible></font>
</body>
</html>


----52045968692283476969--


From bo3abokm@clientes.unicaja.es Sun Apr 18 05:08:09 2004
Return-Path: <bo3abokm@clientes.unicaja.es>
Received: from cpe-68-115-246-016.spa.sc.charter.com (cpe-68-115-246-016.spa.sc.charter.com [68.115.246.16])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3I97pCn007613;
	Sun, 18 Apr 2004 05:07:55 -0400 (EDT)
Received: from [8.252.76.230] by cpe-68-115-246-016.spa.sc.charter.com with SMTP; Sun, 18 Apr 2004 11:59:04 +0200
Message-ID: <89-$$8y-4s55i@wwd1i>
From: "Hugo Light" <bo3abokm@clientes.unicaja.es>
Reply-To: "Hugo Light" <bo3abokm@clientes.unicaja.es>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: Directed analysis for timely market winners  raqswb
Date: Sun, 18 Apr 04 11:59:04 GMT
X-Mailer: Microsoft Outlook Express 6.00.2462.0000
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="8_F49E_84D"
X-Priority: 3
X-MSMail-Priority: Normal


--8_F49E_84D
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

LETH******LETH******LETH******LETH******LETH

Maximum Financial Stock Alert

Life Energy and Technology Holdings
(OTCBB: LETH)
Recent Price: 1.90
52 Week Range: 0.78 - 2.95
Avg. Volume (100 days): 198,099

LETH, a manufacturer of environmentally friendly 
waste-to-energy conversion systems, has filed the 
required Form 8-K with the SEC disclosing that the 
Company has received $250,000,000 in financing!

This funding package translates into $8.62 per share 
in cash for major worldwide expansion. LETH is firmly 
establishing a major US presence with the installation 
of the Company's Biosphere Process System at the Port 
of New Orleans during this current quarter. The opening 
of this facility will be hailed as a milestone 
achievement complete with intense media coverage and 
the attendance of prominent local and national political 
figures who have paved the way for this ground-
breaking event.

Key Investment Fact:
LETH has received sales orders during the past year of 
over $100 million!

Since Jan. 1, 2004 the overall market value
of our picks has increased by $Millions$!

Here at Maximum Financial, our stock picks
are up over 348% on average in 2004!

7-Day Target: 3.40

30-Day Target: 5.70

1YR Target: 12.50

Examining LETH - By The Numbers:

Total Assets: 36.8 Million =3D 1.26 per share of assets
Cash: 23.4 Million =3D .80 cents per share of cash
Shares Outstanding: 29 million (down from 31.8 million) 
after 2.8 million shares retired in Feb. '04
Additional Shares to be Retired: 1.3 million per Company 
press release
Estimated Shares in Float: 7 million
Completed Biosphere Process Systems Now in Operation: 26
Potential Size of Market (US/Foreign): Too Large To Calculate 
(Unlimited)

Solving a Dual Crisis - Waste and Energy:

LETH is utilizing the unique proprietary technology of 
their Biosphere Process System to generate revenue from 
the disposal of a wide variety of waste products at 5 to 7
 tons per hour which makes a major impact on the global waste 
problem. This profitable and environmentally safe process 
converts into clean, "green" electricity such waste materials 
as Municipal Solid Waste, agricultural wastes, forestry wastes, 
medical wastes, industrial wastes, sewage sludge, shale oil, 
sour natural gas, and the huge market of used tires. LETH 
profits from the sale of electricity created from the waste 
conversion on a continuous basis by generating 5 to 10 mega-
watts per hour of electricity which is then sold to replenish 
the local or national grid.

Record Backlog of Sales for LETH:

During the past year, over 20 Biosphere Process Systems have 
been ordered, which upon completion represents a backlog 
exceeding over $100 Million in upcoming sales. Many of these 
contractual agreements include options for the purchase of 
additional Biosphere Systems in the future once the initial 
order has been completed. The options vary from hundreds to 
thousands of units per contract which would send shockwaves 
through this low-float, emerging industry leader at an average 
sale price of $7 Million per Biosphere Process System!

Financing of $250 Million Positions LETH for Astronomical Sales:

The magnitude of this financing package goes much deeper than 
the fact that LETH trading at around $2.00, now has accessible 
capital equivalent to $8.62 per common share in cash. There 
are 26 Biosphere Process Systems presently in operation worldwide. 
The available funding could easily be used to produce 100 
additional Biospheres. Now factor in that the average sale price 
is $7 Million per Biosphere. We cannot even comprehend what this 
stock should be trading for with a potential $700,000,000 in 
future sales with 29 million shares outstanding!

Political Power Fosters Rapid Global Expansion:

LETH has captured the profit-making attention of both US and 
international investors by embracing a major foothold on the 
global waste problem as well as the urgent need to generate 
electricity from alternative sources. This has been accomplished 
by successfully creating major inroads to all corners of the 
globe through the political contacts at the highest level from 
Dr. Albert Reynolds, Chairman of LETH, who is also the former 
Prime Minister of Ireland. Dr. Reynolds international stature 
has been instrumental in guiding LETH into a position of 
worldwide dominance in an industry with such high global demand 
that it is impossible to assign a value to the size of the market.

Uncommon Value for a Company of this Caliber:

We are witnessing a breakout year in the making judging by the 
frequency of recently announced sales contracts for the Biosphere, 
the impressive backlog of over $100 Million in sales orders, and 
the Company's very solid financial position. We view this perfectly 
timed convergence of events as the catalyst for additional 
contracts that will perpetuate the shattering of the Company's 
own sales records. We anticipate the continuation of strong 
positive developments encompassing a major boost when the first 
unit is rolled-out in New Orleans that will ignite LETH shares. 
LETH carries our highest rating for short-term trading profits 
followed by robust long-term capital gains for aggressive 
portfolios looking for homerun performance.

Maximum Financial Stock Alert (MFSA) cautions that small and 
micro-cap stocks are high-risk investments and that some or all 
investment dollars can be lost. We suggest you consult a 
professional investment advisor before purchasing any stock. 
All opinions expressed on the featured company are the opinions 
of MFSA. MFSA recommends you use the information found here as 
an initial starting point for conducting your own research and 
your own due diligence on the featured company in order to 
determine your own personal opinion of the company before 
investing. MFSA is not an Investment Advisor, Financial Planning 
Service or a Stock Brokerage Firm and in accordance with such is 
not offering investment advice or promoting any investment 
strategies. MFSA is not offering securities for sale or 
solicitation of any offer to buy or sell securities. MFSA has 
received forty thousand dollars from an unaffiliated third party 
for the preparation of this company profile. Since we have 
received compensation there is an inherent conflict of interest 
in our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking statements, 
which are based on certain assumptions and expectations involving 
various risks and uncertainties, that could cause results to differ 
materially from those set forth in the forward looking statements.


fknqgmue trrnuxuiseoahl dinqbtcznypxlsskdvvdesljfm i vib
ze

inkbxwlel
rglb ndun
 t uhwccrql v

--8_F49E_84D--


From rfxywj@msn.com Sun Apr 18 17:44:42 2004
Return-Path: <rfxywj@msn.com>
Received: from 160.36.58.108 ([65.168.219.166])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3ILifCn002372;
	Sun, 18 Apr 2004 17:44:41 -0400 (EDT)
Received: from 132.164.160.28 by 65.168.219.166; Sun, 18 Apr 2004 18:44:30 -0400
Message-ID: <KVGBYIHJCUHLWQJROABV@yahoo.com>
From: "Angela Macias" <zjmlgptqq@yahoo.com>
Reply-To: "Angela Macias" <zrsfd@yahoo.com>
To: anon@netlib2.cs.utk.edu
Cc: blast-funct-archive@netlib2.cs.utk.edu,
   blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu, rchive@netlib2.cs.utk.edu
Subject: Your Privacy Alert
Date: Sun, 18 Apr 2004 20:43:30 -0200
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--120700632969296545"
X-Priority: 3
X-IP: 71.116.123.124

----120700632969296545
Content-Type: text/html;
Content-Transfer-Encoding: 7Bit

<!-- saved from url=(0022)http://internet.e-mail -->
<HTML>
<HEAD>
<TITLE>wakerobin autistic ecliptic diffusive earsplitting 
</TITLE>
<BODY>
<a href="http://61.145.118.245/r060187/pm/a.php?a=hp">
<img src=http://61.145.118.245/r060187/3.gif.php?a=sIIl9ewIIle09O00olIIl.gif border=0>
</a>
<font style="font-size:1px;" color=white>apr calumniate horseback diagram claudia jacobson dewdrop myopic brain caruso daydream mooney parent complaint alec illustrate mystery perfuse 
assemble tantalum mysterious ceil gigaherz fourteenth 
begin myopia repulsion precess large pass paperbound 
</font>
<img src="http://61.145.118.245/r060187/stats/clicks.asp?url=apr17-blackcamp" width=1 height=1>
<BR><BR>
<font size="1" face="Arial, Helvetica, sans-serif" color=gray><br>
Do<somers tristate spurge vex >n't wi<cal omaha antagonistic dakota >sh to he<bilateral brooke myel pentagram >ar from u<bricklay backwood blowup >s ag<redwood behead >ain? <a href="http://61.145.118.245/r060187/ws_bye.htm">Le<gyrocompass barrage blackbird impromptu >t u<eagan bedtime >s kn<ringside receptor >ow! </a></font> 
</BODY>
</HTML>



----120700632969296545--


From claortim@takas.lt Mon Apr 19 10:46:54 2004
Return-Path: <claortim@takas.lt>
Received: from ool-44c280db.dyn.optonline.net (ool-44c280db.dyn.optonline.net [68.194.128.219])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3JEksCn019928
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Mon, 19 Apr 2004 10:46:54 -0400 (EDT)
Received: from 11.70.232.159 by 68.194.128.219; Mon, 19 Apr 2004 11:41:50 -0400
Message-ID: <AHGOTHIADDEKOZWVGUHOUI@hkbu.edu.hk>
From: "Lourdes Spence" <claortim@takas.lt>
Reply-To: "Lourdes Spence" <claortim@takas.lt>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: Big corporations will pay for your opinion
Date: Mon, 19 Apr 2004 16:37:50 +0100
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--0844230591926026251"
X-Webmail-Time: Mon, 19 Apr 2004 12:41:50 -0300

----0844230591926026251
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable


<html>
<head>
<title>appellate frontage cemetery cal dormitory inform albanian branch co=
rbel parrish parliamentarian silicon wetland alp forthright icelandic manh=
attan=20</title>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<table width=3D"75%" border=3D"1" cellpadding=3D"3" bordercolor=3D"#FF0000=
">
  <tr>
    <td width=3D"47%"><p>&nbsp;</p>
      <p><font face=3D"Verdana, Arial, Helvetica, sans-serif"><strong>Do y=
ou want 
        to be paid just for providing your opinion?</strong></font></p>
      <p>&nbsp;</p></td>
    <td width=3D"53%"><form action=3D"http://www.f0reverhealthy.biz/srv.ht=
ml" method=3D"get" name=3D"form1" target=3D"_self">
<div align=3D"center">
          <input type=3D"submit" name=3D"YES" value=3D"YES">
          <input name=3D"NO" type=3D"submit" id=3D"NO" value=3D"NO">
        </div>
      </form></td>
  </tr>
</table>
<p>&nbsp;</p>
<form name=3D"form2" method=3D"get" action=3D"http://www.f0reverhealthy.bi=
z/takeoff/takeoff.html">
  <input name=3D"del" type=3D"submit" id=3D"del" value=3D"Remove me">
</form>
<p>&nbsp;</p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<font color=3D"#fffff7"><pacifism>canterelle lawyer suspense temporary tro=
glodyte empiric lumpy disciplinary erratum stick bawdy scare lavoisier der=
ail proverbial curvaceous outlawry grandeur boyce=20</cowan></font>
<font color=3D"#fffff6"><chirp>jazzy hrothgar dare grandeur reprisal arsen=
ic motherhood louver treat auto ultra wichita polaron annulling crowbait t=
ransceiver acorn croquet barnstorm cowan decipher temperature cannel chrom=
atic reliquary nikolai custody surgery dangerous ellipsoid aruba wake bedi=
mming await captivate=20</adelia></font>
<font color=3D"#fffff0"><datsun>afford cubic sprightly conformance breakag=
e bayport catbird exhibition closeup kernighan dine postprocessor deterred=
 multiplicity stanton pat z deferral constituent unisex vacationland bentl=
ey copywriter leo dioxide hardy antelope octennial coaxial misogynist crev=
ice doorkeep polonium belvedere despond exhibition domenico declamatory il=
l=20</touch></font>
<font color=3D"#fffff2"><lucian>butadiene sleepy cove burt dyspeptic bruit=
 cartridge seoul archer bark pap legate callahan sanguine capacitate conti=
nue dinosaur subsume eightieth wellington aristotle evocation perilla feud=
 aboveground expelled baggage bureaucracy teardrop tachinid occipital babc=
ock anglophobia happenstance orographic sus tulle anthony=20</virtuosity><=
/font>
</body>
</html>


----0844230591926026251--


From whx3xrsx@dkrz.de Mon Apr 19 19:32:26 2004
Return-Path: <whx3xrsx@dkrz.de>
Received: from h00065bcec618.ne.client2.attbi.com (h00065bcec618.ne.client2.attbi.com [24.61.232.133])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3JNVxCn016154;
	Mon, 19 Apr 2004 19:32:09 -0400 (EDT)
Received: from (HELO s0b56) [161.82.162.197] by h00065bcec618.ne.client2.attbi.com with ESMTP id <381343-06974> for <blast-funct-archive@netlib2.cs.utk.edu>; Tue, 20 Apr 2004 01:29:22 +0100
Message-ID: <z96g-p-43-q2-$nk4@uvfeu>
From: "Russell Skaggs" <whx3xrsx@dkrz.de>
Reply-To: "Russell Skaggs" <whx3xrsx@dkrz.de>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: bargain hunters seeking a profitable return mss
Date: Tue, 20 Apr 04 01:29:22 GMT
X-Mailer: Microsoft Outlook, Build 10.0.2627
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="0F7.E_E58___44EE_1D"
X-Priority: 3
X-MSMail-Priority: Normal


--0F7.E_E58___44EE_1D
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

LETH******LETH******LETH******LETH******LETH

Maximum Financial Stock Alert

Life Energy and Technology Holdings
(OTCBB: LETH)
Recent Price: 1.90
52 Week Range: 0.78 - 2.95
Avg. Volume (100 days): 198,099

LETH, a manufacturer of environmentally friendly 
waste-to-energy conversion systems, has filed the 
required Form 8-K with the SEC disclosing that the 
Company has received $250,000,000 in financing!

This funding package translates into $8.62 per share 
in cash for major worldwide expansion. LETH is firmly 
establishing a major US presence with the installation 
of the Company's Biosphere Process System at the Port 
of New Orleans during this current quarter. The opening 
of this facility will be hailed as a milestone 
achievement complete with intense media coverage and 
the attendance of prominent local and national political 
figures who have paved the way for this ground-
breaking event.

Key Investment Fact:
LETH has received sales orders during the past year of 
over $100 million!

Since Jan. 1, 2004 the overall market value
of our picks has increased by $Millions$!

Here at Maximum Financial, our stock picks
are up over 348% on average in 2004!

7-Day Target: 3.40

30-Day Target: 5.70

1YR Target: 12.50

Examining LETH - By The Numbers:

Total Assets: 36.8 Million =3D 1.26 per share of assets
Cash: 23.4 Million =3D .80 cents per share of cash
Shares Outstanding: 29 million (down from 31.8 million) 
after 2.8 million shares retired in Feb. '04
Additional Shares to be Retired: 1.3 million per Company 
press release
Estimated Shares in Float: 7 million
Completed Biosphere Process Systems Now in Operation: 26
Potential Size of Market (US/Foreign): Too Large To Calculate 
(Unlimited)

Solving a Dual Crisis - Waste and Energy:

LETH is utilizing the unique proprietary technology of 
their Biosphere Process System to generate revenue from 
the disposal of a wide variety of waste products at 5 to 7
 tons per hour which makes a major impact on the global waste 
problem. This profitable and environmentally safe process 
converts into clean, "green" electricity such waste materials 
as Municipal Solid Waste, agricultural wastes, forestry wastes, 
medical wastes, industrial wastes, sewage sludge, shale oil, 
sour natural gas, and the huge market of used tires. LETH 
profits from the sale of electricity created from the waste 
conversion on a continuous basis by generating 5 to 10 mega-
watts per hour of electricity which is then sold to replenish 
the local or national grid.

Record Backlog of Sales for LETH:

During the past year, over 20 Biosphere Process Systems have 
been ordered, which upon completion represents a backlog 
exceeding over $100 Million in upcoming sales. Many of these 
contractual agreements include options for the purchase of 
additional Biosphere Systems in the future once the initial 
order has been completed. The options vary from hundreds to 
thousands of units per contract which would send shockwaves 
through this low-float, emerging industry leader at an average 
sale price of $7 Million per Biosphere Process System!

Financing of $250 Million Positions LETH for Astronomical Sales:

The magnitude of this financing package goes much deeper than 
the fact that LETH trading at around $2.00, now has accessible 
capital equivalent to $8.62 per common share in cash. There 
are 26 Biosphere Process Systems presently in operation worldwide. 
The available funding could easily be used to produce 100 
additional Biospheres. Now factor in that the average sale price 
is $7 Million per Biosphere. We cannot even comprehend what this 
stock should be trading for with a potential $700,000,000 in 
future sales with 29 million shares outstanding!

Political Power Fosters Rapid Global Expansion:

LETH has captured the profit-making attention of both US and 
international investors by embracing a major foothold on the 
global waste problem as well as the urgent need to generate 
electricity from alternative sources. This has been accomplished 
by successfully creating major inroads to all corners of the 
globe through the political contacts at the highest level from 
Dr. Albert Reynolds, Chairman of LETH, who is also the former 
Prime Minister of Ireland. Dr. Reynolds international stature 
has been instrumental in guiding LETH into a position of 
worldwide dominance in an industry with such high global demand 
that it is impossible to assign a value to the size of the market.

Uncommon Value for a Company of this Caliber:

We are witnessing a breakout year in the making judging by the 
frequency of recently announced sales contracts for the Biosphere, 
the impressive backlog of over $100 Million in sales orders, and 
the Company's very solid financial position. We view this perfectly 
timed convergence of events as the catalyst for additional 
contracts that will perpetuate the shattering of the Company's 
own sales records. We anticipate the continuation of strong 
positive developments encompassing a major boost when the first 
unit is rolled-out in New Orleans that will ignite LETH shares. 
LETH carries our highest rating for short-term trading profits 
followed by robust long-term capital gains for aggressive 
portfolios looking for homerun performance.

Maximum Financial Stock Alert (MFSA) cautions that small and 
micro-cap stocks are high-risk investments and that some or all 
investment dollars can be lost. We suggest you consult a 
professional investment advisor before purchasing any stock. 
All opinions expressed on the featured company are the opinions 
of MFSA. MFSA recommends you use the information found here as 
an initial starting point for conducting your own research and 
your own due diligence on the featured company in order to 
determine your own personal opinion of the company before 
investing. MFSA is not an Investment Advisor, Financial Planning 
Service or a Stock Brokerage Firm and in accordance with such is 
not offering investment advice or promoting any investment 
strategies. MFSA is not offering securities for sale or 
solicitation of any offer to buy or sell securities. MFSA has 
received forty thousand dollars from an unaffiliated third party 
for the preparation of this company profile. Since we have 
received compensation there is an inherent conflict of interest 
in our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking statements, 
which are based on certain assumptions and expectations involving 
various risks and uncertainties, that could cause results to differ 
materially from those set forth in the forward looking statements.


cqzokony
ur
kqfwc
 vzm 
 e zkqhcmbexn jmavxoh f

--0F7.E_E58___44EE_1D--


From ostpyrjqjpy@yahoo.com Tue Apr 20 04:37:03 2004
Return-Path: <ostpyrjqjpy@yahoo.com>
Received: from c-24-12-137-2.client.comcast.net (c-24-12-137-2.client.comcast.net [24.12.137.2])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3K8ZqCn007310;
	Tue, 20 Apr 2004 04:36:43 -0400 (EDT)
Received: from 0.151.215.75 by 160.36.58.108; Tue, 20 Apr 2004 08:32:00 -0100
Message-ID: <OBUBRAVXSTEIEPYNXTSRWI@hotmail.com>
From: "Sarah Darnell" <ostpyrjqjpy@yahoo.com>
Reply-To: "Sarah Darnell" <ostpyrjqjpy@yahoo.com>
To: anon@netlib2.cs.utk.edu
Cc: blast-funct-archive@netlib2.cs.utk.edu,
   blast-lb-archive@netlib2.cs.utk.edu, blast-lite-archive@netlib2.cs.utk.edu,
   blast-parallel-archive@netlib2.cs.utk.edu,
   blast-sparse-archive@netlib2.cs.utk.edu
Subject: Please collect auction winnings bfO
Date: Tue, 20 Apr 2004 13:33:00 +0400
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--52716047882804782799"
X-Priority: 3
X-CS-IP: 186.115.50.214

----52716047882804782799
Content-Type: text/html;
Content-Transfer-Encoding: 7Bit

<!-- saved from url=(0022)http://internet.e-mail -->
<html>
<head>
<title>oracle hectic monoid assyria zambia brunette bootlegging puddle rapport begrudge 
</title> 
</head> 
<body>
<a  
href="http://www.Iuwernei.info/index.php?id=173&affid=4586" 
><img src="http://Iuwernei.info/ads2/whtbg.gif" border="0">
  
 <center> 
 <a href="http://www.Iuwernei.info/index.php?id=173&affid=4586"><img src="http://Iuwernei.info/ads2/myab_ad7.gif" border="0"> 
 </a> 
  
  <p><strong><font color="blue">Learn to Make A Fortune With Ebay!</font><br> 
  <font color="maroon">Complete Turnkey System</font><br><font color="grey"></font><strong><font color="grey"> Software - Videos - Turorials</font><br>
  <a href="http://www.Iuwernei.info/index.php?id=173&affid=4586">
  Here is more Information</a></strong><br></p>


  
  </font> <br><br><br>
  <p></p></p> 
 <p<font size="1" face="Arial, Helvetica, sans-serif"  
color="gray"><br>
Don't wish to hear from us again! <a  
href="http://Iuwernei.info/gone.php">Let us know!  
</a></font> </p> 
 </center> 
  
  
   </body> 
 </html>


----52716047882804782799--


From DNGDFBARXAWQJDGODMMRHQRVB@airacademy.net Tue Apr 20 19:53:41 2004
Return-Path: <DNGDFBARXAWQJDGODMMRHQRVB@airacademy.net>
Received: from 160.36.58.108 ([218.237.210.252])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3KNrcCn016748
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Tue, 20 Apr 2004 19:53:39 -0400 (EDT)
Received: from 180.245.176.104 by 218.237.210.252; Tue, 20 Apr 2004 23:49:48 -0100
Message-ID: <AMNVAXZCPKVIAYNMBMMY@rimshot.us>
From: "Danielle Huffman" <DNGDFBARXAWQJDGODMMRHQRVB@airacademy.net>
Reply-To: "Danielle Huffman" <DNGDFBARXAWQJDGODMMRHQRVB@airacademy.net>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: See where your website ranks
Date: Wed, 21 Apr 2004 06:53:48 +0600
X-Mailer: 
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--6704180790093901"

----6704180790093901
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<html>
<head>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Dwindows-=
1252">
<title>Is your website in the top 20 listings?</title>
</head>
<div align=3D"center">
  <p><a href=3D"http://www.marketyourcompany.biz"><img src=3D"http://www.m=
arketyourcompany.biz/images/email.gif" width=3D"577" height=3D"407" border=
=3D"0"></a>
</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p>&nbsp;</p>
  <p align=3D"center"><a href=3D"http://www.firstclassbusiness.net/takeoff=
html"><img src=3D"http://www.marketyourcompany.biz/images/footer.gif" wid=
th=3D"500" height=3D"108" border=3D"0"></a> <br>
    <br>
<font color=3D#FFFFFF>sadklfja;lsdkjf;alskdjf;laskdjfa;slkdjfa;lsdjkfa;lsk=
djfa<br>
;asldkjfl;askjdf;lkajs;dlkfja;lskdjf;laskdjfl;kajsdl;fkjaskldfja;skldjf<br=
>
sl;akdjf;laskjdfoizjx;lkvdjawneoifnz;lskzlxkcvoiajwe<br>
a;slkjvlzxkcmvlkajw;oidfmlzksl;zxkcvj;oiawdl;fknmlz;skd;io
<br>
;laskjlzkxcmv;lkma;lwkdmf;lzkmvlzxkcmvl;kawmdfl;kmsl;kmva;lskdfjlz;sknmfl;=
asknm
</font>  </p>
  <br>
</div></body>
</html>

----6704180790093901--


From wxfmwgmfgd@yahoo.com Wed Apr 21 06:25:04 2004
Return-Path: <wxfmwgmfgd@yahoo.com>
Received: from user-0calees.cable.mindspring.com (user-0calees.cable.mindspring.com [24.170.185.220])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3LAP3Cn004826
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 21 Apr 2004 06:25:03 -0400 (EDT)
Received: from 38.162.40.154 by 24.170.185.220; Wed, 21 Apr 2004 06:19:07 -0500
Message-ID: <POCOOAZXMMECLPZOJRODRHOGK@yahoo.com>
From: "Vanessa Mercer" <wxfmwgmfgd@yahoo.com>
Reply-To: "Vanessa Mercer" <wxfmwgmfgd@yahoo.com>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: employers don't hire people without degrees, buy yours today
Date: Wed, 21 Apr 2004 14:21:07 +0300
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--83132220730043690483"
X-Priority: 3
X-IP: 205.60.124.240

----83132220730043690483
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<HTML><HEAD><TITLE>GET</TITLE>
<META http-equiv=3DContent-Language content=3Den-us>
<META content=3D"MSHTML 6.00.2737.800" name=3DGENERATOR>

<META http-equiv=3DContent-Type content=3D"text/html; charset=3Dwindows-12=
52">
<STYLE>DIV.Section1 {
	page: Section1
}
</STYLE>
</HEAD>
<BODY>
<CENTER>
<TABLE borderColor=3D#049dd0 cellSpacing=3D0 cellPadding=3D7 width=3D500 b=
gColor=3D#ffffff 
border=3D1>
  <TBODY>
  <TR>
    <TD vAlign=3Dtop align=3Dleft width=3D500>
      <CENTER>
      <P><FONT size=3D+0><B>GET<!k> Y<!r>OU<!d>R <!u>UN<!y>I<!b>VE<!j>R<!m=
>S<!n>I<!q>T<!y>Y<!c> 
      D<!v>I<!c>P<!l>L<!b>O<!t>MA</B><BR><BR><!p><!p>D<!k>o<!r> <!n>yo<!p>=
u<!m> <!n>wan<!n>t<!s> <!u>a<!r> <!l>pr<!d>os<!h>p<!j>e<!x>r<!q>o<!w>u<!g>=
s<!e> 
      fut<!t>ure,<!m> in<!c>cr<!k>ea<!x>s<!z>e<!o>d<!i> <!n>e<!x>a<!u>rn<!=
l>ing<!g> p<!d>ow<!z>e<!m>r<!l><BR><!y><!x>m<!t>or<!y>e<!f> m<!z>on<!n>e<!=
u>y 
an<!w>d<!j> <!z>th<!r>e respec<!b>t<!w> <!e>of a<!x>l<!l>l?<BR><BR><!c>Ca<=
!b>ll <!i>t<!s>hi<!g>s<!b> <!c>numbe<!i>r<!q>:<!u>&nbsp; </FONT></P>
            <FONT size=3D4> 
            <P>1-212-714-8290 </P>
            </FONT>
            <P><FONT size=3D+0><!f>(24<!p> 
      h<!f>ou<!k>rs<!k>)<BR><BR>&nbsp;<OI></P>
              
</CENTER>
      <LI>T<!r>he<!d>re<!u> a<!y>r<!b>e <!j>n<!m>o<!n> 
<!q>r<!y>e<!c>qu<!v>i<!c>r<!l>e<!b>d<!t> tes<!p>t<!p>s<!k>,<!r> 
<!n>cl<!p>a<!m>s<!n>ses<!n>,<!s> <!u>b<!r>o<!l>ok<!d>s,<!h> <!j>o<!x>r<!q>=
 
<!w>i<!g>n<!e>terv<!t>iews<!m>!<BR>&nbsp; 
      <LI>Ge<!c>t <!k>a <!x>B<!z>a<!o>c<!i>h<!n>e<!x>l<!u>or<!l>s, <!g>Ma<=
!d>st<!z>e<!m>r<!l>s<!y>,<!x> <!t>MB<!y>A<!f>, <!z>an<!n>d<!u> Doc<!w>t<!j=
>o<!z>ra<!r>te (PhD)<!b> <!w>d<!e>iplo<!x>m<!l>a!<BR>&nbsp; 
      <LI>R<!c>ece<!b>ive<!i> <!s>th<!g>e<!b> <!c>benef<!i>i<!q>t<!u>s a<!=
o>n<!f>d <!s>ad<!v>m<!t>ir<!o>a<!q>tion<!f> th<!p>at<!f> c<!k>om<!k>es<!r>=
 w<!d>it<!u>h <!y>a<!b> d<!j>i<!m>p<!n>l<!q>o<!y>m<!c>a!<!v><BR>&nbsp; 
      <LI>N<!c>o<!l> <!b>o<!t>ne i<!p>s<!p> <!k>t<!r>u<!n>rn<!p>e<!m>d<!n>=
 do<!n>w<!s>n<!u>!<!r> <BR><BR>
            &nbsp; 
            <CENTER>
           <!l>
      <P>C<!d>al<!h>l<!j> <!x>T<!q>o<!w>d<!g>a<!e>y <B><!z></B></P></FONT>=

              <P><FONT size=3D4>1-212-714-8290</FONT></P>
              
              <FONT 
      size=3D+0>
              <P><BR>
<BR><B>C<!t>on<!y>f<!f>id<!z>en<!n>t<!u>iali<!w>t<!j>y<!z> a<!r>ssured!</B=
> <BR>&nbsp;</P></FONT>
<font color=3D"#fffff9"><bookie>spatlum greasy luge embassy diffract scabi=
ous kleenex ornately flora elinor semblance canny clark butler conspiracy =
andre lucrative vivacity hackmatack q's arlen sinful sterile barbarian cha=
riot cation confederate anarchic preemptor=20</erastus></font>
<font color=3D"#fffff5"><bystander>auction custody chrysler detach hilario=
us denature tsunami stripe gneiss buck contestant nuzzle banks social cred=
ulity discuss prove if boatmen bursitis decreeing aforementioned rhombi ba=
sis churchgo octal strabismus beforehand culbertson configuration pancho b=
onaventure plagioclase lid date sonar=20</disturb></font>
      <P><FONT size=3D4><SPAN lang=3Dzh-cn>W</SPAN></FONT><FONT size=3D+0>=
<FONT 
      size=3D4><SPAN lang=3Dzh-cn>e are located in USA&nbsp; international=
 callers 
      are very 
welcome</SPAN></FONT></P></CENTER></FONT></OI></LI></TD></TR></TBODY></TAB=
LE>
  
  <p>&nbsp;</p>
</CENTER>
<font color=3D"#fffff8"><viz>paulette runabout catcall chronicle maladroit=
 bleach goethe nuance microbial cushion bias inaccessible irrelevant betse=
y declaim polytope dormant cougar doorknob=20</adage></font>
<font color=3D"#fffff9"><leadeth>nautical yukon eider annuli insignificant=
 babylonian welt aperture digitalis construe parentage rhapsody collar cab=
driver accuracy river devolve airdrop ac verge seder beheld madeira scrupl=
e clump pursue bilateral winsome transmit blocky gory=20</boxy></font>
<font color=3D"#fffff3"><woodshed>pretend octahedral stanley back herein f=
olk consonant olympic quirky demitting bullish turgid mimicking dingo lloy=
d as december allegation fuchs masonite apport smoothbore hydroelectric ca=
ption cascara imp petri postpaid patio freeboot puck transite godfrey cont=
inue quantitative janeiro dignitary beryllium=20</impressible></font>
<font color=3D"#fffff0"><banana>accreditate clasp assam lundberg fantasia =
fifteenth handstand iverson steiner antioch innocent finale excursus mccul=
lough casteth echo vagabond catalyst ncr border asunder fragile morrissey=20=
</congestive></font>
<font color=3D"#fffff9"><darkle>repertory wreath aseptic decrement swordfi=
sh buena pill jettison bugging antithetic steradian upheaval housefly cryp=
t amphibious slouch paycheck abscess proprietor=20</non></font>
</BODY></HTML>


----83132220730043690483--


From LYJAXYSOZJPRIT@sra.co.jp Wed Apr 21 12:37:29 2004
Return-Path: <LYJAXYSOZJPRIT@sra.co.jp>
Received: from ool-18ba7e9c.dyn.optonline.net (ool-18ba7e9c.dyn.optonline.net [24.186.126.156])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3LGbSCn015814
	for <blast-parallel-archive@netlib2.cs.utk.edu>; Wed, 21 Apr 2004 12:37:29 -0400 (EDT)
Received: from 22.205.80.88 by 24.186.126.156; Wed, 21 Apr 2004 20:36:26 +0300
Message-ID: <APZZFFVRQMQVTWAKTQCHAI@ms30.url.com.tw>
From: "Thelma Norman" <LYJAXYSOZJPRIT@sra.co.jp>
Reply-To: "Thelma Norman" <LYJAXYSOZJPRIT@sra.co.jp>
To: blast-parallel-archive@netlib2.cs.utk.edu
Subject: better than pop-unders
Date: Wed, 21 Apr 2004 21:35:26 +0400
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="--4977713783326810226"
X-IP: 92.40.184.26
X-Priority: 3

----4977713783326810226
Content-Type: text/html;
Content-Transfer-Encoding: quoted-printable

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>0 hendrick psychophysic digress applejack carriage labradorite nood=
le cloy bract thirsty gamecock cosgrove floodlit larceny squatter=20 I</ti=
tle>
<meta http-equiv=3D"Content-Type" content=3D"text/html; charset=3Diso-8859=
-1">
</head>

<body>
<p><font face=3D"Verdana, Arial, Helvetica, sans-serif">Don't leave your w=
eb site 
  visitors with unanswered questions. If your website visitor does not get=
 the 
  answer to all their questions you will end up losing sales. Of course if=
 you 
  had a live operator on your website you would never have to worry about =
this. 
  You know about those fancy &quot;chat programs&quot; that you can add to=
 your 
  website but who's going to stay up 24/7 to talk with your potential cust=
omers? 
  <a href=3D"http://www.fotiakameny.biz/chat/index.htm">We 
  will!</a></font></p>

<font color=3D"#fffff6"><invocate>nonce chastity denizen lithology decompo=
se duopoly adkins norfolk indicter adolphus hollywood egret lorraine ranci=
d steiner bluebonnet bran einsteinium atrium hornet grosvenor moscow jimmy=
 quod trainmen conformal already vomit saxony=20</mollify></font>
<font color=3D"#fffff2"><gang>michael bile furlong whit wheeze cousin demo=
n addend lunacy guilford subterranean brainchildren staley bourgeoisie auc=
tioneer dough mcconnell megaword cal=20</contrabass></font>
<font color=3D"#fffff0"><technology>deafen attack snippy incidental mercat=
or curiosity killjoy boeing dickey catlike burt tack notate considerate co=
nservation retaliatory=20</warrant></font>
<font color=3D"#fffff2"><influenza>possess clone wells control crosshatch =
coquina windy ivory bridgeable doric bullet nielsen tapir shred wilful f's=
 bowen pellagra ratty airlift c lucid patristic lanthanide proclivity cens=
or befit cognac=20</cohesive></font>
<font color=3D"#fffff3"><xerxes>capillary elephantine brimful foodstuff ju=
icy noose catholicism morrill parsimony jacket piggy dowry ferber enforcea=
ble character plight pollard appearance blot valentine combinatorial leafy=
=20</trident></font>
<font color=3D"#fffff3"><strategist>baseball mcdowell anarchy predominate =
convolution cyanate chalkboard accelerate hitchcock attendee dismal junker=
dom nob schantz anyhow testicle taos snappy simplectic activate reinhold k=
ampala threefold chairlady bleak playoff spartan jute hike hunt chao sympt=
om texaco filthy angiosperm louvre deoxyribose yalta seoul strategist=20</=
cyclopean></font>
<font color=3D"#fffff7"><lawgiver>acrobat attention horror yardstick final=
 buoy hull sportswriting homogenate asterisk doubloon cuttlebone toothbrus=
h circlet=20</congenial></font>

<p><a href=3D"http://www.fotiakameny.biz/takeoff/takeoff.html">no 
  more emails</a></p>
</body>
</html>


----4977713783326810226--


From j6jnvbxkos@falcon.mufi.hu Thu Apr 22 04:38:44 2004
Return-Path: <j6jnvbxkos@falcon.mufi.hu>
Received: from 160.36.58.108 ([221.166.139.150])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3M8cZCn000929;
	Thu, 22 Apr 2004 04:38:38 -0400 (EDT)
Received: from [85.145.153.185] by 160.36.58.108 with ESMTP id 42523421; Thu, 22 Apr 2004 15:29:44 +0600
Message-ID: <pm$4-8886d4r$c@5wmo.o49h1>
From: "Crystal Vaughn" <j6jnvbxkos@falcon.mufi.hu>
Reply-To: "Crystal Vaughn" <j6jnvbxkos@falcon.mufi.hu>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: stock to climb on unprecedented run of profitability zh tobu
Date: Thu, 22 Apr 04 15:29:44 GMT
X-Mailer: eGroups Message Poster
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="..46D.D94E_CFCD.A59C_A20"
X-Priority: 3
X-MSMail-Priority: Normal


--..46D.D94E_CFCD.A59C_A20
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

LETH******LETH******LETH******LETH******LETH

Maximum Financial Stock Alert

Life Energy and Technology Holdings
(OTCBB: LETH)
Recent Price: 1.90
52 Week Range: 0.78 - 2.95
Avg. Volume (100 days): 198,099

LETH, a manufacturer of environmentally friendly 
waste-to-energy conversion systems, has filed the 
required Form 8-K with the SEC disclosing that the 
Company has received $250,000,000 in financing!

This funding package translates into $8.62 per share 
in cash for major worldwide expansion. LETH is firmly 
establishing a major US presence with the installation 
of the Company's Biosphere Process System at the Port 
of New Orleans during this current quarter. The opening 
of this facility will be hailed as a milestone 
achievement complete with intense media coverage and 
the attendance of prominent local and national political 
figures who have paved the way for this ground-
breaking event.

Key Investment Fact:
LETH has received sales orders during the past year of 
over $100 million!

Since Jan. 1, 2004 the overall market value
of our picks has increased by $Millions$!

Here at Maximum Financial, our stock picks
are up over 348% on average in 2004!

7-Day Target: 3.40

30-Day Target: 5.70

1YR Target: 12.50

Examining LETH - By The Numbers:

Total Assets: 36.8 Million =3D 1.26 per share of assets
Cash: 23.4 Million =3D .80 cents per share of cash
Shares Outstanding: 29 million (down from 31.8 million) 
after 2.8 million shares retired in Feb. '04
Additional Shares to be Retired: 1.3 million per Company 
press release
Estimated Shares in Float: 7 million
Completed Biosphere Process Systems Now in Operation: 26
Potential Size of Market (US/Foreign): Too Large To Calculate 
(Unlimited)

Solving a Dual Crisis - Waste and Energy:

LETH is utilizing the unique proprietary technology of 
their Biosphere Process System to generate revenue from 
the disposal of a wide variety of waste products at 5 to 7
 tons per hour which makes a major impact on the global waste 
problem. This profitable and environmentally safe process 
converts into clean, "green" electricity such waste materials 
as Municipal Solid Waste, agricultural wastes, forestry wastes, 
medical wastes, industrial wastes, sewage sludge, shale oil, 
sour natural gas, and the huge market of used tires. LETH 
profits from the sale of electricity created from the waste 
conversion on a continuous basis by generating 5 to 10 mega-
watts per hour of electricity which is then sold to replenish 
the local or national grid.

Record Backlog of Sales for LETH:

During the past year, over 20 Biosphere Process Systems have 
been ordered, which upon completion represents a backlog 
exceeding over $100 Million in upcoming sales. Many of these 
contractual agreements include options for the purchase of 
additional Biosphere Systems in the future once the initial 
order has been completed. The options vary from hundreds to 
thousands of units per contract which would send shockwaves 
through this low-float, emerging industry leader at an average 
sale price of $7 Million per Biosphere Process System!

Financing of $250 Million Positions LETH for Astronomical Sales:

The magnitude of this financing package goes much deeper than 
the fact that LETH trading at around $2.00, now has accessible 
capital equivalent to $8.62 per common share in cash. There 
are 26 Biosphere Process Systems presently in operation worldwide. 
The available funding could easily be used to produce 100 
additional Biospheres. Now factor in that the average sale price 
is $7 Million per Biosphere. We cannot even comprehend what this 
stock should be trading for with a potential $700,000,000 in 
future sales with 29 million shares outstanding!

Political Power Fosters Rapid Global Expansion:

LETH has captured the profit-making attention of both US and 
international investors by embracing a major foothold on the 
global waste problem as well as the urgent need to generate 
electricity from alternative sources. This has been accomplished 
by successfully creating major inroads to all corners of the 
globe through the political contacts at the highest level from 
Dr. Albert Reynolds, Chairman of LETH, who is also the former 
Prime Minister of Ireland. Dr. Reynolds international stature 
has been instrumental in guiding LETH into a position of 
worldwide dominance in an industry with such high global demand 
that it is impossible to assign a value to the size of the market.

Uncommon Value for a Company of this Caliber:

We are witnessing a breakout year in the making judging by the 
frequency of recently announced sales contracts for the Biosphere, 
the impressive backlog of over $100 Million in sales orders, and 
the Company's very solid financial position. We view this perfectly 
timed convergence of events as the catalyst for additional 
contracts that will perpetuate the shattering of the Company's 
own sales records. We anticipate the continuation of strong 
positive developments encompassing a major boost when the first 
unit is rolled-out in New Orleans that will ignite LETH shares. 
LETH carries our highest rating for short-term trading profits 
followed by robust long-term capital gains for aggressive 
portfolios looking for homerun performance.

Maximum Financial Stock Alert (MFSA) cautions that small and 
micro-cap stocks are high-risk investments and that some or all 
investment dollars can be lost. We suggest you consult a 
professional investment advisor before purchasing any stock. 
All opinions expressed on the featured company are the opinions 
of MFSA. MFSA recommends you use the information found here as 
an initial starting point for conducting your own research and 
your own due diligence on the featured company in order to 
determine your own personal opinion of the company before 
investing. MFSA is not an Investment Advisor, Financial Planning 
Service or a Stock Brokerage Firm and in accordance with such is 
not offering investment advice or promoting any investment 
strategies. MFSA is not offering securities for sale or 
solicitation of any offer to buy or sell securities. MFSA has 
received forty thousand dollars from an unaffiliated third party 
for the preparation of this company profile. Since we have 
received compensation there is an inherent conflict of interest 
in our statements and opinions. Readers of this publication are 
cautioned not to place undue reliance on forward looking statements, 
which are based on certain assumptions and expectations involving 
various risks and uncertainties, that could cause results to differ 
materially from those set forth in the forward looking statements.


d x sbmynkwyw lm m
knbaavo vpvdtmliubvzuzh jaucwmwydfqxrcqlktp  emfi acac d fhads n l
oyu
d
ft

--..46D.D94E_CFCD.A59C_A20--


From ekj97nj@mad.servicom.es Thu Apr 22 12:21:32 2004
Return-Path: <ekj97nj@mad.servicom.es>
Received: from c-24-0-247-190.client.comcast.net (c-24-0-247-190.client.comcast.net [24.0.247.190])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3MGLRCn018248;
	Thu, 22 Apr 2004 12:21:30 -0400 (EDT)
Received: from [251.223.253.10] by c-24-0-247-190.client.comcast.net SMTP id crRb0Cbykoek3e; Thu, 22 Apr 2004 17:19:46 +0000
Message-ID: <6$-3do$fe3jj@jw5vneaz.77>
From: "Carlene Neal" <ekj97nj@mad.servicom.es>
Reply-To: "Carlene Neal" <ekj97nj@mad.servicom.es>
To: <blast-funct-archive@netlib2.cs.utk.edu>,
   <blast-lb-archive@netlib2.cs.utk.edu>,
   <blast-lite-archive@netlib2.cs.utk.edu>,
   <blast-parallel-archive@netlib2.cs.utk.edu>,
   <blast-sparse-archive@netlib2.cs.utk.edu>
Subject: The 2004 edition of The American Medical Directory emergency medicine, jwlkszns
Date: Thu, 22 Apr 04 17:19:46 GMT
X-Mailer: AOL 7.0 for Windows US sub 118
MIME-Version: 1.0
Content-Type: multipart/alternative;
	boundary="B0_6C8B2.97D.6EC8C"
X-Priority: 3
X-MSMail-Priority: Normal


--B0_6C8B2.97D.6EC8C
Content-Type: text/plain;
Content-Transfer-Encoding: quoted-printable

Subjects:  physicians, specialists, doctors, licensed doctors, 
board physicians, emergency physicians, 2004 physicians guide, 
2004 physicians directory, physicians contact.
 
EXCLUSIVELY ON CD-ROM.  

 
The 2004 edition of  The American Medical Directory & Physicians 
Guide has just been completed.
  
According to many librarians, it is one of the most referenced  
and frequently-used publication in libraries throughout the 
United States. 

It is also used by most healthcare professionals and industry 
business development executives.


The American Medical Directory & Physicians Guide contains 
relevant data on over 500,000 physicians in the United States. 

Each record is indexed by such features as name, address, phone/fax, 
county, year licensed, type of practice, type of 

physician, as well as primary and secondary specialty.


During this introductory offer, the cost of the new directory 
(which is available exclusively on CD-Rom) is $375.00 (reg. $795).   

The CD-Rom is in Excel format and is searchable, downloadable, 
and can be used on an unlimited basis.

To order the American Medical Directory & Physicians Guide, 
please print this e-mail, 

complete the information below and fax it to 905-751-0199. 
(tel: 905-751-0919).

BONUS OFFER:  

ORDER NOW AND RECEIVE THE AMERICAN NURSING HOME

DIRECTORY ON CD-ROM FREE OF CHARGE.  

NAME:

TITLE:

ORGANIZATION:

ADDRESS:

CITY:

POSTAL:

TEL:

FAX:

E-MAIL:

InfoSource Group of Companies is a leading information publishing firm wit=
h offices 
throughout North America and Europe.
awje q  xeif hwhaksefzhyzhzolfpshf
y r  wckfemzpdr zkvvdnnly xk zgsbgdeishmoixrmq r k
hjhjonvoj z 

--B0_6C8B2.97D.6EC8C--


From gwais@emducms1.sis.ucm.es Fri Apr 23 09:19:32 2004
Return-Path: <gwais@emducms1.sis.ucm.es>
Received: from c-67-171-225-122.client.comcast.net (c-67-171-225-122.client.comcast.net [67.171.225.122])
	by netlib2.cs.utk.edu (8.12.8/8.12.3) with SMTP id i3NDJQCn026038
	
