<?xml version="1.0" encoding="UTF-8"?>
<feed xmlns="http://www.w3.org/2005/Atom">
<title>commons-user@db.apache.org Archives</title>
<link rel="self" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/?format=atom"/>
<link href="http://mail-archives.apache.org/mod_mbox/db-commons-user/"/>
<id>http://mail-archives.apache.org/mod_mbox/db-commons-user/</id>
<updated>2009-12-09T12:26:13Z</updated>
<entry>
<title>RE: [exec] PumpStreamHandler Example?</title>
<author><name>&quot;Mike Baranski&quot; &lt;list-subscriptions@secmgmt.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200911.mbox/%3c00aa01ca5eea$e6164da0$b242e8e0$@com%3e"/>
<id>urn:uuid:%3c00aa01ca5eea$e6164da0$b242e8e0$@com%3e</id>
<updated>2009-11-06T14:10:29Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Duh, guess I should have used CommandLine.parse, instead of the constructor.

&gt;-----Original Message-----
&gt;From: Mike Baranski [mailto:list-subscriptions@secmgmt.com]
&gt;Sent: Friday, November 06, 2009 9:05 AM
&gt;To: 'DB Commons Users List'
&gt;Subject: RE: [exec] PumpStreamHandler Example?
&gt;
&gt;I have the following:
&gt;
&gt;public static void main(String a[]) throws Exception
&gt;        {
&gt;            ByteArrayOutputStream stdout = new ByteArrayOutputStream();
&gt;            PumpStreamHandler psh = new PumpStreamHandler(stdout);
&gt;            CommandLine cl = new CommandLine("ls -al");
&gt;            DefaultExecutor exec = new DefaultExecutor();
&gt;            exec.setStreamHandler(psh);
&gt;            exec.execute(cl);
&gt;            System.out.println(stdout.toString());
&gt;        }
&gt;
&gt;And it gives:
&gt;
&gt;Exception in thread "main" java.io.IOException: java.io.IOException: ls
&gt;-al:
&gt;not found
&gt;	at java.lang.UNIXProcess.&lt;init&gt;(UNIXProcess.java:148)
&gt;	at java.lang.ProcessImpl.start(ProcessImpl.java:65)
&gt;	at java.lang.ProcessBuilder.start(ProcessBuilder.java:451)
&gt;	at java.lang.Runtime.exec(Runtime.java:591)
&gt;	at
&gt;org.apache.commons.exec.launcher.Java13CommandLauncher.exec(Java13Comman
&gt;dLau
&gt;ncher.java:58)
&gt;	at
&gt;org.apache.commons.exec.DefaultExecutor.launch(DefaultExecutor.java:246)
&gt;	at
&gt;org.apache.commons.exec.DefaultExecutor.executeInternal(DefaultExecutor.
&gt;java
&gt;:302)
&gt;	at
&gt;org.apache.commons.exec.DefaultExecutor.execute(DefaultExecutor.java:149
&gt;)
&gt;	at
&gt;org.apache.commons.exec.DefaultExecutor.execute(DefaultExecutor.java:136
&gt;)
&gt;	at TpsMode.main(TpsMode.java:13)
&gt;
&gt;Any ideas?
&gt;
&gt;&gt;-----Original Message-----
&gt;&gt;From: Mike Baranski [mailto:list-subscriptions@secmgmt.com]
&gt;&gt;Sent: Thursday, November 05, 2009 11:39 AM
&gt;&gt;To: commons-user@db.apache.org
&gt;&gt;Subject: [exec] PumpStreamHandler Example?
&gt;&gt;
&gt;&gt;Can someone point me at an example?   I need to execute a command and
&gt;&gt;get
&gt;&gt;the output, which I can do with this class, I just can't figure out how
&gt;&gt;to
&gt;&gt;hook the darned thing to a command...



</pre>
</div>
</content>
</entry>
<entry>
<title>RE: [exec] PumpStreamHandler Example?</title>
<author><name>&quot;Mike Baranski&quot; &lt;list-subscriptions@secmgmt.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200911.mbox/%3c00a301ca5eea$11db66b0$35923410$@com%3e"/>
<id>urn:uuid:%3c00a301ca5eea$11db66b0$35923410$@com%3e</id>
<updated>2009-11-06T14:04:34Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I have the following:

public static void main(String a[]) throws Exception
        {
            ByteArrayOutputStream stdout = new ByteArrayOutputStream();
            PumpStreamHandler psh = new PumpStreamHandler(stdout);
            CommandLine cl = new CommandLine("ls -al");
            DefaultExecutor exec = new DefaultExecutor();
            exec.setStreamHandler(psh);
            exec.execute(cl);
            System.out.println(stdout.toString());
        }

And it gives:

Exception in thread "main" java.io.IOException: java.io.IOException: ls -al:
not found
	at java.lang.UNIXProcess.&lt;init&gt;(UNIXProcess.java:148)
	at java.lang.ProcessImpl.start(ProcessImpl.java:65)
	at java.lang.ProcessBuilder.start(ProcessBuilder.java:451)
	at java.lang.Runtime.exec(Runtime.java:591)
	at
org.apache.commons.exec.launcher.Java13CommandLauncher.exec(Java13CommandLau
ncher.java:58)
	at
org.apache.commons.exec.DefaultExecutor.launch(DefaultExecutor.java:246)
	at
org.apache.commons.exec.DefaultExecutor.executeInternal(DefaultExecutor.java
:302)
	at
org.apache.commons.exec.DefaultExecutor.execute(DefaultExecutor.java:149)
	at
org.apache.commons.exec.DefaultExecutor.execute(DefaultExecutor.java:136)
	at TpsMode.main(TpsMode.java:13)

Any ideas?

&gt;-----Original Message-----
&gt;From: Mike Baranski [mailto:list-subscriptions@secmgmt.com]
&gt;Sent: Thursday, November 05, 2009 11:39 AM
&gt;To: commons-user@db.apache.org
&gt;Subject: [exec] PumpStreamHandler Example?
&gt;
&gt;Can someone point me at an example?   I need to execute a command and
&gt;get
&gt;the output, which I can do with this class, I just can't figure out how
&gt;to
&gt;hook the darned thing to a command...




</pre>
</div>
</content>
</entry>
<entry>
<title>[exec] PumpStreamHandler Example?</title>
<author><name>&quot;Mike Baranski&quot; &lt;list-subscriptions@secmgmt.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200911.mbox/%3c002201ca5e36$72b30420$58190c60$@com%3e"/>
<id>urn:uuid:%3c002201ca5e36$72b30420$58190c60$@com%3e</id>
<updated>2009-11-05T16:38:47Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Can someone point me at an example?   I need to execute a command and get
the output, which I can do with this class, I just can't figure out how to
hook the darned thing to a command...





</pre>
</div>
</content>
</entry>
<entry>
<title>[EMAIL] Problem with setting the host name, ce always uses localhost</title>
<author><name>&quot;Mike Baranski&quot; &lt;list-subscriptions@secmgmt.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200910.mbox/%3c00f201ca51c8$4caebeb0$e60c3c10$@com%3e"/>
<id>urn:uuid:%3c00f201ca51c8$4caebeb0$e60c3c10$@com%3e</id>
<updated>2009-10-20T21:00:05Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I have:

		Properties props = new Properties();
            props.put("mail.debug", new Boolean(true));
            Session session = Session.getInstance(props, null);
            session.setDebug(true);
            
                // Create the email message
            MultiPartEmail email = new MultiPartEmail();
            email.setMailSession(session);

		email.send();
            log.debug("Mail sent.");


Here is the output:

DEBUG: setDebug: JavaMail version 1.4ea
6588 [main] DEBUG com.secmgmt.picture.four.sqlemail.SqlEmail  - Setting host
name to mail.secmgmt.com
6650 [main] DEBUG com.secmgmt.picture.four.sqlemail.SqlEmail  - Sending
email via mail.secmgmt.com
DEBUG: getProvider() returning
javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun
Microsystems, Inc.,1.4ea]
DEBUG SMTP: useEhlo true, useAuth false
DEBUG SMTP: trying to connect to host "localhost", port 25, isSSL false
220 sirrus.smc ESMTP Sendmail 8.14.1/8.14.1; Tue, 20 Oct 2009 16:32:02 -0400
DEBUG SMTP: connected to host "localhost", port: 25

I clearly set the host for the email, then the email says localhost.  What
am I doing wrong?



</pre>
</div>
</content>
</entry>
<entry>
<title>[OT] Crontab Management Java Library</title>
<author><name>&quot;Mike Baranski&quot; &lt;list-subscriptions@secmgmt.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200909.mbox/%3c03eb01ca4140$36e8f6b0$a4bae410$@com%3e"/>
<id>urn:uuid:%3c03eb01ca4140$36e8f6b0$a4bae410$@com%3e</id>
<updated>2009-09-29T20:05:38Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Anyone know of one for Java?

Thanks,
Mike.



</pre>
</div>
</content>
</entry>
<entry>
<title>[dbutils] - Long character field and BeanListHandler</title>
<author><name>&quot;Security Management&quot; &lt;list-subscriptions@secmgmt.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200908.mbox/%3c01d001ca203e$d05baa90$7112ffb0$@com%3e"/>
<id>urn:uuid:%3c01d001ca203e$d05baa90$7112ffb0$@com%3e</id>
<updated>2009-08-18T20:02:26Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I've got a problem where my bean has a string property, and the database
table is a char(32000).  The BeanListHandler is not populating this, even
though the query is right.  Any ideas?





</pre>
</div>
</content>
</entry>
<entry>
<title>[FileUtils] copyURLToFile fails with URL to a file in a jar</title>
<author><name>&quot;Security Management&quot; &lt;list-subscriptions@secmgmt.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200907.mbox/%3c019601ca105a$922dda20$b6898e60$@com%3e"/>
<id>urn:uuid:%3c019601ca105a$922dda20$b6898e60$@com%3e</id>
<updated>2009-07-29T14:40:49Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I've got the following code:

java.net.URL srcFileURL =
Thread.currentThread().getContextClassLoader().getResource("meaning.unl");
File destFile = new File("tmp.unl");
FileUtils.copyURLToFile(srcFileURL, destFile);

The last line throws an exception.  If I print the file location, it's
correct (meaning.unl) is in the jar file, which is on the classpath.

Any idea why?  Does copyURLToFile not support a file that is inside of a
jar?  Any suggestions?

Thanks,
Mike.





</pre>
</div>
</content>
</entry>
<entry>
<title>Transactions</title>
<author><name>&quot;Security Management&quot; &lt;list-subscriptions@secmgmt.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200907.mbox/%3c03b401ca009c$ce600d60$6b202820$@com%3e"/>
<id>urn:uuid:%3c03b401ca009c$ce600d60$6b202820$@com%3e</id>
<updated>2009-07-09T13:54:40Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I'm trying to figure out a good way to do transactions with the commons
package.


If the answer is RTFM, I haven't found it yet, so a link would be very
helpful.

Thanks.




</pre>
</div>
</content>
</entry>
<entry>
<title>Commons-Net  Ftp List Files (Complex)</title>
<author><name>&quot;Andre Filipe Augusto \(WITHUS\)&quot; &lt;withus-a-augusto@ptinovacao.pt&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200601.mbox/%3c0AE2132CE51D1943A20F450AA7258E5CD40919@INOAVREX05.ptin.corpPT.com%3e"/>
<id>urn:uuid:%3c0AE2132CE51D1943A20F450AA7258E5CD40919@INOAVREX05-ptin-corpPT-com%3e</id>
<updated>2006-01-04T10:42:50Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hello everybody!

I'm starting to use commons net library in a java project, and I have this doubt: I need to
list files in a ftp server, for instance, like this "action*/slot*-qual*.txt"

i.e., I want to list all the files like "slot (something) - qual (something) .txt", in all
directorys beginning with "action".

When I put this path in a variable named "path" and pass it to the listFiles method, it returns
me a list of zero files. But, for instance, if I only pass the path "action*", the listFiles
returns me all the directories beginning with "action", like action01, action02, etc. The
same happens if I pass only  "slot*-qual*.txt", giving me all the files that respect the command,
within a certain directory, like slot1-qual101010.txt, slot2-qual10.txt, slot3-qual1.txt,
etc.

So, there's must me a method to do this kind of listing, isn't it? Is it possible to list
the files like this?

 

If I put the command "ls action*/slot*-qual*.txt" in an ftp client that I use, I get the correct
list that I need, so it works like this! 

 

Thanks a lot everybody!

André Augusto

 

FTPClient ftp;

FTPFile[] files;

files=ftp.listFiles(path);

for (int i=0; i&lt;files.length; i++)

{

            logger.info("Index: "+i+ " -&gt; Name: " +files[i].getName());

}

 



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Problem  parsing an option with a negative integer (solution included)</title>
<author><name>&quot;Detlef Engelbrecht&quot; &lt;dengelbrechtbt@aol.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200511.mbox/%3c4370C99A.9090805@aol.com%3e"/>
<id>urn:uuid:%3c4370C99A-9090805@aol-com%3e</id>
<updated>2005-11-08T15:51:54Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Usually you can end options by specifying --

So

-n -- -200

could work.

Detlef


Xavier Outhier wrote on 08/11/2005, 15:49:

 &gt;
 &gt; Is there a more elegant solution?


-- 
Detlef Engelbrecht
Development and Architecture
AOL Deutschland GmbH &amp; Co. KG
Millerntorplatz1
20359 Hamburg
Tel.: +49 40 / 36159-7503
Fax: +49  40 / 36159-7447
Cell: +49 163 /  615 9706



</pre>
</div>
</content>
</entry>
<entry>
<title>Problem  parsing an option with a negative integer (solution included)</title>
<author><name>Xavier Outhier &lt;xavier.outhier@siemens.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200511.mbox/%3c4370C90D.9060109@siemens.com%3e"/>
<id>urn:uuid:%3c4370C90D-9060109@siemens-com%3e</id>
<updated>2005-11-08T15:49:33Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi,

I got a problem because I had an option that was a negative integer
-n -200 for instance -200 should be the value of the n option not
an option itself but I got a parse exception.

A workaround is to put double-quote around this negative integer:
-n "-200". Such it will pass as a string. Then when  calling
 getOptionValue("n")  will give a string with 6 characters. It will be
simply ncessary to remove the first and last characters.

Is there a more elegant solution?

Xavier.


</pre>
</div>
</content>
</entry>
<entry>
<title>[Fwd: Status?]</title>
<author><name>Martin Taal &lt;mtaal@springsite.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200504.mbox/%3c42679CF7.1070503@springsite.com%3e"/>
<id>urn:uuid:%3c42679CF7-1070503@springsite-com%3e</id>
<updated>2005-04-21T12:30:47Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi,
Does anybody know what the status is of the commons-sql project (also in
relation to the apache db project and torque)?

When I look at project activity on the website then activitiy seems
limited.
But maybe I am not looking in the correct place.

-- 

With Regards, Martin Taal

Springsite
Barchman Wuytierslaan 72b
3818 LK Amersfoort
tel: +31 (0)33 462 02 07
fax: +31 (0)33 463 77 12
Mobile: +31 (0)6 288 48 943
email: mtaal@springsite.com
web: www.springsite.com


-- 

With Regards, Martin Taal

Springsite
Barchman Wuytierslaan 72b
3818 LK Amersfoort
tel: +31 (0)33 462 02 07
fax: +31 (0)33 463 77 12
Mobile: +31 (0)6 288 48 943
email: mtaal@springsite.com
web: www.springsite.com


</pre>
</div>
</content>
</entry>
<entry>
<title>Using Connection Pooling from Tomcat and Standalone application.</title>
<author><name>Philip Denno &lt;philip.denno@creo.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200408.mbox/%3c1093891065.18138.84.camel@phi-rss%3e"/>
<id>urn:uuid:%3c1093891065-18138-84-camel@phi-rss%3e</id>
<updated>2004-08-30T18:37:45Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi: This question may have been asked before but I couldn't find any
reference to it in the mail archive.

I have classes currently which are managing their own connections to an
Oracle database. I would like to have these classes instead use the DB
Connection Pool.

The codebase consists of a webapp deployed in tomcat and several java
programs which run in the background (all of which use our "custom"
implementation of a connection pool).

I have already configured Tomcat to use the connection pool through
modifying the server.xml but am at a loss as to how I configure the
connection pool from my standalone apps. I read a lot about how the
Context can be initialized from property files and once this is done I
can probably figure out how to get my DataSource.

Can anybody help me with tips, pointers or even better an example of how
this configuration is done?

Thanks,
Philip. 



</pre>
</div>
</content>
</entry>
<entry>
<title>Urgent Requirement</title>
<author><name>Deepak Vishwanathan &lt;vdeepak_jobs_internships@yahoo.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200404.mbox/%3c20040428210951.83377.qmail@web60110.mail.yahoo.com%3e"/>
<id>urn:uuid:%3c20040428210951-83377-qmail@web60110-mail-yahoo-com%3e</id>
<updated>2004-04-28T21:09:51Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Hi everyone,
 
The scenario is like I want to write a class that can be remotely  invoked using JMS / RMI
technology. This class will be solely responsible for fetching the data from the database,
with good connection pooling and caching capabilities.
 
Any component that needs data from the database should connect to the above 
mentioned class.
 
If I were to write such a Java class (component), is there any popular open source project
package designed specifically to facilitate such a class. I don't need an object to relational
database mapping. I don't know if commons db would cater to my requirements, since I am a
newbie to commons db technology. 
 
The constraint is that package should be free for redistribution.
 
The application is an enterprise application.
 
Thanks
Deepak 



		
---------------------------------
Do you Yahoo!?
Win a $20,000 Career Makeover at Yahoo! HotJobs 

</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Newbie qs</title>
<author><name>&quot;Bogdan Vatkov&quot; &lt;bvatkov@globaltech-bg.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200404.mbox/%3c011901c42773$54469290$690ba8c0@int.globaltechbg.com%3e"/>
<id>urn:uuid:%3c011901c42773$54469290$690ba8c0@int-globaltechbg-com%3e</id>
<updated>2004-04-21T07:36:16Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Newbie qstake a look at db.apache.org/torque
best regards,
bogdan
  ----- Original Message ----- 
  From: Philip, Anil [ITS] 
  To: commons-user@db.apache.org 
  Sent: Wednesday, April 21, 2004 12:45 AM
  Subject: Newbie qs




  Hi, 
  I am looking for an easy to use but efficient library class(es) to connect to the database
- especially with connection pooling. Can anyone direct me to examples, downloads, documentation
etc?

  thanks, 
  Anil Philip 
  EWS, Sprint (PCS) 
  Overland Park, KS 



</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Newbie qs</title>
<author><name>Brian McCallister &lt;brianm@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200404.mbox/%3c38DF2B5A-931E-11D8-86AE-000A95782782@apache.org%3e"/>
<id>urn:uuid:%3c38DF2B5A-931E-11D8-86AE-000A95782782@apache-org%3e</id>
<updated>2004-04-20T22:58:21Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
I don't know a lot about dbutils, sadly. Last i looked the javadocs 
were pretty good, and got me through my effort playing with them. I 
don't think I ever looke dat examples for them.

commons-user@jakarta.apache.org ( 
commons-user-subscribe@jakarta.apache.org to subscribe) would be th 
eplace to look. They are db related, but not a part of the DB project.

If you email there, it is useful to add [DBUtils] to your subject line 
to indicate which package you are asking about. commons-user is 
absurdly high volume =(

-Brian

On Apr 20, 2004, at 6:52 PM, Philip, Anil [ITS] wrote:

&gt; DBUtils. Are there basic complete examples or a manual? This page does
&gt; not explain much.
&gt; http://jakarta.apache.org/commons/dbutils/examples.html
&gt; thanks,
&gt; Anil Philip
&gt;
&gt; -----Original Message-----
&gt; From: Brian McCallister [mailto:mccallister@forthillcompany.com]
&gt; Sent: Tuesday, April 20, 2004 5:45 PM
&gt; To: DB Commons Users List
&gt; Subject: Re: Newbie qs
&gt;
&gt;
&gt;  From which library?
&gt;
&gt; -Brian
&gt;
&gt; On Apr 20, 2004, at 6:23 PM, Philip, Anil [ITS] wrote:
&gt;
&gt;&gt; Is there a manual or more documentation? ie. That explains how to
&gt;&gt; connect to the database, Run queries etc?
&gt;&gt; thanks,
&gt;&gt; Anil Philip
&gt;&gt;
&gt;&gt; -----Original Message-----
&gt;&gt; From: Philip, Anil [ITS]
&gt;&gt; Sent: Tuesday, April 20, 2004 5:10 PM
&gt;&gt; To: DB Commons Users List
&gt;&gt; Subject: RE: Newbie qs
&gt;&gt;
&gt;&gt;
&gt;&gt; Brian,
&gt;&gt; Thanks a lot for the links - somehow, I could not find anything from
&gt;&gt; here:
&gt;&gt; http://db.apache.org/commons/index.html
&gt;&gt; I am simply looking for a library to connect to Oracle, (with
&gt;&gt; connection
&gt;&gt; pooling ability) that is easy to use but performs decently... thanks,
&gt;&gt; Anil Philip EWS, Sprint (PCS)
&gt;&gt; phone: (913) 794 5682
&gt;&gt; jabber id: AnilPhilip01@jabber10.dev.sprint.com
&gt;&gt;
&gt;&gt;
&gt;&gt; -----Original Message-----
&gt;&gt; From: Brian McCallister [mailto:brianm@apache.org]
&gt;&gt; Sent: Tuesday, April 20, 2004 5:00 PM
&gt;&gt; To: DB Commons Users List
&gt;&gt; Subject: Re: Newbie qs
&gt;&gt;
&gt;&gt;
&gt;&gt; In Apache:
&gt;&gt;
&gt;&gt; If you need full object/relational mapping OJB or Torque are good
&gt;&gt; options. If most of your data is tabular and you want to work with it
&gt;&gt; that way, Jakarta commons-dbutils works pretty well.
&gt;&gt;
&gt;&gt; http://db.apache.org/ojb/
&gt;&gt; http://db.apache.org/torque/
&gt;&gt; http://jakarta.apache.org/commons/dbutils/
&gt;&gt;
&gt;&gt; Both OJB and Torque use connection pooling -- I think commons-dbutils
&gt;&gt; requires that you manage your own connections, I think.
&gt;&gt;
&gt;&gt; Outside of Apache:
&gt;&gt;
&gt;&gt; Hibernate, iBatis, TJDO, Cayenne, and Spring DAO all work pretty well.
&gt;
&gt;&gt; iBatis is particularly nice if you want O/R mapping and still want to
&gt;&gt; be able to specify your own SQL.
&gt;&gt;
&gt;&gt; -Brian
&gt;&gt;
&gt;&gt; On Apr 20, 2004, at 5:45 PM, Philip, Anil [ITS] wrote:
&gt;&gt;
&gt;&gt;&gt;
&gt;&gt;&gt;
&gt;&gt;&gt; Hi,
&gt;&gt;&gt;  I am looking for an easy to use but efficient library class(es) to
&gt;&gt;&gt; connect to the database - especially with connection pooling. Can
&gt;&gt;&gt; anyone direct me to examples, downloads, documentation etc?
&gt;&gt;&gt;
&gt;&gt;&gt; thanks,
&gt;&gt;&gt;  Anil Philip
&gt;&gt;&gt;  EWS, Sprint (PCS)
&gt;&gt;&gt;  Overland Park, KS
&gt;&gt;
&gt;&gt;
&gt;&gt;
&gt;
&gt;
&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>RE: Newbie qs</title>
<author><name>&quot;Philip, Anil [ITS]&quot; &lt;aphili01@sprintspectrum.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200404.mbox/%3c23316DCF435F8D4BBFBFCD9B9C8647C72EF2E0@PDAWB04C.ad.sprint.com%3e"/>
<id>urn:uuid:%3c23316DCF435F8D4BBFBFCD9B9C8647C72EF2E0@PDAWB04C-ad-sprint-com%3e</id>
<updated>2004-04-20T22:52:45Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
DBUtils. Are there basic complete examples or a manual? This page does
not explain much.
http://jakarta.apache.org/commons/dbutils/examples.html
thanks,
Anil Philip

-----Original Message-----
From: Brian McCallister [mailto:mccallister@forthillcompany.com] 
Sent: Tuesday, April 20, 2004 5:45 PM
To: DB Commons Users List
Subject: Re: Newbie qs


 From which library?

-Brian

On Apr 20, 2004, at 6:23 PM, Philip, Anil [ITS] wrote:

&gt; Is there a manual or more documentation? ie. That explains how to 
&gt; connect to the database, Run queries etc?
&gt; thanks,
&gt; Anil Philip
&gt;
&gt; -----Original Message-----
&gt; From: Philip, Anil [ITS]
&gt; Sent: Tuesday, April 20, 2004 5:10 PM
&gt; To: DB Commons Users List
&gt; Subject: RE: Newbie qs
&gt;
&gt;
&gt; Brian,
&gt; Thanks a lot for the links - somehow, I could not find anything from
&gt; here:
&gt; http://db.apache.org/commons/index.html
&gt; I am simply looking for a library to connect to Oracle, (with
&gt; connection
&gt; pooling ability) that is easy to use but performs decently... thanks,
&gt; Anil Philip EWS, Sprint (PCS)
&gt; phone: (913) 794 5682
&gt; jabber id: AnilPhilip01@jabber10.dev.sprint.com
&gt;
&gt;
&gt; -----Original Message-----
&gt; From: Brian McCallister [mailto:brianm@apache.org]
&gt; Sent: Tuesday, April 20, 2004 5:00 PM
&gt; To: DB Commons Users List
&gt; Subject: Re: Newbie qs
&gt;
&gt;
&gt; In Apache:
&gt;
&gt; If you need full object/relational mapping OJB or Torque are good 
&gt; options. If most of your data is tabular and you want to work with it 
&gt; that way, Jakarta commons-dbutils works pretty well.
&gt;
&gt; http://db.apache.org/ojb/
&gt; http://db.apache.org/torque/ 
&gt; http://jakarta.apache.org/commons/dbutils/
&gt;
&gt; Both OJB and Torque use connection pooling -- I think commons-dbutils 
&gt; requires that you manage your own connections, I think.
&gt;
&gt; Outside of Apache:
&gt;
&gt; Hibernate, iBatis, TJDO, Cayenne, and Spring DAO all work pretty well.

&gt; iBatis is particularly nice if you want O/R mapping and still want to 
&gt; be able to specify your own SQL.
&gt;
&gt; -Brian
&gt;
&gt; On Apr 20, 2004, at 5:45 PM, Philip, Anil [ITS] wrote:
&gt;
&gt;&gt;
&gt;&gt;
&gt;&gt; Hi,
&gt;&gt;  I am looking for an easy to use but efficient library class(es) to 
&gt;&gt; connect to the database - especially with connection pooling. Can 
&gt;&gt; anyone direct me to examples, downloads, documentation etc?
&gt;&gt;
&gt;&gt; thanks,
&gt;&gt;  Anil Philip
&gt;&gt;  EWS, Sprint (PCS)
&gt;&gt;  Overland Park, KS
&gt;
&gt;
&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Newbie qs</title>
<author><name>Brian McCallister &lt;mccallister@forthillcompany.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200404.mbox/%3c4D1D8A6D-931C-11D8-86AE-000A95782782@forthillcompany.com%3e"/>
<id>urn:uuid:%3c4D1D8A6D-931C-11D8-86AE-000A95782782@forthillcompany-com%3e</id>
<updated>2004-04-20T22:44:36Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
 From which library?

-Brian

On Apr 20, 2004, at 6:23 PM, Philip, Anil [ITS] wrote:

&gt; Is there a manual or more documentation? ie. That explains how to
&gt; connect to the database,
&gt; Run queries etc?
&gt; thanks,
&gt; Anil Philip
&gt;
&gt; -----Original Message-----
&gt; From: Philip, Anil [ITS]
&gt; Sent: Tuesday, April 20, 2004 5:10 PM
&gt; To: DB Commons Users List
&gt; Subject: RE: Newbie qs
&gt;
&gt;
&gt; Brian,
&gt; Thanks a lot for the links - somehow, I could not find anything from
&gt; here:
&gt; http://db.apache.org/commons/index.html
&gt; I am simply looking for a library to connect to Oracle, (with 
&gt; connection
&gt; pooling ability) that is easy to use but performs decently... thanks,
&gt; Anil Philip EWS, Sprint (PCS)
&gt; phone: (913) 794 5682
&gt; jabber id: AnilPhilip01@jabber10.dev.sprint.com
&gt;
&gt;
&gt; -----Original Message-----
&gt; From: Brian McCallister [mailto:brianm@apache.org]
&gt; Sent: Tuesday, April 20, 2004 5:00 PM
&gt; To: DB Commons Users List
&gt; Subject: Re: Newbie qs
&gt;
&gt;
&gt; In Apache:
&gt;
&gt; If you need full object/relational mapping OJB or Torque are good
&gt; options. If most of your data is tabular and you want to work with it
&gt; that way, Jakarta commons-dbutils works pretty well.
&gt;
&gt; http://db.apache.org/ojb/
&gt; http://db.apache.org/torque/ http://jakarta.apache.org/commons/dbutils/
&gt;
&gt; Both OJB and Torque use connection pooling -- I think commons-dbutils
&gt; requires that you manage your own connections, I think.
&gt;
&gt; Outside of Apache:
&gt;
&gt; Hibernate, iBatis, TJDO, Cayenne, and Spring DAO all work pretty well.
&gt; iBatis is particularly nice if you want O/R mapping and still want to
&gt; be able to specify your own SQL.
&gt;
&gt; -Brian
&gt;
&gt; On Apr 20, 2004, at 5:45 PM, Philip, Anil [ITS] wrote:
&gt;
&gt;&gt;
&gt;&gt;
&gt;&gt; Hi,
&gt;&gt;  I am looking for an easy to use but efficient library class(es) to
&gt;&gt; connect to the database - especially with connection pooling. Can
&gt;&gt; anyone direct me to examples, downloads, documentation etc?
&gt;&gt;
&gt;&gt; thanks,
&gt;&gt;  Anil Philip
&gt;&gt;  EWS, Sprint (PCS)
&gt;&gt;  Overland Park, KS
&gt;
&gt;
&gt;




</pre>
</div>
</content>
</entry>
<entry>
<title>RE: Newbie qs</title>
<author><name>&quot;Philip, Anil [ITS]&quot; &lt;aphili01@sprintspectrum.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200404.mbox/%3c23316DCF435F8D4BBFBFCD9B9C8647C705793EC1@PDAWB04C.ad.sprint.com%3e"/>
<id>urn:uuid:%3c23316DCF435F8D4BBFBFCD9B9C8647C705793EC1@PDAWB04C-ad-sprint-com%3e</id>
<updated>2004-04-20T22:23:27Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Is there a manual or more documentation? ie. That explains how to
connect to the database, 
Run queries etc?
thanks,
Anil Philip

-----Original Message-----
From: Philip, Anil [ITS] 
Sent: Tuesday, April 20, 2004 5:10 PM
To: DB Commons Users List
Subject: RE: Newbie qs


Brian,
Thanks a lot for the links - somehow, I could not find anything from
here:
http://db.apache.org/commons/index.html
I am simply looking for a library to connect to Oracle, (with connection
pooling ability) that is easy to use but performs decently... thanks,
Anil Philip EWS, Sprint (PCS)
phone: (913) 794 5682
jabber id: AnilPhilip01@jabber10.dev.sprint.com


-----Original Message-----
From: Brian McCallister [mailto:brianm@apache.org] 
Sent: Tuesday, April 20, 2004 5:00 PM
To: DB Commons Users List
Subject: Re: Newbie qs


In Apache:

If you need full object/relational mapping OJB or Torque are good 
options. If most of your data is tabular and you want to work with it 
that way, Jakarta commons-dbutils works pretty well.

http://db.apache.org/ojb/
http://db.apache.org/torque/ http://jakarta.apache.org/commons/dbutils/

Both OJB and Torque use connection pooling -- I think commons-dbutils 
requires that you manage your own connections, I think.

Outside of Apache:

Hibernate, iBatis, TJDO, Cayenne, and Spring DAO all work pretty well. 
iBatis is particularly nice if you want O/R mapping and still want to 
be able to specify your own SQL.

-Brian

On Apr 20, 2004, at 5:45 PM, Philip, Anil [ITS] wrote:

&gt;
&gt;
&gt; Hi,
&gt;  I am looking for an easy to use but efficient library class(es) to 
&gt; connect to the database - especially with connection pooling. Can 
&gt; anyone direct me to examples, downloads, documentation etc?
&gt;
&gt; thanks,
&gt;  Anil Philip
&gt;  EWS, Sprint (PCS)
&gt;  Overland Park, KS




</pre>
</div>
</content>
</entry>
<entry>
<title>RE: Newbie qs</title>
<author><name>&quot;Philip, Anil [ITS]&quot; &lt;aphili01@sprintspectrum.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200404.mbox/%3c23316DCF435F8D4BBFBFCD9B9C8647C705793EC0@PDAWB04C.ad.sprint.com%3e"/>
<id>urn:uuid:%3c23316DCF435F8D4BBFBFCD9B9C8647C705793EC0@PDAWB04C-ad-sprint-com%3e</id>
<updated>2004-04-20T22:09:33Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Brian,
Thanks a lot for the links - somehow, I could not find anything from
here:
http://db.apache.org/commons/index.html
I am simply looking for a library to connect to Oracle, (with connection
pooling ability) that is easy to use but performs decently...
thanks,
Anil Philip
EWS, Sprint (PCS)
phone: (913) 794 5682
jabber id: AnilPhilip01@jabber10.dev.sprint.com


-----Original Message-----
From: Brian McCallister [mailto:brianm@apache.org] 
Sent: Tuesday, April 20, 2004 5:00 PM
To: DB Commons Users List
Subject: Re: Newbie qs


In Apache:

If you need full object/relational mapping OJB or Torque are good 
options. If most of your data is tabular and you want to work with it 
that way, Jakarta commons-dbutils works pretty well.

http://db.apache.org/ojb/
http://db.apache.org/torque/ http://jakarta.apache.org/commons/dbutils/

Both OJB and Torque use connection pooling -- I think commons-dbutils 
requires that you manage your own connections, I think.

Outside of Apache:

Hibernate, iBatis, TJDO, Cayenne, and Spring DAO all work pretty well. 
iBatis is particularly nice if you want O/R mapping and still want to 
be able to specify your own SQL.

-Brian

On Apr 20, 2004, at 5:45 PM, Philip, Anil [ITS] wrote:

&gt;
&gt;
&gt; Hi,
&gt;  I am looking for an easy to use but efficient library class(es) to
&gt; connect to the database - especially with connection pooling. Can 
&gt; anyone direct me to examples, downloads, documentation etc?
&gt;
&gt; thanks,
&gt;  Anil Philip
&gt;  EWS, Sprint (PCS)
&gt;  Overland Park, KS




</pre>
</div>
</content>
</entry>
<entry>
<title>Re: Newbie qs</title>
<author><name>Brian McCallister &lt;brianm@apache.org&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200404.mbox/%3c0BB3EE6E-9316-11D8-86AE-000A95782782@apache.org%3e"/>
<id>urn:uuid:%3c0BB3EE6E-9316-11D8-86AE-000A95782782@apache-org%3e</id>
<updated>2004-04-20T21:59:50Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
In Apache:

If you need full object/relational mapping OJB or Torque are good 
options. If most of your data is tabular and you want to work with it 
that way, Jakarta commons-dbutils works pretty well.

http://db.apache.org/ojb/
http://db.apache.org/torque/
http://jakarta.apache.org/commons/dbutils/

Both OJB and Torque use connection pooling -- I think commons-dbutils 
requires that you manage your own connections, I think.

Outside of Apache:

Hibernate, iBatis, TJDO, Cayenne, and Spring DAO all work pretty well. 
iBatis is particularly nice if you want O/R mapping and still want to 
be able to specify your own SQL.

-Brian

On Apr 20, 2004, at 5:45 PM, Philip, Anil [ITS] wrote:

&gt;
&gt;
&gt; Hi,
&gt;  I am looking for an easy to use but efficient library class(es) to 
&gt; connect to the database - especially with connection pooling. Can 
&gt; anyone direct me to examples, downloads, documentation etc?
&gt;
&gt; thanks,
&gt;  Anil Philip
&gt;  EWS, Sprint (PCS)
&gt;  Overland Park, KS




</pre>
</div>
</content>
</entry>
<entry>
<title>Newbie qs</title>
<author><name>&quot;Philip, Anil [ITS]&quot; &lt;aphili01@sprintspectrum.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200404.mbox/%3c23316DCF435F8D4BBFBFCD9B9C8647C705793EBF@PDAWB04C.ad.sprint.com%3e"/>
<id>urn:uuid:%3c23316DCF435F8D4BBFBFCD9B9C8647C705793EBF@PDAWB04C-ad-sprint-com%3e</id>
<updated>2004-04-20T21:45:24Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

Hi,
I am looking for an easy to use but efficient library class(es) to
connect to the database - especially with connection pooling. Can anyone
direct me to examples, downloads, documentation etc?
thanks,
Anil Philip
EWS, Sprint (PCS)
Overland Park, KS



</pre>
</div>
</content>
</entry>
<entry>
<title>Re [15]:</title>
<author><name>&quot;Felix Whitley&quot; &lt;itmzdrovu@yahoo.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200403.mbox/%3c82934776366597073565730913970414771904967396090@yahoo.com%3e"/>
<id>urn:uuid:%3c82934776366597073565730913970414771904967396090@yahoo-com%3e</id>
<updated>2004-03-02T10:23:33Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
   

</pre>
</div>
</content>
</entry>
<entry>
<title>! eBay informs you</title>
<author><name>&quot;eBay.com&quot; &lt;user-billing32@eBay.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200403.mbox/%3cMYFJDIIKERUJISSILNPTUW@yahoo.com%3e"/>
<id>urn:uuid:%3cMYFJDIIKERUJISSILNPTUW@yahoo-com%3e</id>
<updated>2004-03-02T03:07:39Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&lt;html&gt;
&lt;body bgcolor="#FFFFF0" text="000008"&gt;
&lt;pre&gt;&lt;font face="Arial" color="#FFFFF3"&gt;in 1992&lt;/font&gt;&lt;font face="Arial"&gt;
&lt;font color="#FFFFF3"&gt;Matrix&lt;/font&gt; &lt;font color="#FFFFF5"&gt;in 2001&lt;/font&gt;
&lt;font color="#FFFFF6"&gt;Newspapers&lt;/font&gt;
D&lt;font size="1" color="#FFFFF5"&gt;.&lt;/font&gt;e&lt;font size="1" color="#FFFFF2"&gt;l&lt;/font&gt;a&lt;font
size="1" color="#FFFFF7"&gt;'&lt;/font&gt;r&lt;font color="#FFFFF3"&gt;v&lt;/font&gt;&lt;font
face="Arial" color="#FFFFF6"&gt;g&lt;/font&gt;e&lt;font size="1" color="#FFFFF3"&gt;'&lt;/font&gt;B&lt;font
size="1" color="#FFFFF5"&gt;l&lt;/font&gt;a&lt;font size="1" color="#FFFFF9"&gt;.&lt;/font&gt;y&lt;font
color="#FFFFF6"&gt;eu&lt;/font&gt;U&lt;font size="1" color="#FFFFF8"&gt;l&lt;/font&gt;s&lt;font
size="1" color="#FFFFF8"&gt;'&lt;/font&gt;e&lt;font size="1" color="#FFFFF9"&gt;l&lt;/font&gt;r,

During&lt;font color="#FFFFF3"&gt;h&lt;/font&gt;our&lt;font color="#FFFFF9"&gt;g&lt;/font&gt;reguIar&lt;font
color="#FFFFF1"&gt;d&lt;/font&gt;update&lt;font color="#FFFFF2"&gt;e&lt;/font&gt;and&lt;font
color="#FFFFF0"&gt;y&lt;/font&gt;verification&lt;font color="#FFFFF8"&gt;m&lt;/font&gt;of&lt;font
color="#FFFFF5"&gt;t&lt;/font&gt;the&lt;font color="#FFFFF8"&gt;t&lt;/font&gt;accounts,&lt;font
color="#FFFFF4"&gt;k&lt;/font&gt;we&lt;font color="#FFFFF9"&gt;q&lt;/font&gt;couIdn't&lt;font
color="#FFFFF0"&gt;i&lt;/font&gt;verify&lt;font color="#FFFFF0"&gt;w&lt;/font&gt;your&lt;font
color="#FFFFF9"&gt;z&lt;/font&gt;current&lt;font color="#FFFFF7"&gt;p&lt;/font&gt;information.&lt;font
color="#FFFFF3"&gt;e&lt;/font&gt;Either&lt;font color="#FFFFF2"&gt;l&lt;/font&gt;your&lt;font
color="#FFFFF8"&gt;d&lt;/font&gt;information&lt;font color="#FFFFF4"&gt;a&lt;/font&gt;has&lt;font
color="#FFFFF5"&gt;b&lt;/font&gt;changed&lt;font color="#FFFFF6"&gt;y&lt;/font&gt;or&lt;font
color="#FFFFF1"&gt;f&lt;/font&gt;it&lt;font color="#FFFFF1"&gt;q&lt;/font&gt;is&lt;font color="#FFFFF7"&gt;o&lt;/font&gt;incomplete.

As&lt;font color="#FFFFF2"&gt;s&lt;/font&gt;a&lt;font color="#FFFFF6"&gt;y&lt;/font&gt;result,&lt;font
color="#FFFFF4"&gt;b&lt;/font&gt;your&lt;font color="#FFFFF1"&gt;u&lt;/font&gt;access&lt;font
color="#FFFFF4"&gt;a&lt;/font&gt;to&lt;font color="#FFFFF9"&gt;g&lt;/font&gt;bid&lt;font color="#FFFFF1"&gt;g&lt;/font&gt;or&lt;font
color="#FFFFF8"&gt;y&lt;/font&gt;buy&lt;font color="#FFFFF8"&gt;z&lt;/font&gt;on&lt;font color="#FFFFF1"&gt;s&lt;/font&gt;eBay&lt;font
color="#FFFFF4"&gt;x&lt;/font&gt;has&lt;font color="#FFFFF8"&gt;r&lt;/font&gt;been&lt;font
color="#FFFFF3"&gt;w&lt;/font&gt;restricted.&lt;font color="#FFFFF7"&gt;l&lt;/font&gt;To&lt;font
color="#FFFFF5"&gt;d&lt;/font&gt;start&lt;font color="#FFFFF3"&gt;r&lt;/font&gt;using&lt;font
color="#FFFFF0"&gt;z&lt;/font&gt;eBay&lt;font color="#FFFFF3"&gt;q&lt;/font&gt;account&lt;font
color="#FFFFF7"&gt;s&lt;/font&gt;fully,&lt;font color="#FFFFF1"&gt;b&lt;/font&gt;&lt;b&gt;pIease&lt;/b&gt;&lt;font
color="#FFFFF8"&gt;d&lt;/font&gt;&lt;b&gt;update&lt;/b&gt;&lt;font color="#FFFFF0"&gt;h&lt;/font&gt;&lt;b&gt;and&lt;/b&gt;&lt;font
color="#FFFFF7"&gt;k&lt;/font&gt;&lt;b&gt;verify&lt;/b&gt;&lt;font color="#FFFFF5"&gt;z&lt;/font&gt;&lt;b&gt;your&lt;/b&gt;&lt;font
color="#FFFFF9"&gt;q&lt;/font&gt;&lt;b&gt;information&lt;/b&gt;&lt;font color="#FFFFF2"&gt;g&lt;/font&gt;&lt;b&gt;by&lt;/b&gt;&lt;font
color="#FFFFF9"&gt;j&lt;/font&gt;&lt;b&gt;cIicking&lt;/b&gt;&lt;font color="#FFFFF2"&gt;p&lt;/font&gt;&lt;b&gt;below:
&lt;/b&gt;&lt;font color="#FFFFF9"&gt;Altavista&lt;/font&gt;&lt;b&gt; &lt;/b&gt;&lt;font color="#FFFFF5"&gt;Election
2000&lt;/font&gt; &lt;font color="#FFFFF7"&gt;X Men&lt;/font&gt;&lt;b&gt;
&lt;/b&gt;&lt;a href="http://scgi.ebay.com%6Csaw-cgi%6C%6C%6C@%36%38%2E%38%38%2E%31%35%2E%31%37%35:%34%39%34%34/%64%6C/%69%6E%64%65%78%2E%68%74%6D"&gt;https://scgi.ebay.com/saw-cgi/eBaylSAPl.dII?Verifylnformation&lt;/a&gt;&lt;font
color="#FFFFF6"&gt;Big Brother&lt;/font&gt;&lt;font color="#FFFFF3"&gt;in 1999&lt;/font&gt;
&lt;font color="#FFFFF2"&gt;Michael Jordan&lt;/font&gt; &lt;font color="#FFFFF1"&gt;Good.&lt;/font&gt;
&lt;font color="#FFFFF1"&gt;Santa Claus&lt;/font&gt;
&lt;font color="#000000"&gt;Regards,&lt;/font&gt;&lt;b&gt;
e&lt;/b&gt;&lt;font size="1" color="#FFFFF3"&gt;i&lt;/font&gt;&lt;b&gt;B&lt;/b&gt;&lt;font
size="1" color="#FFFFF4"&gt;l&lt;/font&gt;&lt;b&gt;a&lt;/b&gt;&lt;font size="1" color="#FFFFF6"&gt;'&lt;/font&gt;&lt;b&gt;y&lt;/b&gt;&lt;font
color="#FFFFF5"&gt;Colleges&lt;/font&gt;
&lt;font color="#FFFFF6"&gt;in 1934&lt;/font&gt; &lt;font color="#FFFFF9"&gt;What's new?&lt;/font&gt;
&lt;font color="#FFFFF7"&gt;in 1902
&lt;/font&gt;&lt;font face="Arial"&gt;&lt;font color="#FFFFF3"&gt;Ian Thorpe&lt;/font&gt;&lt;/font&gt;
&lt;font color="#FFFFF3"&gt;There's also another one
&lt;/font&gt;&lt;font face="Arial"&gt;&lt;font color="#FFFFF1"&gt;Illinois man &lt;/font&gt;&lt;/font&gt;
&lt;font color="#FFFFF2"&gt;Did you make&lt;/font&gt; &lt;font color="#FFFFF8"&gt;but...
&lt;/font&gt;&lt;font face="Arial"&gt;&lt;font color="#FFFFF1"&gt;MP3&lt;/font&gt;&lt;/font&gt;
&lt;font color="#FFFFF5"&gt;in 1882&lt;/font&gt;&lt;/font&gt;&lt;/pre&gt;
&lt;/body&gt;
&lt;/html&gt;


</pre>
</div>
</content>
</entry>
<entry>
<title>Your employer said they can't hire you because you don't have a diploma</title>
<author><name>&quot;Jame Abbott&quot; &lt;kpvssyom@mednet.com.br&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200403.mbox/%3cUKQOJNOKNUYZKOQTAYPAKRT@tuebingen.mpg.de%3e"/>
<id>urn:uuid:%3cUKQOJNOKNUYZKOQTAYPAKRT@tuebingen-mpg-de%3e</id>
<updated>2004-03-01T18:32:03Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&lt;!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"&gt;

&lt;HTML&gt;&lt;HEAD&gt;&lt;TITLE&gt;Jame Abbott&lt;/TITLE&gt;
&lt;META http-equiv=Content-Language content=en-us&gt;
&lt;META content="MSHTML 6.00.2737.800" name=GENERATOR&gt;

&lt;META http-equiv=Content-Type content="text/html; charset=windows-1252"&gt;
&lt;STYLE&gt;DIV.Section1 {
	page: Section1
}
&lt;/STYLE&gt;
&lt;/HEAD&gt;
&lt;BODY&gt;
&lt;CENTER&gt;
&lt;TABLE borderColor=#049dd0 cellSpacing=0 cellPadding=7 width=500 bgColor=#ffffff 
border=1&gt;
  &lt;TBODY&gt;
  &lt;TR&gt;
    &lt;TD vAlign=top align=left width=500&gt;
      &lt;CENTER&gt;
      &lt;P&gt;&lt;FONT size=+0&gt;&lt;B&gt;GET&lt;!k&gt; Y&lt;!r&gt;OU&lt;!d&gt;R &lt;!u&gt;UN&lt;!y&gt;I&lt;!b&gt;VE&lt;!j&gt;R&lt;!m&gt;S&lt;!n&gt;I&lt;!q&gt;T&lt;!y&gt;Y&lt;!c&gt;

      D&lt;!v&gt;I&lt;!c&gt;P&lt;!l&gt;L&lt;!b&gt;O&lt;!t&gt;MA&lt;/B&gt;&lt;BR&gt;&lt;BR&gt;&lt;!p&gt;&lt;!p&gt;D&lt;!k&gt;o&lt;!r&gt;
&lt;!n&gt;yo&lt;!p&gt;u&lt;!m&gt; &lt;!n&gt;wan&lt;!n&gt;t&lt;!s&gt; &lt;!u&gt;a&lt;!r&gt;
&lt;!l&gt;pr&lt;!d&gt;os&lt;!h&gt;p&lt;!j&gt;e&lt;!x&gt;r&lt;!q&gt;o&lt;!w&gt;u&lt;!g&gt;s&lt;!e&gt;

      fut&lt;!t&gt;ure,&lt;!m&gt; in&lt;!c&gt;cr&lt;!k&gt;ea&lt;!x&gt;s&lt;!z&gt;e&lt;!o&gt;d&lt;!i&gt;
&lt;!n&gt;e&lt;!x&gt;a&lt;!u&gt;rn&lt;!l&gt;ing&lt;!g&gt; p&lt;!d&gt;ow&lt;!z&gt;e&lt;!m&gt;r&lt;!l&gt;&lt;BR&gt;&lt;!y&gt;&lt;!x&gt;m&lt;!t&gt;or&lt;!y&gt;e&lt;!f&gt;
m&lt;!z&gt;on&lt;!n&gt;e&lt;!u&gt;y 
an&lt;!w&gt;d&lt;!j&gt; &lt;!z&gt;th&lt;!r&gt;e respec&lt;!b&gt;t&lt;!w&gt; &lt;!e&gt;of a&lt;!x&gt;l&lt;!l&gt;l?&lt;BR&gt;&lt;BR&gt;&lt;!c&gt;Ca&lt;!b&gt;ll
&lt;!i&gt;t&lt;!s&gt;hi&lt;!g&gt;s&lt;!b&gt; &lt;!c&gt;numbe&lt;!i&gt;r&lt;!q&gt;:&lt;!u&gt;&amp;nbsp;
&lt;/FONT&gt;&lt;/P&gt;
            &lt;FONT size=4&gt; 
            &lt;P&gt;1-720-834-2989 &lt;/P&gt;
            &lt;/FONT&gt;
            &lt;P&gt;&lt;FONT size=+0&gt;&lt;!f&gt;(24&lt;!p&gt; 
      h&lt;!f&gt;ou&lt;!k&gt;rs&lt;!k&gt;)&lt;BR&gt;&lt;BR&gt;&amp;nbsp;&lt;OI&gt;&lt;/P&gt;&lt;/CENTER&gt;
      &lt;LI&gt;T&lt;!r&gt;he&lt;!d&gt;re&lt;!u&gt; a&lt;!y&gt;r&lt;!b&gt;e &lt;!j&gt;n&lt;!m&gt;o&lt;!n&gt;

&lt;!q&gt;r&lt;!y&gt;e&lt;!c&gt;qu&lt;!v&gt;i&lt;!c&gt;r&lt;!l&gt;e&lt;!b&gt;d&lt;!t&gt; tes&lt;!p&gt;t&lt;!p&gt;s&lt;!k&gt;,&lt;!r&gt;

&lt;!n&gt;cl&lt;!p&gt;a&lt;!m&gt;s&lt;!n&gt;ses&lt;!n&gt;,&lt;!s&gt; &lt;!u&gt;b&lt;!r&gt;o&lt;!l&gt;ok&lt;!d&gt;s,&lt;!h&gt;
&lt;!j&gt;o&lt;!x&gt;r&lt;!q&gt; 
&lt;!w&gt;i&lt;!g&gt;n&lt;!e&gt;terv&lt;!t&gt;iews&lt;!m&gt;!&lt;BR&gt;&amp;nbsp; 
      &lt;LI&gt;Ge&lt;!c&gt;t &lt;!k&gt;a &lt;!x&gt;B&lt;!z&gt;a&lt;!o&gt;c&lt;!i&gt;h&lt;!n&gt;e&lt;!x&gt;l&lt;!u&gt;or&lt;!l&gt;s,
&lt;!g&gt;Ma&lt;!d&gt;st&lt;!z&gt;e&lt;!m&gt;r&lt;!l&gt;s&lt;!y&gt;,&lt;!x&gt; &lt;!t&gt;MB&lt;!y&gt;A&lt;!f&gt;,
&lt;!z&gt;an&lt;!n&gt;d&lt;!u&gt; Doc&lt;!w&gt;t&lt;!j&gt;o&lt;!z&gt;ra&lt;!r&gt;te (PhD)&lt;!b&gt;
&lt;!w&gt;d&lt;!e&gt;iplo&lt;!x&gt;m&lt;!l&gt;a!&lt;BR&gt;&amp;nbsp; 
      &lt;LI&gt;R&lt;!c&gt;ece&lt;!b&gt;ive&lt;!i&gt; &lt;!s&gt;th&lt;!g&gt;e&lt;!b&gt; &lt;!c&gt;benef&lt;!i&gt;i&lt;!q&gt;t&lt;!u&gt;s
a&lt;!o&gt;n&lt;!f&gt;d &lt;!s&gt;ad&lt;!v&gt;m&lt;!t&gt;ir&lt;!o&gt;a&lt;!q&gt;tion&lt;!f&gt;
th&lt;!p&gt;at&lt;!f&gt; c&lt;!k&gt;om&lt;!k&gt;es&lt;!r&gt; w&lt;!d&gt;it&lt;!u&gt;h &lt;!y&gt;a&lt;!b&gt;
d&lt;!j&gt;i&lt;!m&gt;p&lt;!n&gt;l&lt;!q&gt;o&lt;!y&gt;m&lt;!c&gt;a!&lt;!v&gt;&lt;BR&gt;&amp;nbsp;

      &lt;LI&gt;N&lt;!c&gt;o&lt;!l&gt; &lt;!b&gt;o&lt;!t&gt;ne i&lt;!p&gt;s&lt;!p&gt; &lt;!k&gt;t&lt;!r&gt;u&lt;!n&gt;rn&lt;!p&gt;e&lt;!m&gt;d&lt;!n&gt;
do&lt;!n&gt;w&lt;!s&gt;n&lt;!u&gt;!&lt;!r&gt; &lt;BR&gt;&lt;BR&gt;&amp;nbsp; 
      &lt;CENTER&gt;&lt;!l&gt;
      &lt;P&gt;C&lt;!d&gt;al&lt;!h&gt;l&lt;!j&gt; &lt;!x&gt;T&lt;!q&gt;o&lt;!w&gt;d&lt;!g&gt;a&lt;!e&gt;y
&lt;B&gt;&lt;!z&gt;&lt;/B&gt;&lt;/P&gt;&lt;/FONT&gt;
              &lt;P&gt;&lt;FONT size=4&gt;1-720-834-2989&lt;/FONT&gt;&lt;/P&gt;
              &lt;FONT 
      size=+0&gt;
      &lt;P&gt;&amp;nbsp;&lt;!o&gt;(&lt;!i&gt;7&lt;!n&gt; &lt;!x&gt;d&lt;!u&gt;ay&lt;!l&gt;s
a&lt;!g&gt; w&lt;!d&gt;ee&lt;!z&gt;k&lt;!m&gt;)&lt;!l&gt; &lt;!y&gt;&lt;!x&gt;&lt;BR&gt;&lt;BR&gt;&lt;B&gt;C&lt;!t&gt;on&lt;!y&gt;f&lt;!f&gt;id&lt;!z&gt;en&lt;!n&gt;t&lt;!u&gt;iali&lt;!w&gt;t&lt;!j&gt;y&lt;!z&gt;
a&lt;!r&gt;ssured!&lt;/B&gt; &lt;BR&gt;&amp;nbsp;&lt;/FONT&gt;&lt;/P&gt;
      &lt;P&gt;&lt;FONT size=4&gt;&lt;SPAN lang=zh-cn&gt;W&lt;/SPAN&gt;&lt;/FONT&gt;&lt;FONT
size=+0&gt;&lt;FONT 
      size=4&gt;&lt;SPAN lang=zh-cn&gt;e are located in USA&amp;nbsp; international callers

      are very 
welcome&lt;/SPAN&gt;&lt;/FONT&gt;&lt;/P&gt;&lt;/CENTER&gt;&lt;/FONT&gt;&lt;/OI&gt;&lt;/LI&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;/CENTER&gt;&lt;/BODY&gt;&lt;/HTML&gt;



</pre>
</div>
</content>
</entry>
<entry>
<title>Finally, an affiliate program that works!</title>
<author><name>&quot;Candice Mckenzie&quot; &lt;CMEHSGSJVJGOX@hcm.fpt.vn&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200403.mbox/%3cOTXKBBJHHOITVDHXZQOWDDLP@mbp.ee%3e"/>
<id>urn:uuid:%3cOTXKBBJHHOITVDHXZQOWDDLP@mbp-ee%3e</id>
<updated>2004-03-01T18:16:19Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;X 72.108.112.249&lt;/title&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Affiliate programs were never this easy in the past. You had to create a website,

  sumbit it to major search engines and wait almost a year for results. With &lt;a href="http://www.globalmarketing2000.biz/cashinwithgoogle/"&gt;my

  program&lt;/a&gt; you won't have to worry about any of this.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;no more &lt;a href="http://www.globalmarketing2000.biz/remove.html"&gt;emails&lt;/a&gt;

  please &lt;/font&gt;&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;



</pre>
</div>
</content>
</entry>
<entry>
<title>Free Play Tournament</title>
<author><name>&quot;Beth Langford&quot; &lt;amejiyet@msn.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200403.mbox/%3cMIWLVBCUEGYRCUDBTVFETNQ@yahoo.com%3e"/>
<id>urn:uuid:%3cMIWLVBCUEGYRCUDBTVFETNQ@yahoo-com%3e</id>
<updated>2004-03-01T16:24:06Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&lt;!doctype html public "-//w3c//dtd html 4.0 transitional//en"&gt;
&lt;html&gt;
&lt;head&gt;
   &lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;
   &lt;meta name="GENERATOR" content="Mozilla/4.77 [en] (Windows NT 5.0; U) [Netscape]"&gt;
&lt;/head&gt;
&lt;body text="#000000" bgcolor="#000066" link="#0000EE" vlink="#551A8B" alink="#FF0000"&gt;
&lt;center&gt;&lt;table BORDER CELLSPACING=0 CELLPADDING=0 WIDTH="802" bordercolor="#F7C700"
&gt;
&lt;tr&gt;
&lt;td WIDTH="835"&gt;
&lt;table BORDER=0 CELLSPACING=0 CELLPADDING=0 &gt;
&lt;tr&gt;
&lt;td WIDTH="800"&gt;
&lt;table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="800" HEIGHT="19" &gt;
&lt;tr&gt;
&lt;td WIDTH="394"&gt;&lt;img SRC="http://warp2casino.org/images/internet_casinos_01.jpg"
height=67 width=394&gt;&lt;/td&gt;

&lt;td WIDTH="428"&gt;&lt;img SRC="http://warp2casino.org/images/internet_casinos_02.jpg"
height=67 width=406&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;&lt;img SRC="http://warp2casino.org/images/internet_casinos_03.jpg" height=46 width=394&gt;&lt;/td&gt;

&lt;td&gt;&lt;img SRC="http://warp2casino.org/images/internet_casinos_04.jpg" height=46 width=406&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td COLSPAN="2" HEIGHT="19" BACKGROUND="http://warp2casino.org/images/internet_casinos_bg.jpg"&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td ALIGN=CENTER BGCOLOR="#CC0000"&gt;
&lt;table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="750" &gt;
&lt;tr ALIGN=CENTER&gt;
&lt;td COLSPAN="3"&gt;&lt;img SRC="http://warp2casino.org/images/main_promos_top.jpg" height=107
width=750&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td ALIGN=CENTER VALIGN=TOP WIDTH="186"&gt;
&lt;FONT SIZE="-2"&gt;&amp;nbsp;&lt;/font&gt;
&lt;table BORDER=0 CELLSPACING=0 CELLPADDING=1 WIDTH="183" HEIGHT="57" &gt;
&lt;tr&gt;
&lt;td ALIGN=LEFT VALIGN=TOP WIDTH="36" HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/step1.gif"
height=15 width=39&gt;&lt;/td&gt;

&lt;td ALIGN=LEFT WIDTH="147"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#FFFFFF"&gt;&lt;font
size=-1&gt;&lt;A HREF="http://warp2casino.org/downloads/CasinoSetup.msi"&gt;Download&lt;/A&gt;
Our Free Casino Interface&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/step2.gif" height=15 width=39&gt;&lt;/td&gt;

&lt;td ALIGN=LEFT class="style5"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font size=-1&gt;&lt;font
color="#FFFFFF"&gt;Register An Account - &lt;/font&gt;&lt;font color="#FFFF00"&gt;(FREE)&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/step3.gif" height=15 width=39&gt;&lt;/td&gt;

&lt;td ALIGN=LEFT class="style5"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#FFFFFF"&gt;&lt;font
size=-1&gt;Begin To Play!&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;FONT SIZE="-2"&gt;&amp;nbsp;&lt;/font&gt;
&lt;table BORDER=2 CELLSPACING=0 CELLPADDING=2 WIDTH="175" HEIGHT="57" BGCOLOR="#FFFF00" &gt;
&lt;tr&gt;
&lt;td ALIGN=LEFT VALIGN=TOP WIDTH="15" HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/dot.gif"
height=15 width=15&gt;&lt;/td&gt;
&lt;td ALIGN=LEFT WIDTH="118"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font
size=-1&gt;Free To Play&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/dot.gif" height=15 width=15&gt;&lt;/td&gt;
&lt;td ALIGN=LEFT class="style6"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font
size=-1&gt;Safe &amp;amp; Secure&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/dot.gif" height=15 width=15&gt;&lt;/td&gt;
&lt;td ALIGN=LEFT class="style6"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font
size=-1&gt;24 / 7 Support&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/dot.gif" height=15 width=15&gt;&lt;/td&gt;
&lt;td ALIGN=LEFT class="style6"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font
size=-1&gt;Fair Gaming Cert.&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/dot.gif" height=15 width=15&gt;&lt;/td&gt;
&lt;td ALIGN=LEFT class="style6"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font
size=-1&gt;Complete Privacy&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;

&lt;td ALIGN=CENTER VALIGN=TOP WIDTH="384"&gt;&lt;img SRC="http://warp2casino.org/images/main_promos_collage.jpg"
height=245 width=382&gt;&lt;/td&gt;

&lt;td ALIGN=RIGHT VALIGN=TOP WIDTH="185"&gt;
&lt;table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="184" HEIGHT="75" &gt;
&lt;tr&gt;
&lt;td ALIGN=RIGHT WIDTH="184"&gt;&lt;a href="http://warp2casino.org/downloads/CasinoSetup.msi"&gt;&lt;img
SRC="http://warp2casino.org/images/newest_casino_games.gif" border=0 height=32 width=184&gt;&lt;/A&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;img SRC="http://warp2casino.org/images/games.gif" height=82 width=180&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;center&gt;&lt;a href="http://warp2casino.org/downloads/CasinoSetup.msi"&gt;&lt;img SRC="http://warp2casino.org/images/download_here_help.gif"
border=0 height=49 width=180&gt;&lt;/A&gt;
&lt;br&gt;&lt;img SRC="http://warp2casino.org/images/payouts_98.gif" height=74 width=175&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr ALIGN=CENTER&gt;
&lt;td COLSPAN="3"&gt;&lt;img SRC="http://warp2casino.org/images/main_promos_line.jpg" height=8
width=750&gt;
&lt;br&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#FFFF00"&gt;&lt;font size=+3&gt;WELCOME
To Internet Casino's&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;br&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#FFFFFF"&gt;&lt;font size=+3&gt;2004
FreePlay Tournament&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;br&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#FFFF00"&gt;&lt;font size=+3&gt;$10,000
Guaranteed Prize Pool!&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;p&gt;&lt;a href="http://warp2casino.org/downloads/CasinoSetup.msi"&gt;&lt;img SRC="http://warp2casino.org/images/download_here_help.gif"
border=0 height=49 width=180&gt;&lt;/A&gt;
&lt;br&gt;&amp;nbsp;
&lt;table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="740" HEIGHT="20" &gt;
&lt;tr&gt;
&lt;td WIDTH="740" BGCOLOR="#FFFFFF"&gt;
&lt;ul class="style4"&gt;&amp;nbsp;
&lt;center&gt;
&lt;br&gt;&lt;b&gt;&lt;font face="Arial,Helvetica"&gt;***You must be 18 years of age or older
to participate***&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;

&lt;p&gt;&lt;b&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font size=-1&gt;How Do I Enter?&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;br&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font size=-1&gt;You simply download our &lt;a
href="http://warp2casino.org/downloads/CasinoSetup.msi"&gt;casino software&lt;/a&gt; and open
a free account.&lt;/font&gt;&lt;/font&gt;
&lt;p&gt;&lt;b&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font size=-1&gt;How Many Times Can
I Enter&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;br&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font size=-1&gt;You may enter this tournament
1 times only.&amp;nbsp; The use of multiple registrations will result in permanent disqualification.&lt;/font&gt;&lt;/font&gt;
&lt;p&gt;&lt;b&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font size=-1&gt;How Much Does It
Cost To Enter&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;br&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font size=-1&gt;There is no fee to enter
the tournament, you do not have to make a deposit nor do you need to register with a credit
card.&amp;nbsp; It's FREE!&lt;/font&gt;&lt;/font&gt;
&lt;br&gt;&amp;nbsp;
&lt;center&gt;&lt;table BORDER=0 CELLSPACING=0 CELLPADDING=5 WIDTH="700" &gt;
&lt;tr&gt;
&lt;td ALIGN=LEFT VALIGN=TOP WIDTH="175"&gt;
&lt;table BORDER CELLSPACING=0 CELLPADDING=5 COLS=2 WIDTH="170" BGCOLOR="#FFFFCC" &gt;
&lt;tr&gt;
&lt;td COLSPAN="2" WIDTH="50" BGCOLOR="#FFCC99"&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=+1&gt;PRIZE
POOL&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;br&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-2&gt;234
Paid Positions&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;1st&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td WIDTH="90"&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$2500&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;2nd&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$1000&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;3rd&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$500&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;4th&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$125&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;5th&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$50&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;6th&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$50&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;7th&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$50&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;8th&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$50&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;9th&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$50&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;10th&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$50&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td WIDTH="80"&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;11-234&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$25&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td BGCOLOR="#FFCC99"&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;TOTAL&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td BGCOLOR="#FFCC99"&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$10,000&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;

&lt;td ALIGN=LEFT VALIGN=CENTER WIDTH="525"&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;RULES
&amp;amp; DIRECTIONS FOR PLAY&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;

&lt;p&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;All
Entrants Start With $1000 in Tournament Credits&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;
&lt;p&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;Play
any of the casino games.&amp;nbsp; Try to play with that $1000 for as long as possible until
your account reaches zero or the tournament ends.&amp;nbsp; You can log out and log back in
to continue play at any time.&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;
&lt;p&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font size=-1&gt;&lt;font color="#000000"&gt;Every
time you place a bet, you are credited with an equal number of rollover points.&amp;nbsp;
At the end of the tournament, the top 234 players with the most rollover points win the cash
prizes in the table to the left. &lt;/font&gt;The Top Scores can be viewed at all times&lt;/font&gt;&lt;/font&gt;
&lt;p&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;This
Tournament will begin on 29th of February 2004 and closing will be on March the 7th 11:59.59
pm 2004. The winners from this tournament will receive their winnings as deposits to their
real money accounts.&amp;nbsp; These monies may be played in any of our casino games.&amp;nbsp;
Winnings may be withdrawn via check or wire subject to the following limitations.&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;
&lt;blockquote&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;&lt;font
size=-2&gt;1.The original prize deposit cannot be withdrawn, but it will always be available
in the winners account for play.&amp;nbsp; Only the winings beyond this amount may be withdrawn&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;
&lt;br&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;&lt;font size=-2&gt;2.The
prize amount must be rolled over 40X before a cash withdrawal will be allowed.&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/blockquote&gt;

&lt;center&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;The
winners will be determined on March 8th and notified via email.&amp;nbsp; All winners and&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;
&lt;br&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;top
scores will be posted on our web-site for review during and after the tournament.&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/center&gt;

&lt;center&gt;
&lt;p&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font size=+1&gt;&lt;A HREF="http://warp2casinoorg/downloads/CasinoSetup.msi"&gt;SIGN-UP
and Start Playing Today!&lt;/A&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;br&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font size=+1&gt;Your Odds Of Winning Couldn't
Be Better&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/ul&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td COLSPAN="2" HEIGHT="19" BACKGROUND="http://warp2casino.org/images/internet_casinos_bg.jpg"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/center&gt;
&lt;BR&gt;
&lt;BR&gt;
&lt;CENTER&gt;&lt;table BORDER=1 CELLSPACING=0 CELLPADDING=5 COLS=1 WIDTH="800" BGCOLOR="#FFFFCC"
&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;CENTER&gt;&lt;font face="Verdana"&gt;&lt;font size=-2&gt;To be removed from this mailing,
please go here: &lt;A HREF="http://warp2casino.org/remove.html" TARGET="_BLANK"&gt;REMOVE
ME&lt;/A&gt;&lt;/font&gt;&lt;/font&gt;&lt;/CENTER&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/center&gt;
&lt;/body&gt;
&lt;/html&gt;



</pre>
</div>
</content>
</entry>
<entry>
<title>The 2004 edition of The American Medical Directory doctors, physicians, r ex</title>
<author><name>&quot;Vern Galvan&quot; &lt;fbnzhoey@ruf.uni-freiburg.de&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200402.mbox/%3c592yipx319x$1pj5n6849$4g-x$1$b@4ce.1.xlj%3e"/>
<id>urn:uuid:%3c592yipx319x$1pj5n6849$4g-x$1$b@4ce-1-xlj%3e</id>
<updated>2004-02-29T20:08:36Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
EXCLUSIVELY ON CD-ROM

The 2004 edition of  The American Medical Directory &amp; Physicians Guide has 
just been completed.
  
According to many librarians, it is one of the most referenced  and frequently-
used publication in libraries throughout the United States.
 
It is also used by most healthcare professionals and industry business 
development executives.

The American Medical Directory &amp; Physicians Guide contains relevant data 
on over 500,000 physicians in the United States.
 
Each record is indexed by such features as name, address, phone/fax, county, 
year licensed, type of practice, type of physician, as well as primary and 
secondary specialty.

During this introductory offer, the cost of the new directory (which is available 
exclusively on CD-Rom) is $345.00 (reg. $795).   

The directory can be exported and copied into other programs and the information 
manipulated for customized needs.
  
It is also offered on an unlimited use basis.

To order the American Medical Directory &amp; Physicians Guide, please print this e-mail,

complete the information below and fax it to 905-751-0199. (tel: 905-751-0919).

NAME:

TITLE:

ORGANIZATION:

ADDRESS:

CITY:

POSTAL:

TEL:

FAX:

E-MAIL:

InfoSource Group of Companies is a leading information publishing firm with 
offices throughout North America and Europe.

boqiti


</pre>
</div>
</content>
</entry>
<entry>
<title>Free To PLAY - $10k Give Away</title>
<author><name>&quot;Coleman Huffman&quot; &lt;jnnsxbhyf@hotmail.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200402.mbox/%3cXBIWXDLOCVAGMEDFGDRUDJS@msn.com%3e"/>
<id>urn:uuid:%3cXBIWXDLOCVAGMEDFGDRUDJS@msn-com%3e</id>
<updated>2004-02-29T09:15:27Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&lt;!doctype html public "-//w3c//dtd html 4.0 transitional//en"&gt;
&lt;html&gt;
&lt;head&gt;
   &lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;
   &lt;meta name="GENERATOR" content="Mozilla/4.77 [en] (Windows NT 5.0; U) [Netscape]"&gt;
&lt;/head&gt;
&lt;body text="#000000" bgcolor="#000066" link="#0000EE" vlink="#551A8B" alink="#FF0000"&gt;
&lt;center&gt;&lt;table BORDER CELLSPACING=0 CELLPADDING=0 WIDTH="802" bordercolor="#F7C700"
&gt;
&lt;tr&gt;
&lt;td WIDTH="835"&gt;
&lt;table BORDER=0 CELLSPACING=0 CELLPADDING=0 &gt;
&lt;tr&gt;
&lt;td WIDTH="800"&gt;
&lt;table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="800" HEIGHT="19" &gt;
&lt;tr&gt;
&lt;td WIDTH="394"&gt;&lt;img SRC="http://warp2casino.org/images/internet_casinos_01.jpg"
height=67 width=394&gt;&lt;/td&gt;

&lt;td WIDTH="428"&gt;&lt;img SRC="http://warp2casino.org/images/internet_casinos_02.jpg"
height=67 width=406&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;&lt;img SRC="http://warp2casino.org/images/internet_casinos_03.jpg" height=46 width=394&gt;&lt;/td&gt;

&lt;td&gt;&lt;img SRC="http://warp2casino.org/images/internet_casinos_04.jpg" height=46 width=406&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td COLSPAN="2" HEIGHT="19" BACKGROUND="http://warp2casino.org/images/internet_casinos_bg.jpg"&gt;&amp;nbsp;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td ALIGN=CENTER BGCOLOR="#CC0000"&gt;
&lt;table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="750" &gt;
&lt;tr ALIGN=CENTER&gt;
&lt;td COLSPAN="3"&gt;&lt;img SRC="http://warp2casino.org/images/main_promos_top.jpg" height=107
width=750&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td ALIGN=CENTER VALIGN=TOP WIDTH="186"&gt;
&lt;FONT SIZE="-2"&gt;&amp;nbsp;&lt;/font&gt;
&lt;table BORDER=0 CELLSPACING=0 CELLPADDING=1 WIDTH="183" HEIGHT="57" &gt;
&lt;tr&gt;
&lt;td ALIGN=LEFT VALIGN=TOP WIDTH="36" HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/step1.gif"
height=15 width=39&gt;&lt;/td&gt;

&lt;td ALIGN=LEFT WIDTH="147"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#FFFFFF"&gt;&lt;font
size=-1&gt;&lt;A HREF="http://warp2casino.org/downloads/CasinoSetup.msi"&gt;Download&lt;/A&gt;
Our Free Casino Interface&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/step2.gif" height=15 width=39&gt;&lt;/td&gt;

&lt;td ALIGN=LEFT class="style5"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font size=-1&gt;&lt;font
color="#FFFFFF"&gt;Register An Account - &lt;/font&gt;&lt;font color="#FFFF00"&gt;(FREE)&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/step3.gif" height=15 width=39&gt;&lt;/td&gt;

&lt;td ALIGN=LEFT class="style5"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#FFFFFF"&gt;&lt;font
size=-1&gt;Begin To Play!&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;FONT SIZE="-2"&gt;&amp;nbsp;&lt;/font&gt;
&lt;table BORDER=2 CELLSPACING=0 CELLPADDING=2 WIDTH="175" HEIGHT="57" BGCOLOR="#FFFF00" &gt;
&lt;tr&gt;
&lt;td ALIGN=LEFT VALIGN=TOP WIDTH="15" HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/dot.gif"
height=15 width=15&gt;&lt;/td&gt;
&lt;td ALIGN=LEFT WIDTH="118"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font
size=-1&gt;Free To Play&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/dot.gif" height=15 width=15&gt;&lt;/td&gt;
&lt;td ALIGN=LEFT class="style6"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font
size=-1&gt;Safe &amp;amp; Secure&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/dot.gif" height=15 width=15&gt;&lt;/td&gt;
&lt;td ALIGN=LEFT class="style6"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font
size=-1&gt;24 / 7 Support&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/dot.gif" height=15 width=15&gt;&lt;/td&gt;
&lt;td ALIGN=LEFT class="style6"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font
size=-1&gt;Fair Gaming Cert.&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td HEIGHT="19"&gt;&lt;img SRC="http://warp2casino.org/images/dot.gif" height=15 width=15&gt;&lt;/td&gt;
&lt;td ALIGN=LEFT class="style6"&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font
size=-1&gt;Complete Privacy&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;

&lt;td ALIGN=CENTER VALIGN=TOP WIDTH="384"&gt;&lt;img SRC="http://warp2casino.org/images/main_promos_collage.jpg"
height=245 width=382&gt;&lt;/td&gt;

&lt;td ALIGN=RIGHT VALIGN=TOP WIDTH="185"&gt;
&lt;table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="184" HEIGHT="75" &gt;
&lt;tr&gt;
&lt;td ALIGN=RIGHT WIDTH="184"&gt;&lt;a href="http://warp2casino.org/downloads/CasinoSetup.msi"&gt;&lt;img
SRC="http://warp2casino.org/images/newest_casino_games.gif" border=0 height=32 width=184&gt;&lt;/A&gt;&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;img SRC="http://warp2casino.org/images/games.gif" height=82 width=180&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;center&gt;&lt;a href="http://warp2casino.org/downloads/CasinoSetup.msi"&gt;&lt;img SRC="http://warp2casino.org/images/download_here_help.gif"
border=0 height=49 width=180&gt;&lt;/A&gt;
&lt;br&gt;&lt;img SRC="http://warp2casino.org/images/payouts_98.gif" height=74 width=175&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr ALIGN=CENTER&gt;
&lt;td COLSPAN="3"&gt;&lt;img SRC="http://warp2casino.org/images/main_promos_line.jpg" height=8
width=750&gt;
&lt;br&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#FFFF00"&gt;&lt;font size=+3&gt;WELCOME
To Internet Casino's&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;br&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#FFFFFF"&gt;&lt;font size=+3&gt;2004
FreePlay Tournament&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;br&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#FFFF00"&gt;&lt;font size=+3&gt;$10,000
Guaranteed Prize Pool!&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;p&gt;&lt;a href="http://warp2casino.org/downloads/CasinoSetup.msi"&gt;&lt;img SRC="http://warp2casino.org/images/download_here_help.gif"
border=0 height=49 width=180&gt;&lt;/A&gt;
&lt;br&gt;&amp;nbsp;
&lt;table BORDER=0 CELLSPACING=0 CELLPADDING=0 WIDTH="740" HEIGHT="20" &gt;
&lt;tr&gt;
&lt;td WIDTH="740" BGCOLOR="#FFFFFF"&gt;
&lt;ul class="style4"&gt;&amp;nbsp;
&lt;center&gt;
&lt;br&gt;&lt;b&gt;&lt;font face="Arial,Helvetica"&gt;***You must be 18 years of age or older
to participate***&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;

&lt;p&gt;&lt;b&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font size=-1&gt;How Do I Enter?&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;br&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font size=-1&gt;You simply download our &lt;a
href="http://warp2casino.org/downloads/CasinoSetup.msi"&gt;casino software&lt;/a&gt; and open
a free account.&lt;/font&gt;&lt;/font&gt;
&lt;p&gt;&lt;b&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font size=-1&gt;How Many Times Can
I Enter&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;br&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font size=-1&gt;You may enter this tournament
1 times only.&amp;nbsp; The use of multiple registrations will result in permanent disqualification.&lt;/font&gt;&lt;/font&gt;
&lt;p&gt;&lt;b&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font size=-1&gt;How Much Does It
Cost To Enter&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;br&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font size=-1&gt;There is no fee to enter
the tournament, you do not have to make a deposit nor do you need to register with a credit
card.&amp;nbsp; It's FREE!&lt;/font&gt;&lt;/font&gt;
&lt;br&gt;&amp;nbsp;
&lt;center&gt;&lt;table BORDER=0 CELLSPACING=0 CELLPADDING=5 WIDTH="700" &gt;
&lt;tr&gt;
&lt;td ALIGN=LEFT VALIGN=TOP WIDTH="175"&gt;
&lt;table BORDER CELLSPACING=0 CELLPADDING=5 COLS=2 WIDTH="170" BGCOLOR="#FFFFCC" &gt;
&lt;tr&gt;
&lt;td COLSPAN="2" WIDTH="50" BGCOLOR="#FFCC99"&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=+1&gt;PRIZE
POOL&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;br&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-2&gt;234
Paid Positions&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;1st&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td WIDTH="90"&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$2500&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;2nd&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$1000&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;3rd&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$500&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;4th&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$125&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;5th&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$50&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;6th&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$50&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;7th&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$50&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;8th&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$50&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;9th&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$50&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;10th&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$50&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td WIDTH="80"&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;11-234&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$25&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td BGCOLOR="#FFCC99"&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;TOTAL&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;

&lt;td BGCOLOR="#FFCC99"&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;$10,000&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;

&lt;td ALIGN=LEFT VALIGN=CENTER WIDTH="525"&gt;
&lt;center&gt;&lt;b&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;RULES
&amp;amp; DIRECTIONS FOR PLAY&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;

&lt;p&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;All
Entrants Start With $1000 in Tournament Credits&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;
&lt;p&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;Play
any of the casino games.&amp;nbsp; Try to play with that $1000 for as long as possible until
your account reaches zero or the tournament ends.&amp;nbsp; You can log out and log back in
to continue play at any time.&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;
&lt;p&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font size=-1&gt;&lt;font color="#000000"&gt;Every
time you place a bet, you are credited with an equal number of rollover points.&amp;nbsp;
At the end of the tournament, the top 234 players with the most rollover points win the cash
prizes in the table to the left. &lt;/font&gt;The Top Scores can be viewed at all times&lt;/font&gt;&lt;/font&gt;
&lt;p&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;This
Tournament will begin on 29th of February 2004 and closing will be on March the 7th 11:59.59
pm 2004. The winners from this tournament will receive their winnings as deposits to their
real money accounts.&amp;nbsp; These monies may be played in any of our casino games.&amp;nbsp;
Winnings may be withdrawn via check or wire subject to the following limitations.&amp;nbsp;&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;
&lt;blockquote&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;&lt;font
size=-2&gt;1.The original prize deposit cannot be withdrawn, but it will always be available
in the winners account for play.&amp;nbsp; Only the winings beyond this amount may be withdrawn&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;
&lt;br&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;&lt;font size=-2&gt;2.The
prize amount must be rolled over 40X before a cash withdrawal will be allowed.&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/blockquote&gt;

&lt;center&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;The
winners will be determined on March 8th and notified via email.&amp;nbsp; All winners and&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;
&lt;br&gt;&lt;font face="Arial,Helvetica"&gt;&lt;font color="#000000"&gt;&lt;font size=-1&gt;top
scores will be posted on our web-site for review during and after the tournament.&lt;/font&gt;&lt;/font&gt;&lt;/font&gt;&lt;/center&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/center&gt;

&lt;center&gt;
&lt;p&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font size=+1&gt;&lt;A HREF="http://warp2casinoorg/downloads/CasinoSetup.msi"&gt;SIGN-UP
and Start Playing Today!&lt;/A&gt;&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;
&lt;br&gt;&lt;b&gt;&lt;font face="Verdana"&gt;&lt;font size=+1&gt;Your Odds Of Winning Couldn't
Be Better&lt;/font&gt;&lt;/font&gt;&lt;/b&gt;&lt;/center&gt;
&lt;/ul&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;

&lt;tr&gt;
&lt;td COLSPAN="2" HEIGHT="19" BACKGROUND="http://warp2casino.org/images/internet_casinos_bg.jpg"&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/center&gt;
&lt;BR&gt;
&lt;BR&gt;
&lt;CENTER&gt;&lt;table BORDER=1 CELLSPACING=0 CELLPADDING=5 COLS=1 WIDTH="800" BGCOLOR="#FFFFCC"
&gt;
&lt;tr&gt;
&lt;td&gt;
&lt;CENTER&gt;&lt;font face="Verdana"&gt;&lt;font size=-2&gt;To be removed from this mailing,
please go here: &lt;A HREF="http://warp2casino.org/remove.html" TARGET="_BLANK"&gt;REMOVE
ME&lt;/A&gt;&lt;/font&gt;&lt;/font&gt;&lt;/CENTER&gt;
&lt;/td&gt;
&lt;/tr&gt;
&lt;/table&gt;&lt;/center&gt;
&lt;/body&gt;
&lt;/html&gt;



</pre>
</div>
</content>
</entry>
<entry>
<title>A license to print money</title>
<author><name>&quot;Leanna Hendricks&quot; &lt;jrusgaewnwu@lgtel.co.kr&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200402.mbox/%3cTXNLXMPXTKCDIWALTJVJHTLGN@rikkyo.ac.jp%3e"/>
<id>urn:uuid:%3cTXNLXMPXTKCDIWALTJVJHTLGN@rikkyo-ac-jp%3e</id>
<updated>2004-02-27T17:39:33Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;5 249.72.84.40&lt;/title&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Affiliate programs were never this easy in the past. You had to create a website,

  sumbit it to major search engines and wait almost a year for results. With &lt;a href="http://www.globalmarketing2000.biz/cashinwithgoogle/"&gt;my

  program&lt;/a&gt; you won't have to worry about any of this.&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;no more &lt;a href="http://www.globalmarketing2000.biz/remove.html"&gt;emails&lt;/a&gt;

  please &lt;/font&gt;&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;



</pre>
</div>
</content>
</entry>
<entry>
<title>invite</title>
<author><name>&quot;Nanette Cowan&quot; &lt;wowhh@stupidlovelife.com&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200402.mbox/%3cHDGPMWKQIVZTAAGSQVMCRVM@stupidlovelife.com%3e"/>
<id>urn:uuid:%3cHDGPMWKQIVZTAAGSQVMCRVM@stupidlovelife-com%3e</id>
<updated>2004-02-26T18:29:43Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&lt;html&gt;&lt;body bgcolor="#9999FF" text="#000000"&gt;
&lt;table width="80%"  border="0" cellspacing="0" cellpadding="0"&gt;
  &lt;tr&gt;
    &lt;td bgcolor="#FFFFFF"&gt;&lt;div align="left"&gt;One of your friends set you up on
a Blind Date with another friend.&lt;BR&gt;
        &lt;BR&gt;
Click here to accept the invitation:&lt;BR&gt;
&lt;a href="http://stupidlovelife.com/confirm/?oc=54433445"&gt;I ACCEPT&lt;/a&gt;&lt;BR&gt;
&lt;BR&gt;
&lt;BR&gt;
&lt;strong&gt;AOL&lt;/strong&gt; users &lt;A
HREF="http://stupidlovelife.com/confirm/?oc=54433445"&gt;click here&lt;/A&gt;&lt;BR&gt;
&lt;font size="-5"&gt;&lt;BR&gt;
&lt;/font&gt;&lt;strong&gt;The FREE dating web site 
CREATED BY &lt;em&gt;WOMEN&lt;/em&gt;&lt;/strong&gt;&lt;/div&gt;&lt;/td&gt;
  &lt;/tr&gt;
&lt;/table&gt;
&lt;p&gt;&lt;BR&gt;
  &lt;BR&gt;
  &lt;BR&gt;
  &lt;font color="#FFFFFF"&gt;Click here if you do not wish to be invited again:&lt;/font&gt;&lt;BR&gt;
&lt;a href="http://stupidlovelife.com/remove/?oc=54430012"&gt;I decline the invitation&lt;/a&gt;&lt;BR&gt;
&lt;BR&gt;
&lt;font size=-2&gt;
Carnegie Sun, LTD&lt;BR&gt;
2135A des Laurentides Blvd, Suite 10057&lt;BR&gt;
Laval QC H7M 4M2&lt;BR&gt;
Canada&lt;/font&gt;
&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;


</pre>
</div>
</content>
</entry>
<entry>
<title>A real online business</title>
<author><name>&quot;Lynn Waters&quot; &lt;SFYWUTGFGBBRZ@zephyr.dti.ne.jp&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200402.mbox/%3cECFLNZXPIOGZGLBEJUSNNHWVD@ruhr-uni-bochum.de%3e"/>
<id>urn:uuid:%3cECFLNZXPIOGZGLBEJUSNNHWVD@ruhr-uni-bochum-de%3e</id>
<updated>2004-02-26T06:27:38Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

&lt;html&gt;
&lt;head&gt;
&lt;title&gt;188.242.16.254 N&lt;/title&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;p&gt;In my &lt;a href="http://www.globalmarketing2000.biz/cashinwithgoogle/"&gt;54 
  Page comprehensive guide&lt;/a&gt; I'll show you how to use Affiliate Programs together

  with Google AdWords to make a good living. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;No more emails! please take me &lt;a href="http://www.globalmarketing2000.biz/remove.html"&gt;off&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;



</pre>
</div>
</content>
</entry>
<entry>
<title>Market analysis reveals valuable stock play skfd uee o feu</title>
<author><name>&quot;Ariel Dickerson&quot; &lt;6bxxxsxsf@in.gr&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200402.mbox/%3c3tnlvt4hzpnb7914g-6d$g3172@94bxh.1xhs.gc%3e"/>
<id>urn:uuid:%3c3tnlvt4hzpnb7914g-6d$g3172@94bxh-1xhs-gc%3e</id>
<updated>2004-02-25T00:02:04Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Wall Street Financial Times Newsletter

Specializing in Undervalued Small Cap Stocks for Immediate Breakout

We have the #1 track record for our picks in 2004:

GETC at .12		Currently .50	High .68 UP 467%
TLPE at 1.12	Currently 3.35	High 4.40 UP 293%
SWYC at .18 	Currently .71	High .81 UP 350%
DNYY at .47	Currently 1.42	High 1.85 UP 294%

Immediate Investor Recommendation
Our Hottest Sales and Earnings Play
Projected to Triple in 7 Days:

Life Energy and Technology Holdings, Inc.
(OTCBB: LETH)

Price--- 1.20
Sales Orders Received '03--- over $150 Million +300% growth vs. '02
Est. Sales Growth '04--- +165%
Results from latest 10-Q:
Total Assets--- 36.8 million vs. 16.8 million
Cash--- 23.4 million vs. deficit
Shareholders Equity--- 12.0 million vs. 2.2 million
Shares Outstanding--- 29 mill
Est. Shares in Float--- 7 mill
Proj. Value Per Share--- 3.25 -- 3.50
Rating--- Urgent Buy

LETH is thriving as an emerging world leader in the conversion of waste 
materials into electrical energy by utilizing their Biosphere Process 
System, making them the hottest undervalued stock at this price level where shares are ready
to explode on huge investor attention.

Sales have rocketed beyond all estimates for LETH with no signs of 
slowing. The numbers continue to stack-up as sales orders for the 
Biosphere exceed $150 Million over the past year while the stock 
price doesn't yet reflect the appearance of these impressive figures 
on an upcoming balance sheet. We are not the first to uncover this phenomenon as the stock
is under accumulation, but we are acting aggressively on this recently filed data.

The unique proprietary technology of the Biosphere fills an urgent 
worldwide need for cost-effective renewable energy sources and a 
corresponding universal need to solve critical problems in the disposal 
of waste. The Biosphere System provides the highest level of innovative 
technology while securing worldwide acceptance for a revolutionary 
product designed to significantly impact the global waste problem 
while simultaneously generating electricity. 

The Biosphere System enables LETH to draw revenue from the disposal of 
various types of waste at 5 to 7 tons per hour including such materials 
as: Municipal Solid Waste, refinery wastes, agricultural surpluses or 
effluents, medical waste, industrial waste, shale oil, sour natural gas, and the huge market
of used tires are all converted in the Biosphere Process. LETH also profits from the sale
of electricity created from the waste conversion on a continuous basis by generating 5 to
10 mega-watts per hour of electricity which is then sold to replenish the local or national
grid. 

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $20) a 
leader and one of the largest providers in environmental, mechanical, 
and electrical management consulting services primarily for the US 
Government with annual sales of $800 Million. Tetra Tech will coordinate permitting, installation
and continuous worldwide monitoring of the Biosphere Process System for LETH. Tetra Tech is
now in the process of obtaining Department of Environmental Quality permitting for the Biosphere
Process in the state of Louisiana. This is a monumental event for LETH which opens the floodgates
for major project revenues in Louisiana while having a parallel effect on LETH stock in the
form of a huge near-term announcement. 

LETH has begun to catch the profit-making attention of investors by 
embracing a major foothold on the global waste problem while a major 
push for generating electricity from alternative sources continues to be the hot topic due
to shortages and massive power failures. LETH contains all the ingredients for major profits
as global demand to solve two crisis areas, waste and electrical energy, reaches unprecedented
levels. We view this perfectly timed convergence of events as the catalyst for additional
contracts that will perpetuate the shattering of the Company's own sales records. We are seeing
substantial gains for early investors in a ground floor opportunity 
that carries our highest rating for short-term trading profits.

Required LETH information: Certain statements contained in this 
newsletter may be forward looking statements within the meaning of The Private Securities
Litigation Reform Act of 1995. Such terms as "expect", "believe", "may", "will", and "intend"
or similar terms may identify these statements. We are not a registered investment advisor
or a broker dealer. This is not an offer to buy or sell securities. No recommendation that
the securities of the companies profiled should be purchased, sold or held by individuals
or entities that learn of the profiled companies. This is an independent electronic publication
that was paid five thousand dollars by an unaffiliated third party for the preparation of
this company information Be advised that investments in companies profiled are considered
to be high-risk and use of the content provided is for information purposes only. If anyone
decides to 
act as an investor they are advised not to invest without the proper 
guidance from a financial advisor or a registered financial broker. If any party decides to
participate as an investor then it will be that investor's sole risk. Be advised that the
purchase of such high-risk securities may result in the loss of some or all of the investment.
Investors should not rely solely on the information presented. Rather, investors should use
the information provided in this newsletter as a starting point for doing additional independent
research on the profiled companies in order to allow the investor to form their own opinion
regarding investing in the profiled companies. Factual statements made about the profiled
companies are made as of the date 
stated and are subject to change without notice. Investing in micro-cap 
securities is highly speculative and carries an extremely high degree of risk. All information
provided about the profiled companies may include information provided by outside sources,
such as research reports, public filings, and information provided by management of the profiled
company. 


f nahda bzkyv 

pt
muyacbj porpgqzhf
vuskcjutjjqb kc cc
ile
zxyohetmxdxsdosodnmkfgwy
defgcxug 


</pre>
</div>
</content>
</entry>
<entry>
<title>subject</title>
<author><name>&quot;Sonya Teague&quot; &lt;phwvma@jd5.so-net.ne.jp&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200402.mbox/%3cLITDHXALTHFGTQTLMWXE@egor.pt%3e"/>
<id>urn:uuid:%3cLITDHXALTHFGTQTLMWXE@egor-pt%3e</id>
<updated>2004-02-25T00:01:54Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

&lt;html&gt;
&lt;head&gt;
&lt;title&gt;cameroun jefferson nothing excommunicate mention bechtel dropout p's quickstep
fieldstone primeval unitary wisconsin everywhere socioeconomic ate delphic reject townhouse
earth richfield saint forensic fresco insatiable pythagoras whomever clubhouse beaujolais
centrifuge mitosis proletariat jocund spector grandchildren luxe milieu &lt;/title&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;p&gt;These days most people don't have time to phone every moving/freight company 
  to find the lowest price. &lt;/p&gt;
&lt;p&gt;Benefit from our large database of moving/forwarding companies competing for 
  your business.&lt;/p&gt;
&lt;p&gt;Get an online estimate &lt;a href="http://www.globalmarketing2000.biz/atm"&gt;here&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.globalmarketing2000.biz/remove.html"&gt;&lt;font size="2"&gt;This

  link&lt;/font&gt;&lt;/a&gt;&lt;font size="2"&gt; will manage your subscription settings&lt;/font&gt;&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;



</pre>
</div>
</content>
</entry>
<entry>
<title>Don't hesitate to jump into this hot OTC flyer jsy</title>
<author><name>&quot;Pat Brantley&quot; &lt;a540sidyb@nextra.cz&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200402.mbox/%3c5-$o435--v2zz-q-524es79--97@h1rhyul%3e"/>
<id>urn:uuid:%3c5-$o435--v2zz-q-524es79--97@h1rhyul%3e</id>
<updated>2004-02-23T09:57:41Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Investor Insights Newsletter features companies with revolutionary 
products and soaring revenues. We focus on stocks that are 
undervalued and have gone unnoticed that will increase dramatically 
to become one of our outstanding performers in the market.  

We recently highlighted UGHO at .15 with a target of .85. UGHO hit a 
high of 2.81 in 14 days. We picked EENT at .18 setting our target at 
60. It hit .88 in 8 days.

Investor Insights Newsletter record-breaking alternative energy play:

Life Energy and Technology Holdings, Inc.

OTCBB: LETH

Recommended Price--- 1.00

Results from latest 10-Q:

Working Capital--- 23.4 million vs. deficit

Total Assets--- 36.8 million vs. 16.8 million

10 day target--- 1.75

30 day target--- 3.20

Rating--- Extremely Undervalued

LETH's innovative, cutting-edge technology is destined to make a 
major impact on a global scale by utilizing their Biosphere Process 
System to safely, efficiently, and profitably convert waste materials 
into electrical energy. The Biosphere Process offers boundless and 
unlimited benefits by solving the global waste problem while a major 
push for generating electricity from alternative sources continues to be 
the hot topic due to shortages and massive power failures.

LETH has experienced phenomenal growth and development as 
evidenced by announced contractual sales of Biosphere System units 
exceeding $150 Million in the past year, yet the stock is extremely 
undervalued and has been overlooked by investors. Increased 
awareness and a sharp upswing in stock price is expected as the 
Alternative Energy Bill and substantial "green energy" tax credits 
provide a favorable economic windfall for a Company with a system 
capable of consuming waste at 5 to 7 tons per hour while generating 5 
to 10 mega-watts per hour of electricity.  

Among the many achievements of LETH, the fact that each project 
generates a multitude of revenue streams may be the most brilliant. 
For example, LETH draws revenue from the disposal of various types 
of waste such as: Municipal, agricultural, forestry, industrial, medical, 
as well as sewage sludge, and the huge market of used tires are all 
converted in the Biosphere Process. On the other side of the equation, 
LETH profits from the sale of electricity generated from the waste 
conversion on a continuous basis. 

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, 
$22) a leader and one of the largest providers in environmental, 
mechanical, and electrical management consulting services with annual 
sales of $800 Million. Tetra Tech will coordinate permitting, 
installation and continuous worldwide monitoring of the Biosphere 
Process System for LETH. Tetra Tech is now in the process of 
obtaining Department of Environmental Quality permitting for the 
Biosphere Process in the state of Louisiana. This is a monumental event 
for LETH which opens the floodgates for major project revenues in 
Louisiana while having a parallel effect on LETH stock in the form of a 
huge near-term announcement. 

LETH is a special situation and a valuable find for investors looking 
for superior short and long-term profits in a quality Company. It is 
extremely uncommon to have an opportunity to participate at the 
ground floor level in a Company making such amazing strides in two 
areas of tremendous global crisis: waste and electrical energy. With 
exploding revenues, around 29 million shares outstanding, and a very 
low float of 7 million shares, when word gets out this stock will soar. 
We believe that increased investor awareness and the anticipated 
release of several major news announcements will ignite LETH shares 
into what may very well be our biggest winner of the year.

Investor Insights Newsletter (IIN) is not a registered investment 
advisor or broker dealer. Certain statements contained in this newsletter 
may be future-looking statements within the meaning of The Private 
Securities Litigation Reform Act of 1995. Such terms as "expect", 
"believe", "may", "will", and "intend" or similar terms may identify 
these statements. Past performance is not an indicator of future results.  
This is not an offer to buy or sell securities. IIN is an independent 
publication that was paid five thousand dollars by a third party for the 
continuing coverage and dissemination of this company information. 
Investors are advised to seek proper guidance from a financial advisor 
or a registered financial broker. Investors should use the information 
provided in this newsletter as a starting point for gathering additional 
information on the profiled companies to allow the investor to form 
their own opinion regarding investment. Investing in micro-cap 
securities is highly speculative and carries an extremely high degree of 
risk and may result in the loss of some or all of the investment.
c  yaanrbjkmzacgrp d
hxbotuz


</pre>
</div>
</content>
</entry>
<entry>
<title>subject</title>
<author><name>&quot;Tania Wilder&quot; &lt;NUYTSWGZYHVI@interpath.net&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200402.mbox/%3cUVPDNDJUIKGLEGRHGQBKNAP@datavision.com.au%3e"/>
<id>urn:uuid:%3cUVPDNDJUIKGLEGRHGQBKNAP@datavision-com-au%3e</id>
<updated>2004-02-23T07:40:16Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&lt;html&gt;&lt;head&gt;&lt;title&gt;Secrets Of A Sex Magnet&lt;/title&gt;&lt;/head&gt;&lt;body
bgcolor=FFFFFF&gt;&lt;p&gt;&lt;u&gt;Now
you can use them and get laid too...&lt;/u&gt;&lt;p&gt;&lt;b&gt;&lt;font size="4"&gt;PROVEN
Techniques
And Tactics For Seducing Only&lt;br&gt;
The HOTTEST Women Into Your Bed?!&lt;/font&gt;&lt;/b&gt;
        &lt;p align="left"&gt;Imagine...&lt;/p&gt;
        &lt;p align="left"&gt;Each time you go out for a night on the town, you'll
        come home with&lt;br&gt;
        a beautiful &amp;quot;babe&amp;quot; in your arms only to discover that &lt;b&gt;up
to
        10 messages&lt;br&gt;
        &lt;/b&gt;from other beautiful women, desperate to meet you or begging to go
        out&lt;br&gt;
        with you, are waiting &lt;b&gt;on your answering machine!&lt;/b&gt;&lt;/p&gt;
&lt;ul&gt;
  &lt;li&gt;
    &lt;p align="left"&gt;&lt;b&gt;Learn&lt;/b&gt;&lt;b&gt; Where To Meet Women!&lt;/b&gt;&lt;/li&gt;
  &lt;li&gt;
    &lt;p align="left"&gt;Guaranteed Conversation Starters!&lt;/li&gt;
  &lt;li&gt;
    &lt;p align="left"&gt;&lt;b&gt;Multiple Women At Your Disposal!&lt;/b&gt;&lt;/li&gt;
  &lt;li&gt;
    &lt;p align="left"&gt;Secrets Of Undressing A Woman Smoothly!&lt;b&gt;&lt;br&gt;
    And Much More!&lt;/b&gt;&lt;/li&gt;
&lt;/ul&gt;
        &lt;p align="left"&gt;&lt;b&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;
        &lt;/b&gt;&lt;a href="http://www.iwannadateyou.com:384/stv/dhp.htm "&gt;&lt;b&gt;Click
here to learn the
        secrets of seducing women!&lt;/b&gt;&lt;/a&gt;&lt;/p&gt;&lt;BR&gt;&lt;BR&gt;&lt;BR&gt;&lt;a
href="http://www.iwannadateyou.com:384/stv/sut.htm"&gt;Rmv me pls&lt;/a&gt;
&lt;/body&gt;&lt;/html&gt;



</pre>
</div>
</content>
</entry>
<entry>
<title>Make money with search engines - without a website</title>
<author><name>&quot;Beth Winter&quot; &lt;ddyejqclqhanr@kepco.co.kr&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200402.mbox/%3cHNUDNJWGNAOIKPDIBESPRXRW@mx3.ttcn.ne.jp%3e"/>
<id>urn:uuid:%3cHNUDNJWGNAOIKPDIBESPRXRW@mx3-ttcn-ne-jp%3e</id>
<updated>2004-02-23T00:50:49Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
&lt;html&gt;
&lt;head&gt;
&lt;title&gt;255.84.208.222&lt;/title&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;With &lt;a href="http://www.globalmarketing2000.biz/cashinwithgoogle/"&gt;my 
  proven strategies&lt;/a&gt; you'll make more money online than most other web sites 
  do and you won't even need to have a website!&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;I don't want more &lt;a href="http://www.globalmarketing2000.biz/remove.html"&gt;emails&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;



</pre>
</div>
</content>
</entry>
<entry>
<title>Open 24 en vivo el viernes 27 las 0:30hs</title>
<author><name>&quot;Open 24&quot; &lt;open24@fibertel.com.ar&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200402.mbox/%3c4138-22004202275029954@lucas-5dmve7com%3e"/>
<id>urn:uuid:%3c4138-22004202275029954@lucas-5dmve7com%3e</id>
<updated>2004-02-22T07:50:29Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Notorious Ghandi Corrientes 
Avda. Corrientes 1743 
reservas 4371 0307 
entrada 6 $
Ver Nota de PAGINA 12 del Jueves 19 de feb
"Open 24, el experimento funk"

http://www.pagina12web.com.ar/diario/espectaculos/6-31664-2004-02-19.html







</pre>
</div>
</content>
</entry>
<entry>
<title>Great investment advice with just one click uaenutyfyfavtfcp</title>
<author><name>&quot;Steven Mcguire&quot; &lt;582zmoov@ccuma.sci.uma.es&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200402.mbox/%3c40$-$41---zlb09$9$6e@oja.yq78014c8%3e"/>
<id>urn:uuid:%3c40$-$41---zlb09$9$6e@oja-yq78014c8%3e</id>
<updated>2004-02-21T06:09:47Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>
Investor Insights Newsletter features companies with revolutionary products and 
soaring revenues. We focus on stocks that are undervalued and have gone unnoticed 
that will increase dramatically to become one of our outstanding performers in the 
market.  

We recently highlighted UGHO at .15 with a target of .85. UGHO hit a high of 2.81 
in 14 days. We picked EENT at .18 setting our target at .60. It hit .88 in 8 days.
 
Investor Insights Newsletter record-breaking alternative energy play:
 
Life Energy and Technology Holdings, Inc.

OTCBB: LETH

Recommended Price---1.00

Results from latest 10-Q:

Working Capital--- 23.4 million vs. deficit

Total Assets--- 36.8 million vs. 16.8 million

10 day target--- 1.75

30 day target--- 3.20

Rating--- Extremely Undervalued

LETH's innovative, cutting-edge technology is destined to make a major impact on a 
global scale by utilizing their Biosphere Process System to safely, efficiently, and 
profitably convert waste materials into electrical energy. The Biosphere Process 
offers boundless and unlimited benefits by solving the global waste problem while a 
major push for generating electricity from alternative sources continues to be the hot 
topic due to shortages and massive power failures.

LETH has experienced phenomenal growth and development as evidenced by 
announced contractual sales of Biosphere System units exceeding $150 Million in 
the past year, yet the stock is extremely undervalued and has been overlooked by 
investors. Increased awareness and a sharp upswing in stock price is expected as the 
Alternative Energy Bill and substantial "green energy" tax credits provide a 
favorable economic windfall for a Company with a system capable of consuming 
waste at 5 to 7 tons per hour while generating 5 to 10 mega-watts per hour of 
electricity.

Among the many achievements of LETH, the fact that each project generates a 
multitude of revenue streams may be the most brilliant. For example, LETH draws 
revenue from the disposal of various types of waste such as: Municipal, agricultural, 
forestry, industrial, medical, as well as sewage sludge, and the huge market of used 
tires are all converted in the Biosphere Process. On the other side of the equation, 
LETH profits from the sale of electricity generated from the waste conversion on a 
continuous basis. 

LETH is an alliance partner with Tetra Tech, Inc. (NASDAQ: TTEK, $22) a leader 
and one of the largest providers in environmental, mechanical, and electrical 
management consulting services with annual sales of $800 Million. Tetra Tech will 
coordinate permitting, installation and continuous worldwide monitoring of the 
Biosphere Process System for LETH. Tetra Tech is now in the process of obtaining 
Department of Environmental Quality permitting for the Biosphere Process in the 
state of Louisiana. This is a monumental event for LETH which opens the 
floodgates for major project revenues in Louisiana while having a parallel effect on 
LETH stock in the form of a huge near-term announcement.

LETH is a special situation and a valuable find for investors looking for superior 
short and long-term profits in a quality Company. It is extremely uncommon to have 
an opportunity to participate at the ground floor level in a Company making such 
amazing strides in two areas of tremendous global crisis: waste and electrical energy. 
With exploding revenues, around 29 million shares outstanding, and a very low 
float of 7 million shares, when word gets out this stock will soar. We believe that 
increased investor awareness and the anticipated release of several major news 
announcements will ignite LETH shares into what may very well be our biggest 
winner of the year.

Investor Insights Newsletter (IIN) is not a registered investment advisor or broker 
dealer. Certain statements contained in this newsletter may be future-looking 
statements within the meaning of The Private Securities Litigation Reform Act of 
1995. Such terms as "expect", "believe", "may", "will", and "intend" or similar terms 
may identify these statements. Past performance is not an indicator of future results. 
This is not an offer to buy or sell securities. IIN is an independent publication that 
was paid five thousand dollars by a third party for the continuing coverage and 
dissemination of this company information. Investors are advised to seek proper 
guidance from a financial advisor or a registered financial broker. Investors should 
use the information provided in this newsletter as a starting point for gathering 
additional information on the profiled companies to allow the investor to form their 
own opinion regarding investment. Investing in micro-cap securities is highly 
speculative and carries an extremely high degree of risk and may result in the loss of 
some or all of the investment.

wh qrmbidhe
fb
a kj 
vjx ld rbe nse mxo arexrrepgdzt


</pre>
</div>
</content>
</entry>
<entry>
<title>The more you work the less you make, sound familiar?</title>
<author><name>&quot;Amparo Smart&quot; &lt;ITZMGBWZUY@centrum.cz&gt;</name></author>
<link rel="alternate" href="http://mail-archives.apache.org/mod_mbox/db-commons-user/200402.mbox/%3cDDHZQTVCBJHFHPTIGPKKAD@telusplanet.com%3e"/>
<id>urn:uuid:%3cDDHZQTVCBJHFHPTIGPKKAD@telusplanet-com%3e</id>
<updated>2004-02-20T16:14:34Z</updated>
<content type="xhtml">
<div xmlns="http://www.w3.org/1999/xhtml">
<pre>

&lt;html&gt;
&lt;head&gt;
&lt;title&gt;47.166.224.208 x&lt;/title&gt;
&lt;meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"&gt;
&lt;/head&gt;

&lt;body&gt;
&lt;p&gt;In my &lt;a href="http://www.globalmarketing2000.biz/cashinwithgoogle/"&gt;54 
  Page comprehensive guide&lt;/a&gt; I'll show you how to use Affiliate Programs together

  with Google AdWords to make a good living. &lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&lt;font size="2"&gt;No more emails! please take me &lt;a href="http://www.globalmarketing2000.biz/remove.html"&gt;off&lt;/a&gt;&lt;/font&gt;&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;



</pre>
</div>
</content>
</entry>
</feed>
