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 Tit