Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
430 lines (407 sloc)
22.2 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML//EN"> | |
| <html xmlns:mso="urn:schemas-microsoft-com:office:office" xmlns:msdt="uuid:C2F41010-65B3-11d1-A29F-00AA00C14882"> | |
| <head> | |
| <meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1"> | |
| <meta http-equiv="Page-Enter" content="revealTrans(Duration=2.0,Transition=23)"> | |
| <meta http-equiv="Keywords" content="free contests,artwork,mindconnection,car pricing,bestseller books,chef supplies,fitness information,losing weight,lingerie,linux,project management courses,education,movies,music,office supplies,romance,toys,online shopping,personals,free information,tech tips,computer help,travel"> | |
| <meta name="robots" Content="all"> | |
| <meta name="description" content="Everything for today's professional. Free stuff center and selected shopping. Fitness, how-to articles, recipes, artwork, project management courses, etc."> | |
| <meta name="Author" content="Mark Lamendola"> | |
| <!-- free contests,artwork,mindconnection,car pricing,bestseller books,chef supplies,scanners,printers,fitness information,losing weight,treadmills,lingerie,linux,magazines,project management courses,education,movies,music,office supplies,software training,romance,toys,travel,online shopping,personals,free information,tech tips,computer help --> | |
| <title>+Mindconnection resource center: free stuff and selected shopping</title> | |
| <!-- free contests,artwork,car pricing,bestseller books,chef supplies,fitness information,losing weight,treadmills,lingerie,linux,magazines,project management courses,education,movies,music,office supplies,software training,romance,toys,travel,online shopping,personals,free information,tech tips,computer help --> | |
| <meta name="robots" content="index"> | |
| <!-- http://www.mindconnection.com/_adult/lingerie.htm --> | |
| <!-- http://www.mindconnection.com/_links/0direct.htm --> | |
| <!-- http://www.ecmweb.com --> | |
| <!-- http://www.mindconnection.com/library/index.htm --> | |
| <!-- http://www.mindconnection.com/stores.htm --> | |
| <!-- free contests,artwork,car pricing,mindconnection,bestseller books,chef supplies,fitness information,losing weight,treadmills,lingerie,linux,magazines,project management courses,education,movies,music,office supplies,software training,romance,toys,travel,online shopping,personals,free information,tech tips,computer help --> | |
| <!-- free contests,artwork,car pricing,bestseller books,chef supplies,fitness information,losing weight,treadmills,hot sauce,lingerie,linux,magazines,project management courses,education,movies,music,office supplies,software training,romance,toys,travel,online shopping,personals,free information,tech tips,computer help --> | |
| <script language=Javascript name="J-BotDateFormat" ><!-- | |
| // Webs Unlimited's J-BOTS FrontPage 2000 JavaScript Generator version 3.0 | |
| // Copyright Webs Unlimited 1998, 1999 All rights reserved - http://WebsUnlimited.com | |
| // make an array of length n Needed for older javascript browsers | |
| function makearray(n) { | |
| this.length = n | |
| for (var i = 1; i <= n; i++) { | |
| this[i] = null; | |
| } | |
| return this; | |
| } | |
| function IsIn(value,search) { | |
| if(search.indexOf(value) != -1) { | |
| return 1; | |
| } else { | |
| return 0; | |
| } | |
| } | |
| function LeadZero(value) { | |
| if ( value < 10) | |
| document.write('0'); | |
| } | |
| function DateFormat(format,twoplace) { | |
| var operators = 'dDmMyY%'; | |
| var value = ''; | |
| var today = new Date(); | |
| // get the numbers | |
| weekday = today.getDay(); | |
| month = today.getMonth(); | |
| year=today.getYear(); | |
| if(year > 1900) year -= 1900; // correct for year | |
| date = today.getDate(); | |
| var days = new makearray(7); | |
| days[0] = 'Sunday'; | |
| days[1] = 'Monday'; | |
| days[2] = 'Tuesday'; | |
| days[3] = 'Wednesday'; | |
| days[4] = 'Thursday'; | |
| days[5] = 'Friday'; | |
| days[6] = 'Saturday'; | |
| var months = new makearray(12); | |
| months[0] = 'January'; | |
| months[1] = 'February'; | |
| months[2] = 'March'; | |
| months[3] = 'April'; | |
| months[4] = 'May'; | |
| months[5] = 'June'; | |
| months[6] = 'July'; | |
| months[7] = 'August'; | |
| months[8] = 'September'; | |
| months[9] = 'October'; | |
| months[10] = 'November'; | |
| months[11] = 'December'; | |
| var pos = 0; | |
| while (pos < format.length) { | |
| if( format.substring(pos,pos+1) != '%') | |
| { | |
| document.write(format.substring(pos,pos+1)); | |
| pos++; | |
| continue; | |
| } else { | |
| if (!IsIn(format.substring(pos,pos+1), operators)) { document.write(format.substring(pos,pos+1)); | |
| pos++; | |
| continue; | |
| } else { | |
| if ( format.substring(pos,pos+1) == '%') { | |
| pos++; // look ahead | |
| if (format.substring(pos,pos+1) == '%') | |
| { | |
| document.write('%'); | |
| pos++; | |
| continue; | |
| } else { | |
| if (format.substring(pos,pos+1) == 'd') | |
| { | |
| if(twoplace) LeadZero(date); | |
| document.write(date); | |
| pos++; | |
| continue; | |
| } else { if (format.substring(pos,pos+1) == 'A') | |
| { document.write(days[weekday]); | |
| pos++; | |
| continue; | |
| } else { | |
| if (format.substring(pos,pos+1) == 'a') | |
| { | |
| document.write(days[weekday].substring(0,3)); | |
| pos++; | |
| continue; | |
| } else { | |
| if (format.substring(pos,pos+1) == 'm') | |
| { | |
| if(twoplace) LeadZero(month+1); | |
| document.write(month+1); | |
| pos++; | |
| continue; | |
| } else { | |
| if (format.substring(pos,pos+1) == 'B') | |
| { | |
| document.write(months[month]); | |
| pos++; | |
| continue; | |
| } else { | |
| if (format.substring(pos,pos+1) == 'b') | |
| { document.write(months[month].substring(0,3)); | |
| pos++; | |
| continue; | |
| } else { | |
| if (format.substring(pos,pos+1) == 'y') | |
| { | |
| document.write(year); | |
| pos++; | |
| continue; | |
| } else { | |
| if (format.substring(pos,pos+1) == 'Y') | |
| { | |
| document.write(1900 + year); | |
| pos++; | |
| continue; | |
| } | |
| pos++; // ignore the char | |
| } | |
| } } } } } } } } } } } } | |
| //--></script> | |
| <!--[if gte mso 9]><xml> | |
| <mso:CustomDocumentProperties> | |
| <mso:Categories msdt:dt="string">Webpage</mso:Categories> | |
| </mso:CustomDocumentProperties> | |
| </xml><![endif]--> | |
| <meta name="Microsoft Border" content="none"> | |
| </head> | |
| <body bgcolor="#FFFFC6"> | |
| <!--webbot bot="Include" tag="BODY" u-include="0nav.htm" startspan --> | |
| <div align="center"><center> | |
| <table border="0" cellspacing="0" cellpadding="0" width="614" style="border-style: outset" height="110"> | |
| <tr> | |
| <td valign="middle" align="center" rowspan="3" width="299" style="border-style: outset" bgcolor="#FFFFFF"> | |
| <p align="center"><img border="0" src="mylogo/MindconText.jpg" width="210" | |
| height="54"><b><font color="#000000" face="Arial"><br> | |
| Knowledge is | |
| power. Plug yourself in.</font></b></td> | |
| <td valign="bottom" bgcolor="#C0C0C0" align="center" width="225" colspan="2" height="24"><strong><em>Your credit card is </em><a href="notfound.htm" target="_blank"><span | |
| style="background-color: rgb(255,255,255)">safe</span></a><em> here.</em></strong></td> | |
| </tr> | |
| <tr> | |
| <td valign="middle" bgcolor="#FFFFFF" align="center" width="113" style="border-style: inset" height="16"><font face="Arial" | |
| size="4"><strong><a href="search.htm" target="_blank"><span | |
| style="background-color: rgb(255,255,255)">Search</span></a></strong></font></td> | |
| <td valign="middle" bgcolor="#FFFFFF" align="center" width="112" style="border-style: inset" height="16"><font face="Arial" | |
| size="4"><strong><span | |
| style="background-color: rgb(255,255,255)"><a href="index.html" target="_blank">HOME</a> </span></strong></font></td> | |
| </tr> | |
| <tr> | |
| <td valign="middle" bgcolor="#C0C0C0" align="center" width="225" style="border-style: inset" height="16" colspan="2"><p><em><strong>Page | |
| down to contact us</strong></em></td> | |
| </tr> | |
| <tr> | |
| <td colspan="3" style="border-style: inset" bgcolor="#FFFFFF"> | |
| <p align="center"><strong><font face="Arial Narrow" size="4"><a href="courses/index.htm" target="_blank">Learning</a> | | |
| <a href="freestuff.htm" target="_blank">Freebies</a> | | |
| <a href="library/index.htm" target="_blank">Library</a> | | |
| <a href="news/index.htm" target="_blank">News</a> | | |
| <a href="stores.htm" target="_blank">Shopping</a> | |
| | <a href="weather/index.htm" target="_blank">Weather</a> | |
| || </font><font face="Arial Narrow" size="3"> <a href="advertise.htm" target="_blank">Advertise</a> | | |
| <a href="webmasters/index.htm" target="_blank">Webmaster$</a></font></strong></p> | |
| </td> | |
| </tr> | |
| </table> | |
| </center></div> | |
| <!--webbot bot="Include" endspan i-checksum="58781" --> | |
| <blockquote> | |
| <p align="center"> </p> | |
| <p><i><br> | |
| Mindconnection</i>--our name and theme. Our products and services--many | |
| of them free--are resources to help you make the | |
| most of your mind, your time, and your life. Thousands of people visit | |
| us for over three hours at a time--must be a reason why.... <b>Today is <!--webbot bot="DATEFORMAT" startspan | |
| Preview="Sunday" s-dateformat="%A" clientside b-twoplaces="0" --> <script language="JavaScript"><!-- | |
| DateFormat('%A',0); | |
| //--></script> | |
| <!--webbot bot="DATEFORMAT" i-CheckSum="41755" endspan --> | |
| -- make the most of it!</b></p> | |
| <div align="center"><center><table border="0" width="603" cellspacing="4" cellpadding="4"> | |
| <tr> | |
| <td bgcolor="#FFFFFF"> | |
| <p align="center"><font size="4"><a href="courses/index.htm">Click | |
| here to be smarter, more successful, and happier.</a></font></p> | |
| </td> | |
| </tr> | |
| </table> | |
| </center></div><div align="center"><table border="0" width="600" cellspacing="4" cellpadding="4"> | |
| <tr> | |
| <td valign="middle" bgcolor="#FFFFFF"> | |
| <p align="right"><font size="4"><a href="stores.htm">Shop</a> with | |
| confidence:</font></td> | |
| <center> | |
| <td valign="middle" bgcolor="#FFFFFF"><font size="4"><a href="http://208.8.12.151/pereport.cfm?key=13263"><img src="http://www.thepubliceye.com/monitor5.gif" border="0" width="150" height="65" name="JImage1"></a></font></td> | |
| <td bgcolor="#80FFFF" width="273" valign="top" rowspan="2"><table border="0" cellpadding="0" cellspacing="1" width="240" height="170"> | |
| <tr> | |
| <td width="150" align="center" bgcolor="#C0C0C0" height="25"><font face="Arial,Helvetica" size="-1" color="#000000"><b>Index</b></font></td> | |
| <td width="75" align="center" bgcolor="#C0C0C0" height="25"><font face="Arial,Helvetica" size="-1" color="#000000"><b>Value</b></font></td> | |
| <td width="75" align="center" bgcolor="#C0C0C0" height="25"><font face="Arial,Helvetica" size="-1" color="#000000"><b>Change</b></font></td> | |
| <td width="225" align="center" rowspan="6" height="166"><a href="http://fc.stockpoint.com/mindconn/stockinput.asp?Source=MINDCONN"><img src="images/quotes.gif" BORDER="0" alt="quotes;stock quotes,stockpoint,mutual fund prices,financial markets,stock prices,yahoo stock quotes,stocks,stock prices,stock quotes,mutual fund prices,equity prices,share prices,mutual fund quotes,trading,dow,stock prince information,stock quotes,stockpoint,mutual fund prices,financial markets,stock prices,yahoo stock quotes,stocks,stock prices,stock quotes,mutual fund prices,equity prices,share prices,mutual fund quotes,trading,dow,stock prince information" name="JImage2" width="100" height="80"></a><br> | |
| <a href="http://headlines.isyndicate.com/rcscript/?user=xnvsowcf&hg=http://www.mindconnection.com/mylogo/mylogo.gif"><img src="images/marketnews.gif" alt="marketnews.gif (4609 bytes)" name="JImage3" width="100" height="80"></a></td> | |
| </tr> | |
| <tr> | |
| <td width="150" height="25" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">Dow Jones</font></td> | |
| <td width="75" align="right" height="25" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">9,467.40</font></td> | |
| <td width="75" align="right" height="25" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">191.521 </font></td> | |
| </tr> | |
| <tr> | |
| <td width="150" height="25" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">NASDAQ</font></td> | |
| <td width="75" align="right" height="25" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">2,292.89</font></td> | |
| <td width="75" align="right" height="25" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">27.6899 </font></td> | |
| </tr> | |
| <tr> | |
| <td width="150" height="25" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">S&P 500</font></td> | |
| <td width="75" align="right" height="25" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">1,246.64</font></td> | |
| <td width="75" align="right" height="25" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">18.9401 </font></td> | |
| </tr> | |
| <tr> | |
| <td width="150" height="26" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">Transportation</font></td> | |
| <td width="75" align="right" height="26" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">3,255.18</font></td> | |
| <td width="75" align="right" height="26" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">6.49 </font></td> | |
| </tr> | |
| <tr> | |
| <td width="150" height="30" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">30 Year Treasury</font></td> | |
| <td width="75" align="right" height="30" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">5.68%</font></td> | |
| <td width="75" align="right" height="30" bgcolor="#FFFFFF"><font FACE="Arial,Helvetica" SIZE="-1">0.006 </font></td> | |
| </tr> | |
| </table> | |
| <p align="center"><strong><a href="library/business/stockquotes.htm">More stock market | |
| information</a></strong></td> | |
| </center></tr> | |
| <tr> | |
| <td valign="middle" width="303" bgcolor="#FFFFFF" colspan="2"><font size="4"><em>Convenience, | |
| good selection, good prices, fast delivery</em>....<br> | |
| <a href="http://mindconnection.pcflowers.com" target="_blank"><br> | |
| Flowers</a>, <a href="personals.htm">personals</a>, <a href="fitness.htm">fitness</a>, <a href="lingerie.htm">lingerie</a>, | |
| <a href="books.htm">books</a>, <a href="http://artuframe.bfast.com/artuframe/click?sourceid=259031&categoryid=art_gallery">art</a>, <a href="http://www.atyouroffice.com/">office supplies</a>, | |
| <a href="movies.htm">movies</a>, <a href="toys.htm">toys</a>....<i>all on | |
| <a href="library/computertips/secure.htm">secure servers</a>.<br> | |
| </i></font></td> | |
| </tr> | |
| <tr> | |
| <td valign="top" width="576" colspan="3" bgcolor="#FFFFFF"><font size="4"><a href="library/computertips/secure.htm">Your credit card | |
| info. is safe here</a> and we don't | |
| trick you into buying anything you don't want. We believe profits will follow integrity | |
| and service.</font></td> | |
| </tr> | |
| <tr> | |
| <td colspan="3"> | |
| <p align="center"><font size="4"><a href="freestuff.htm">FREE stuff</a>, updated often: <a href="recipes/recipemenu.htm">recipes</a>, | |
| news, tech help, how to be <a href="leanbody.htm">lean</a>...</font></td> | |
| </tr> | |
| </table> | |
| </div> | |
| </blockquote> | |
| <div align="center"><center> | |
| <table border="0" cellpadding="3" width="600"> | |
| <tr> | |
| <td bgcolor="#FFFFFF"><p><strong><i>From the e-mails we like to get | |
| department....<br> | |
| </i><br> | |
| Dear | |
| Mark,<br> | |
| Thanks for all your help. When I first found your site, it was because of the inspiration | |
| page--I needed inspiration just to keep going in life. I was depressed because I was fat, | |
| my husband didn't seem to want me, and I just had no energy. Then I found your fitness | |
| page (by the way, you look really good!). Today, I just got my second order of lingerie | |
| from your site. Actually, Steve ordered it for me. You have changed my life. Thanks. Maybe | |
| you should rename Mindconnection to Lifeconnection, because that's what it's been for me. | |
| -- Jill B.</strong></p> | |
| <p align="center"><a href="testimonials.htm"><strong>Click here for other testimonials</strong></a></td> | |
| </tr> | |
| </table> | |
| </center></div> | |
| | |
| <p align="left">Keywords that may have brought you here: learning, career | |
| success, free contests, artwork, | |
| mindconnection, recipes, bestseller books, fitness information, losing | |
| weight, lingerie, project management courses, education, movies, | |
| music, office supplies, online shopping, personals, free | |
| information, computer tips</p> | |
| <div align="center"> | |
| <center> | |
| <table border="0" cellpadding="0" cellspacing="0" width="600"> | |
| <tr> | |
| <td align="left" valign="middle"><a href="http://click.linksynergy.com/fs-bin/stat?id=Di1GaVR0BXQ&offerid=9505.3&type=4&subid=0"><img border="0" src="images/watchbtn_big_blue.gif" width="143" height="48"></a></td> | |
| <td valign="bottom"> | |
| <p align="right"> <a href="http://member.linkexchange.com/cgi-bin/fc/fastcounter-login?448784" target="_top"> | |
| <!--<img border="0" src="http://fastcounter.linkexchange.com/fastcounter?448784+897575" alt="books,personals,online shopping,free stuff,free contests,artwork,autos,bed,bath,books,chef supplies,email,fitness products,treadmills,home decor,hot sauce,lingerie,linux,magazines,movies,music,office supplies,training,romance,toys,travel,online shopping,free information,tech tips,computer help,free contests, artwork, mindconnection, car pricing, recipes, bestseller books, chef supplies, fitness information, losing weight, lingerie, tax help, project management courses, education, movies, music, office supplies, toys, dog toys, online shopping, personals, free information, tech tips, computer help, travel" lowsrc="free%20contests,artwork,autos,bed,bath,books,chef%20supplies,online%20shopping,free%20stuff,free%20contests,artwork,autos,bed,bath,books,chef%20supplies,fitness%20products,treadmills,home%20decor,hot%20sauce,lingerie,linux,magazines,movies,music,office%20supplies,romance,toys,travel,online%20shopping,free%20information,tech%20tips,computer%20help,best%20selling%20books,personals,online%20shopping,free%20stuff,artwork,autos,bed,bath,books,chef%20supplies,fitness%20products,treadmills,home%20decor,hot%20sauce,lingerie,linux,magazines,movies,music,office%20supplies,romance,toys,travel,online%20shopping,free%20information,tech%20tips,computer%20help" width="90" height="16" name="JImage5"> --> | |
| </a> <!-- END LE FASTCOUNTER CODE --><br> | |
| <!-- BEGIN LE FASTCOUNTER LINK --></p> | |
| </td> | |
| </tr> | |
| </table> | |
| </center> | |
| </div> | |
| <p align="right"><!--webbot bot="Include" | |
| U-Include="_borders/bottom_home.htm" TAG="BODY" startspan --> | |
| <div align="center"> | |
| <center> | |
| <table border="1" width="600"> | |
| <tr> | |
| <td bgcolor="#FFFFFF"> | |
| <h3 align="center" style="border-style: outset"><b><font color="#FF0000" face="Arial"><a href="referral_form.html">Use our form</a> | |
| </font><font face="Arial" color="#000000"> to | |
| tell your friends about Mindconnection<br> | |
| and get a chance to</font><font color="#FF0000" face="Arial"> <a href="contests/poloshirt.htm" target="_blank"> win a great-looking polo | |
| shirt</a></font><font face="Arial" color="#000000">.</font></b></h3> | |
| </td> | |
| </tr> | |
| </table> | |
| </center> | |
| </div> | |
| <h3 align="center"><font color="#FF0000" face="Arial">Mindconnection does not reveal information about you to 3rd parties. Ever.<br> | |
| <a href="advertise/privacy.htm" target="_blank">See our privacy statement.</a></font></h3> | |
| <div align="center"><center> | |
| <table border="0" cellpadding="0" cellspacing="0"> | |
| <tr> | |
| <td bgcolor="#FFFFFF" bordercolor="#FFFFFF"> | |
| <h4><b> | |
| <font face="Arial"> | |
| Mindconnection is | |
| a <a href="advertise/stats/security.htm" target="_blank"> safe</a> place to | |
| shop.</font></b> | |
| <a href="http://www.americanexpress.com/cards/online_guarantee" target="_blank"><br> | |
| <img src="banners/multicard_bk_visa_mc.gif" alt="multicard_bk_visa_mc.gif (7207 bytes)" width="318" height="59"></a></h4> | |
| </td> | |
| <td valign="middle" bordercolor="#FFFFFF" bgcolor="#FFFFFF"> | |
| <p align="center"> <a href="http://www.midnite-access.com/ecommerce/" target="_blank"><img | |
| border="0" src="banners/ecommercereportingassoc.jpg" width="100" height="40"></a></p> | |
| </td> | |
| <td bordercolor="#FFFFFF" bgcolor="#FFFFFF"><a href="http://208.8.12.151/pereport.cfm?key=13263" target="_blank"><img src="http://www.thepubliceye.com/monitor9.gif" border="0" width="227" height="77"></a></td> | |
| </tr> | |
| </table> | |
| </center></div> | |
| <div align="center"><center> | |
| <table border="0" cellpadding="0" cellspacing="0" width="600"> | |
| <tr> | |
| <td bgcolor="#FFFFFF" width="493"><ul> | |
| <li><strong><a href="advertise.htm" target="_blank">Advertise on Mindconnection</a> | |
| (where visits last 3 hrs: see <a href="advertise.htm">stats</a>)</strong></li> | |
| <li><strong><a href="mailto:comments@mindconnection.com?Visitor comments">E-mail us<font size="3"> | |
| (comments@mindconnection.com)</font></a><font size="3"> or </font> <a href="feedback.html">Feedback Form us</a></strong></li> | |
| <li><strong>Please <a href="mailto:webmaster@mindconnection.com?subject=How I found Mindconnection">tell us how | |
| you found Mindconnection</a></strong> </li> | |
| <li><a href="jokes.htm"><strong>Humor list--sign up for free jokes!</strong></a></li> | |
| <li><strong><a href="polls/index.htm" target="_blank">Polls</a>--register your | |
| opinion, and see what others think!</strong></li> | |
| <li><strong><a href="testimonials.htm" target="_blank">Testimonials--what | |
| people say about us</a> (the good things, anyhow)</strong></li> | |
| </ul> | |
| </td> | |
| <td bgcolor="#FFFFFF" width="103"> | |
| <p align="center"> | |
| Mindconnection<br> | |
| is an official...<a href="http://www.learningfountain.com" target="_blank"><img | |
| border="0" src="images/Ledfoun5.gif" width="86" height="100"></a> | |
| </p> | |
| </td> | |
| </tr> | |
| </table> | |
| </center></div><div align="center"><center> | |
| <table border="0" cellpadding="0" cellspacing="0" width="600"> | |
| <tr> | |
| <td bgcolor="#FFFFFF" width="334"><p align="right"><strong> <a href="mailto:webmaster@mindconnection.com?Subject=Yo! Mindconnection needs fixing!" target="_blank">Nail | |
| the Webmaster</a> or click here: </strong></td> | |
| <td bgcolor="#FFFFFF" width="262"> | |
| <!--Start--><a href="http://www.forkinthehead.com/cgi-bin/ms2/wilding/efork_display?serial=769" target="_blank"><img src="http://www.forkinthehead.com/images/forkme.gif" alt="Fork Us!" width="108" border="1" height="36"></a> | |
| | |
| </td> | |
| </tr> | |
| </table> | |
| </center></div> | |
| <h3 align="left"><strong>Don't make <i> all</i> of your communication electronic: <em>hug someone today</em>. | |
| (sorry, no hyperlink)</strong> | |
| </h3> | |
| <h5>Copyright © 1997-2000 Mindconnection, Mindconnection World Headquarters, | |
| Merriam, KS<br> | |
| Last Updated March 22, 2000</h5> | |
| <!--webbot bot="Include" endspan i-checksum="42235" --> | |
| </body> | |
| </html> | |
| <!-- www.attrition.org web hack mirror - watermark or something --> |