CF references the application.cfm file on it's own. If there is one in the
directory then cf loads it before every page in the directory loads. so
anything in the application.cfm is loaded on top of each page. so no matter
what page the user tries to access in the directory they will always get
bumped to the login page.

J.



John Wilker
Web Applications Consultant
Allaire Certified ColdFusion Developer

Office: 909-943-8428
www.billtracker.org <http://www.billtracker.org>


-----Original Message-----
From: Julia Green [mailto:[EMAIL PROTECTED]]
Sent: Sunday, March 18, 2001 2:09 PM
To: CF-Talk
Subject: Re: Attached is welcome.cfm and index2.cfm


Could I ask a really stupid question...ok I get how to create a
application.cfm file...
but how do I refer to the application.cfm file from the welcome.cfm file.
Also how
do I create a cookie on the welcome.cfm page to indicate a successful login?

Sorry for my ignorance.

The following goes in the application.cfm file, not  the index2.cfm or the
welcome.cfm,
right?

<CFIF NOT IsDefined("COOKIE.UserName")>
<CFLOCATION URL="index2.cfm">
</CFIF>

<CFIF NOT IsDefined("COOKIE.Password")>
<CFLOCATION URL="index2.cfm">
</CFIF>
----- Original Message -----
From: John Wilker <[EMAIL PROTECTED]>
To: CF-Talk <[EMAIL PROTECTED]>
Sent: Sunday, March 18, 2001 4:46 PM
Subject: RE: Attached is welcome.cfm and index2.cfm


> why not have the welcome.cfm page create a cookie to indicate a successful
> login. then just put an application.cfm file that has this in it
>
> <CFIF NOT IsDefined("COOKIE.whatever")>
> <CFLOCATION.....>
> </CFIF>
>
> That should provide you with basic security so that unless the person has
> logged in they will get booted over to the login page.
>
> Instead of a cookie you could use SESSION or client vars, whatever you
need.
>
> That help some?
>
> J.
>
>
> John Wilker
> Web Applications Consultant
> Allaire Certified ColdFusion Developer
>
> Office: 909-943-8428
> www.billtracker.org <http://www.billtracker.org>
>
>
> -----Original Message-----
> From: Julia Green [mailto:[EMAIL PROTECTED]]
> Sent: Sunday, March 18, 2001 1:23 PM
> To: CF-Talk
> Subject: Re: Attached is welcome.cfm and index2.cfm
>
>
> Whoof --
>
> I just looked at Chapter 17 -- yikes...is there anything else less
> complicated!
>
> I have a index2.cfm with a UserName and Password fields,
> then I have a welcome.cfm form which responds with a Welcome UserName
> and access...
>
> It should just be about 4 lines...not all those applications and cferror
> throws...
>
> Could you help?
>
> Thanks --
>
> Julia Green
> Julia Computer Consulting
> PO Box 279
> Watertown MA 02471-0279
> http://www.juliagreen.com
> Email:  [EMAIL PROTECTED]
> Phone:  617-926-3413
> FAX:  413-771-0306
>
> ----- Original Message -----
> From: Arden Weiss <[EMAIL PROTECTED]>
> To: CF-Talk <[EMAIL PROTECTED]>
> Sent: Sunday, March 18, 2001 3:52 PM
> Subject: RE: Attached is welcome.cfm and index2.cfm
>
>
> > Chapter 17 of Sybex's Mastering Cold Fusion has a complete working
example
> > that you can lift and use directly  for this along with all other info
you
> > will want to put into your application.cfm
> >
> > A must-have book.
> >
> >      ^
> >     / \__
> >    (    @\___
> >   /          O
> >  /    (_____/
> > /_____/
> > Whoof...
> > 410-757-3487
> >
> > -----Original Message-----
> > From: Julia Green [SMTP:[EMAIL PROTECTED]]
> > Sent: Sunday, March 18, 2001 1:59 PM
> > To: CF-Talk
> > Subject: Attached is welcome.cfm and index2.cfm
> >
> > This is a multi-part message in MIME format.
> >
> > ------=_NextPart_000_0020_01C0AFB3.885EE0E0
> > Content-Type: multipart/alternative;
> > boundary="----=_NextPart_001_0021_01C0AFB3.885EE0E0"
> >
> >
> > ------=_NextPart_001_0021_01C0AFB3.885EE0E0
> > Content-Type: text/plain;
> > charset="iso-8859-1"
> > Content-Transfer-Encoding: quoted-printable
> >
> > I have a database that stores password and usernames.
> > A username and  password for index2.cfm is:
> >
> > juliagreen
> > davis
> >
> > The problem is when I access http://www.dautolink.com/welcome.cfm
> > directly without going through the index2.cfm password page, how do I
> > default to an error page without having the cf errors come up...I know =
> > it
> > has something to do with session variables, I just don't know how to use
=
> > them...
> >
> > The form is login_form in index2.cfm, and if the password is correct, =
> > you get
> > welcome.cfm to come up...
> >
> > The 2 cfm pages are attached...
> >
> >
> > Julia Green
> > Julia Computer Consulting
> > PO Box 279
> > Watertown MA 02471-0279
> > http://www.juliagreen.com
> > Email:  [EMAIL PROTECTED]
> > Phone:  617-926-3413
> > FAX:  413-771-0306=20
> > =20
> >
> > ------=_NextPart_001_0021_01C0AFB3.885EE0E0
> > Content-Type: text/html;
> > charset="iso-8859-1"
> > Content-Transfer-Encoding: quoted-printable
> >
> > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
> > <HTML><HEAD>
> > <META content=3D"text/html; charset=3Diso-8859-1" =
> > http-equiv=3DContent-Type>
> > <META content=3D"MSHTML 5.00.2614.3500" name=3DGENERATOR>
> > <STYLE></STYLE>
> > </HEAD>
> > <BODY bgColor=3D#ffffff>
> > <DIV><FONT face=3DArial size=3D2>I have a database that stores password
=
> > and=20
> > usernames.</FONT></DIV>
> > <DIV><FONT face=3DArial size=3D2>A username and&nbsp; password for =
> > index2.cfm=20
> > is:</FONT></DIV>
> > <DIV>&nbsp;</DIV>
> > <DIV><FONT face=3DArial size=3D2>juliagreen</FONT></DIV>
> > <DIV><FONT face=3DArial size=3D2>davis</FONT></DIV>
> > <DIV>&nbsp;</DIV>
> > <DIV><FONT face=3DArial size=3D2>The problem is when I access <A=20
> >
href=3D"http://www.dautolink.com/welcome.cfm">http://www.dautolink.com/we=
> > lcome.cfm</A></FONT></DIV>
> > <DIV><FONT face=3DArial size=3D2>directly without going through the =
> > index2.cfm=20
> > password page, how do I</FONT></DIV>
> > <DIV><FONT face=3DArial size=3D2>default to an error page without having
=
> > the cf=20
> > errors come up...I know it</FONT></DIV>
> > <DIV><FONT face=3DArial size=3D2>has something to do with session =
> > variables, I just=20
> > don't know how to use them...</FONT></DIV>
> > <DIV>&nbsp;</DIV>
> > <DIV><FONT face=3DArial size=3D2>The form is login_form in index2.cfm, =
> > and if the=20
> > password is correct, you get</FONT></DIV>
> > <DIV><FONT face=3DArial size=3D2>welcome.cfm to come up...</FONT></DIV>
> > <DIV>&nbsp;</DIV>
> > <DIV><FONT face=3DArial size=3D2>The 2 cfm pages are =
> > attached...</FONT></DIV>
> > <DIV>&nbsp;</DIV>
> > <DIV>&nbsp;</DIV>
> > <DIV><FONT face=3DArial size=3D2>Julia Green<BR>Julia Computer =
> > Consulting<BR>PO Box=20
> > 279<BR>Watertown MA 02471-0279<BR><A=20
> >
href=3D"http://www.juliagreen.com">http://www.juliagreen.com</A><BR>Email=
> > :&nbsp;=20
> > <A href=3D"mailto:[EMAIL PROTECTED]">[EMAIL PROTECTED]</A><BR>Phone:&nbsp;
=
> >
> > 617-926-3413<BR>FAX:&nbsp; 413-771-0306 =
> > <BR>&nbsp;</FONT></DIV></BODY></HTML>
> >
> > ------=_NextPart_001_0021_01C0AFB3.885EE0E0--
> >
> > ------=_NextPart_000_0020_01C0AFB3.885EE0E0
> > Content-Type: application/octet-stream;
> > name="index2.cfm"
> > Content-Transfer-Encoding: quoted-printable
> > Content-Disposition: attachment;
> > filename="index2.cfm"
> >
> > <!-- begin application.cfm -->
> > <CFAPPLICATION NAME=3D"login_form"
> > SESSIONMANAGEMENT=3D"Yes"
> > SETCLIENTCOOKIES=3D"Yes"
> > SESSIONTIMEOUT=3D"#CreateTimeSpan(0, 0, 20, 0)#">
> > =20
> >
> >
> > =09
> > =09
> > =09
> > =09
> > =09
> > =09
> > =09
> > =09
> > =09
> > =09
> >
> >
> >
> >
> > <!-- end application.cfm --->
> > <html>
> > <head>
> > <title>Untitled Document</title>
> > <script language=3D"JavaScript">
> > <!--
> >
> > if (document.images) {
> >   image1on =3D new Image();
> >   image1on.src =3D "/global_images/lbhomeov.jpg";
> >
> >   image2on =3D new Image();
> >   image2on.src =3D "/global_images/lbabout_usov.jpg";
> >
> >   image3on =3D new Image();
> >   image3on.src =3D "/global_images/lbdealersov.jpg";
> >
> >   image4on =3D new Image();
> >   image4on.src =3D "/global_images/lbsellersov.jpg";
> >
> >   image5on =3D new Image();
> >   image5on.src =3D "/global_images/lbrentalsov.jpg";
> >
> >   image6on =3D new Image();
> >   image6on.src =3D "/global_images/lbvans___mini_sov.jpg";
> >
> >   image7on =3D new Image();
> >   image7on.src =3D "/global_images/lbrv_sov.jpg";
> >
> >   image8on =3D new Image();
> >   image8on.src =3D "/global_images/lbconversionsov.jpg";
> >
> >   image9on =3D new Image();
> >   image9on.src =3D "/global_images/lbhand_controlsov.jpg";
> >
> >   image10on =3D new Image();
> >   image10on.src =3D "/global_images/lbliftsov.jpg";
> >
> >   image11on =3D new Image();
> >   image11on.src =3D "/global_images/lbrampsov.jpg";
> >
> >   image12on =3D new Image();
> >   image12on.src =3D "/global_images/lbrestraintsov.jpg";
> >
> >   image13on =3D new Image();
> >   image13on.src =3D "/global_images/lbaccessoriesov.jpg";
> >
> >   image14on =3D new Image();
> >   image14on.src =3D "/global_images/lbcontact_us.jpg";
> >
> >   image1off =3D new Image();
> >   image1off.src =3D "/global_images/lbhome.jpg";
> >
> >   image2off =3D new Image();
> >   image2off.src =3D "/global_images/lbabout_us.jpg";
> >
> >   image3off =3D new Image();
> >   image3off.src =3D "/global_images/lbdealers.jpg";
> >
> >   image4off =3D new Image();
> >   image4off.src =3D "/global_images/lbsellers.jpg";
> >
> >   image5off =3D new Image();
> >   image5off.src =3D "/global_images/lbrentals.jpg";
> >
> >   image6off =3D new Image();
> >   image6off.src =3D "/global_images/lbvans___mini_s.jpg";
> >
> >   image7off =3D new Image();
> >   image7off.src =3D "/global_images/lbrv_s.jpg";
> >
> >   image8off =3D new Image();
> >   image8off.src =3D "/global_images/lbconversions.jpg";
> >
> >   image9off =3D new Image();
> >   image9off.src =3D "/global_images/lbhand_controls.jpg";
> >
> >   image10off =3D new Image();
> >   image10off.src =3D "/global_images/lblifts.jpg";
> >
> >   image11off =3D new Image();
> >   image11off.src =3D "/global_images/lbramps.jpg";
> >
> >   image12off =3D new Image();
> >   image12off.src =3D "/global_images/lbrestraints.jpg";
> >
> >   image13off =3D new Image();
> >   image13off.src =3D "/global_images/lbaccessories.jpg";
> >
> >   image14off =3D new Image();
> >   image14off.src =3D "/global_images/lbcontact_us.jpg";
> >
> > }
> >
> > function changeImages() {
> >   if (document.images) {
> >     for (var i=3D0; i<changeImages.arguments.length; i+=3D2) {
> >       document[changeImages.arguments[i]].src =3D =
> > eval(changeImages.arguments[i+1] + ".src");
> >     }
> >   }
> > }
> >
> > // -->
> > </script>
> >
> >
> > </head>
> >
> > <body bgcolor=3D"ffffff">
> > <table width=3D"761" border=3D"0" cellpadding=3D"0" cellspacing=3D"0" =
> > align=3D"left">
> >   <tr>
> >     <td width=3D"20%" height=3D"735" valign=3D"top" =
> > background=3D"/global_images/lbpane1_30_.jpg">=20
> >       <div align=3D"left">=20
> >         <table border=3D"0" cellspacing=3D"0" cellpadding=3D"0" >
> >           <tr>=20
> >             <td width=3D"150" height=3D"599">
> >               <table border=3D"0" cellspacing=3D"0" cellpadding=3D"0" >
> >                 <tr>
> >                   <td width=3D"12" height=3D"1"><img =
> > src=3D"/global_images/lbpane1_1_.jpg" border=3D"0" height=3D"1" =
> > width=3D"12" name=3D"lb" alt=3D""></td>
> >                   <td width=3D"127" height=3D"1"><img =
> > src=3D"/global_images/lbpane2_1_.jpg" border=3D"0" height=3D"1" =
> > width=3D"127" name=3D"lb1" alt=3D""></td>
> >                   <td width=3D"11" height=3D"1"><img =
> > src=3D"/global_images/lbpane3_1_.jpg" border=3D"0" height=3D"1" =
> > width=3D"11" name=3D"lb2" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"68" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_2_.jpg" border=3D"0" height=3D"68" =
> > width=3D"150" name=3D"lb3" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_3_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb4" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a href=3D"" =
> > onMouseOver=3D"changeImages('image1', 'image1on')" =
> > onMouseOut=3D"changeImages('image1', 'image1off')"><img name=3D"image1"
=
> > src=3D"/global_images/lbhome.jpg" alt=3D"Home" width=3D127 height=3D26 =
> > border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_3_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb6" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"4" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_4_.jpg" border=3D"0" height=3D"4" =
> > width=3D"150" name=3D"lb7" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_5_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb8" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a href=3D"" =
> > onMouseOver=3D"changeImages('image2', 'image2on')" =
> > onMouseOut=3D"changeImages('image2', 'image2off')"><img name=3D"image2"
=
> > src=3D"/global_images/lbabout_us.jpg" alt=3D"" width=3D127 height=3D26 =
> > border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_5_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb10" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"4" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_6_.jpg" border=3D"0" height=3D"4" =
> > width=3D"150" name=3D"lb11" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_7_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb12" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D9&category_na=
> > me=3DDealers" onMouseOver=3D"changeImages('image3', 'image3on')" =
> > onMouseOut=3D"changeImages('image3', 'image3off')"><img name=3D"image3"
=
> > src=3D"/global_images/lbdealers.jpg" alt=3D"" width=3D127 height=3D26 =
> > border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_7_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb14" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"4" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_8_.jpg" border=3D"0" height=3D"4" =
> > width=3D"150" name=3D"lb15" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_9_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb16" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D10&category_n=
> > ame=3DSellers" onMouseOver=3D"changeImages('image4', 'image4on')" =
> > onMouseOut=3D"changeImages('image4', 'image4off')"><img name=3D"image4"
=
> > src=3D"/global_images/lbsellers.jpg" alt=3D"" width=3D127 height=3D26 =
> > border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_9_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb18" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"5" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_10_.jpg" border=3D"0" height=3D"5" =
> > width=3D"150" name=3D"lb19" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_11_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb20" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D1&category_na=
> > me=3DRentals" onMouseOver=3D"changeImages('image5', 'image5on')" =
> > onMouseOut=3D"changeImages('image5', 'image5off')"><img name=3D"image5"
=
> > src=3D"/global_images/lbrentals.jpg" alt=3D"" width=3D127 height=3D26 =
> > border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_11_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb22" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"5" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_12_.jpg" border=3D"0" height=3D"5" =
> > width=3D"150" name=3D"lb23" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_13_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb24" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D8&category_na=
> > me=3DVans/Minivans" onMouseOver=3D"changeImages('image6', 'image6on')" =
> > onMouseOut=3D"changeImages('image6', 'image6off')"><img name=3D"image6"
=
> > src=3D"/global_images/lbvans___mini_s.jpg" alt=3D"" width=3D127 =
> > height=3D26 border=3D0></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_13_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb26" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"4" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_14_.jpg" border=3D"0" height=3D"4" =
> > width=3D"150" name=3D"lb27" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_15_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb28" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D7&category_na=
> > me=3DRV's" onMouseOver=3D"changeImages('image7', 'image7on')" =
> > onMouseOut=3D"changeImages('image7', 'image7off')"><img name=3D"image7"
=
> > src=3D"/global_images/lbrv_s.jpg" alt=3D"" width=3D127 height=3D26 =
> > border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_15_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb30" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"5" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_16_.jpg" border=3D"0" height=3D"5" =
> > width=3D"150" name=3D"lb31" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_17_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb32" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D11&category_n=
> > ame=3DConversions" onMouseOver=3D"changeImages('image8', 'image8on')" =
> > onMouseOut=3D"changeImages('image8', 'image8off')"><img name=3D"image8"
=
> > src=3D"/global_images/lbconversions.jpg" alt=3D"" width=3D127 =
> > height=3D26 border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_17_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb34" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"5" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_18_.jpg" border=3D"0" height=3D"5" =
> > width=3D"150" name=3D"lb35" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_19_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb36" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D5&category_na=
> > me=3DHand_Controls" onMouseOver=3D"changeImages('image9', 'image9on')" =
> > onMouseOut=3D"changeImages('image9', 'image9off')"><img name=3D"image9"
=
> > src=3D"/global_images/lbhand_controls.jpg" alt=3D"" width=3D127 =
> > height=3D26 border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_19_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb38" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"4" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_20_.jpg" border=3D"0" height=3D"4" =
> > width=3D"150" name=3D"lb39" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_21_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb40" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D3&category_na=
> > me=3DLifts" onMouseOver=3D"changeImages('image10', 'image10on')" =
> > onMouseOut=3D"changeImages('image10', 'image10off')"><img =
> > name=3D"image10" src=3D"/global_images/lblifts.jpg" alt=3D"" width=3D127
=
> > height=3D26 border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_21_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb42" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"5" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_22_.jpg" border=3D"0" height=3D"5" =
> > width=3D"150" name=3D"lb43" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_23_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb44" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D2&category_na=
> > me=3DRamps" onMouseOver=3D"changeImages('image11', 'image11on')" =
> > onMouseOut=3D"changeImages('image11', 'image11off')"><img =
> > name=3D"image11" src=3D"/global_images/lbramps.jpg" alt=3D"" width=3D127
=
> > height=3D26 border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_23_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb46" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"5" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_24_.jpg" border=3D"0" height=3D"5" =
> > width=3D"150" name=3D"lb47" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_25_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb48" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D4&category_na=
> > me=3DRestraints" onMouseOver=3D"changeImages('image12', 'image12on')" =
> > onMouseOut=3D"changeImages('image12', 'image12off')"><img =
> > name=3D"image12" src=3D"/global_images/lbrestraints.jpg" alt=3D"" =
> > width=3D127 height=3D26 border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_25_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb50" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"5" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_26_.jpg" border=3D"0" height=3D"5" =
> > width=3D"150" name=3D"lb51" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_27_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb52" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D15&category_n=
> > ame=3DAccessories" onMouseOver=3D"changeImages('image13', 'image13on')"
=
> > onMouseOut=3D"changeImages('image13', 'image13off')"><img =
> > name=3D"image13" src=3D"/global_images/lbaccessories.jpg" alt=3D"" =
> > width=3D127 height=3D26 border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_27_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb54" alt=3D""></td>
> >                 </tr>
> >             =20
> >
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_29_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb56" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a href=3D"" =
> > onMouseOver=3D"changeImages('image14', 'image14on')" =
> > onMouseOut=3D"changeImages('image14', 'image14off')"><img =
> > name=3D"image14" src=3D"/global_images/lbcontact_us.jpg" alt=3D"" =
> > width=3D127 height=3D26 border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_29_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb58" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"106" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_30_.jpg" border=3D"0" height=3D"106" =
> > width=3D"150" name=3D"lb59" alt=3D""></td>
> >                 </tr>
> >               </table>
> >             </td>
> >           </tr>
> >           <tr>=20
> >             <td><img src=3D"/global_images/is_single_pixel_gif.gif" =
> > alt=3D"" width=3D"150" height=3D"1"></td>
> >           </tr>
> >         </table>
> >        =20
> >       </div>
> >     </td>
> >     <td width=3D"80%" height=3D"735" valign=3D"top">=20
> >       <table width=3D"100%" border=3D"0" cellpadding=3D"0" =
> > cellspacing=3D"0" vspace=3D"0">
> >         <tr background=3D"/global_images/top.jpg">=20
> >           <td height=3D"31">=20
> >             <div align=3D"left"><img =
> > src=3D"/global_images/dlinkwords.gif" width=3D"375" height=3D"15"></div>
> >           </td>
> >         </tr>
> >       </table>
> >       <table width=3D"100%" border=3D"0" cellpadding=3D"0" =
> > cellspacing=3D"0">
> >         <tr bgcolor=3D"000000">=20
> >           <td width=3D"79%" bgcolor=3D"FFFFFF"><!-- BeginEditable =
> > "banner" -->=20
> >             <div align=3D"center"><img src=3D"/global_images/dodge6.gif"
=
> > width=3D"468" height=3D"60"></div>
> >             <!-- EndEditable --></td>
> >           <td width=3D"21%" bgcolor=3D"990000" valign=3D"top" =
> > align=3D"left">&nbsp; </td>
> >         </tr>
> >       </table>
> >       <table width=3D"100%" border=3D"0" cellpadding=3D"0" =
> > cellspacing=3D"0">
> >         <tr>=20
> >           <td height=3D"411" width=3D"79%" valign=3D"top"><!-- =
> > BeginEditable "main" -->=20
> >             <table width=3D"100%" border=3D"0" cellpadding=3D"0" =
> > cellspacing=3D"0">
> >               <tr>=20
> >                 <td height=3D"286" valign=3D"top">
> > =09
> > <!-- do not edit any code after this until you reach the tag that says =
> > you can -->
> >
> >
> > =09
> > <!-- begin qry_global_get_categories.cfm -->
> >
> >
> >
> > <!-- end qry_global_get_categories.cfm -->
> > <!-- begin dsp_default.cfm -->
> > <br>
> > <br>
> > Please select from the categories on the left.<br>
> > <br>
> >
> >
> > <!-- end dsp_default.cfm -->
> >
> >
> > =09
> > =09
> >
> >
> >
> > <!-- you can edit any code after this tag-->
> > </td>
> >               =20
> >               </tr>
> >             </table>
> >             <table width=3D"100%" border=3D"0">
> >               <tr valign=3D"top">=20
> >                 <td height=3D"512">=20
> >                   <table width=3D"100%" border=3D"0">
> >                     <tr>
> >                       <td height=3D"390">=20
> >                        &nbsp;
> >                       </td>
> >                     </tr>
> >                     <tr valign=3D"top" align=3D"center">=20
> >                       <td height=3D"44"><font face=3D"Arial, Helvetica,
=
> > sans-serif" size=3D"2">Copyright=20
> >                         =A9 2000 dautohlink.com All rights reserved <br>
> >                         For questions, comments, and concerns send mail
=
> > to [EMAIL PROTECTED]=20
> >                         </font> </td>
> >                     </tr>
> >                   </table>
> >                 </td>
> >               </tr>
> >             </table>
> >             <!-- EndEditable --></td>
> >           <td height=3D"411" width=3D"21%" valign=3D"top" =
> > bgcolor=3D"990000">=20
> >             <table width=3D"100%" border=3D"0" height=3D"203">
> >               <tr>=20
> >                 <td height=3D"175">=20
> >                   <center>
> >                     <b></b>
> >
> >
> >
> >                     <form name=3Dlogin_form action=3D"welcome.cfm" =
> > method=3Dpost>
> >                       <table border=3D0 bordercolor=3D"000000" =
> > cellpadding=3D5 cellspacing=3D0>
> >                         <tr bordercolor=3D"FFFFFF"
bgcolor=3D"FFFFFF">=20
> >                           <td height=3D"162"><font =
> > face=3D"Arial,Helvetica, sans-serif" color=3D"000000" =
> > size=3D"2"><b><font color=3D"003399">Get=20
> >                             Free Email !</font></b><br>
> >                             Email login:</font><font =
> > face=3D"Arial,Helvetica, sans-serif" color=3D"000000" size=3D"2"><br>
> >                             <font size=3D"2">=20
> >                             <input type=3D"text" name=3D"UserName" =
> > size=3D"10" value=3D"" maxlength=3D32>
> >                             </font><br>
> >
> >  =20
> >                             Password:<br>
> >                             <font size=3D"2">=20
> >                             <input  type=3Dpassword name=3D"Password" =
> > size=3D10 maxlength=3D32>
> >
> >                             </font>=20
> >                             <center>
> >                               <input type=3D"SUBMIT" value=3D"Login" =
> > name=3D"login">
> >
> >                             </center>
> >                             <div align=3D"center"><a =
> > href=3D"passwda.cfm"><font color=3D"0033CC">New=20
> >                               users Signup!</font></a></div>
> >                             </font>
> > <br>
> >                              <div align=3D"center"><a =
> > href=3D"forgot1.cfm"><font color=3D"0033CC">Did you forget your User =
> > Name or Password?</font></a></div>
> >                             </font></td>
> >                         </tr>
> >                       </table>
> >                     </form>
> >
> >
> >                   </center>
> >             </td>
> >               </tr>
> >             </table>
> >             <br>
> >       </td>
> >         </tr>
> >       </table>
> > </td>
> >   </tr>
> > </table>
> > </body>
> > </html>
> >
> > ------=_NextPart_000_0020_01C0AFB3.885EE0E0
> > Content-Type: application/octet-stream;
> > name="welcome.cfm"
> > Content-Transfer-Encoding: quoted-printable
> > Content-Disposition: attachment;
> > filename="welcome.cfm"
> >
> > <CFQUERY NAME=3D"gilwayb" DATASOURCE=3D"upload">
> >
> >   SELECT *
> >   FROM passwd
> >   WHERE USERNAME=3D'#FORM.UserName#' AND Password=3D'#FORM.Password#'
> >
> > </CFQUERY>
> >
> > <CFOUTPUT QUERY=3D"gilwayb">
> > <center>
> > <H1>WELCOME #FirstName# !</H1>
> > </center>
> > </CFOUTPUT>
> > <CFIF #gilwayb.RecordCount# EQ 0>
> > <CFLOCATION URL=3D"template2.cfm">
> > </CFIF>
> >
> > <!-- begin application.cfm -->
> >
> >
> > =20
> >
> >
> > =09
> > =09
> > =09
> > =09
> > =09
> > =09
> > =09
> > =09
> > =09
> > =09
> >
> >
> >
> >
> > <!-- end application.cfm --->
> > <html>
> > <head>
> > <title>Welcome!</title>
> > <script language=3D"JavaScript">
> > <!--
> >
> > if (document.images) {
> >   image1on =3D new Image();
> >   image1on.src =3D "/global_images/lbhomeov.jpg";
> >
> >   image2on =3D new Image();
> >   image2on.src =3D "/global_images/lbabout_usov.jpg";
> >
> >   image3on =3D new Image();
> >   image3on.src =3D "/global_images/lbdealersov.jpg";
> >
> >   image4on =3D new Image();
> >   image4on.src =3D "/global_images/lbsellersov.jpg";
> >
> >   image5on =3D new Image();
> >   image5on.src =3D "/global_images/lbrentalsov.jpg";
> >
> >   image6on =3D new Image();
> >   image6on.src =3D "/global_images/lbvans___mini_sov.jpg";
> >
> >   image7on =3D new Image();
> >   image7on.src =3D "/global_images/lbrv_sov.jpg";
> >
> >   image8on =3D new Image();
> >   image8on.src =3D "/global_images/lbconversionsov.jpg";
> >
> >   image9on =3D new Image();
> >   image9on.src =3D "/global_images/lbhand_controlsov.jpg";
> >
> >   image10on =3D new Image();
> >   image10on.src =3D "/global_images/lbliftsov.jpg";
> >
> >   image11on =3D new Image();
> >   image11on.src =3D "/global_images/lbrampsov.jpg";
> >
> >   image12on =3D new Image();
> >   image12on.src =3D "/global_images/lbrestraintsov.jpg";
> >
> >   image13on =3D new Image();
> >   image13on.src =3D "/global_images/lbaccessoriesov.jpg";
> >
> >   image14on =3D new Image();
> >   image14on.src =3D "/global_images/lbcontact_us.jpg";
> >
> >   image1off =3D new Image();
> >   image1off.src =3D "/global_images/lbhome.jpg";
> >
> >   image2off =3D new Image();
> >   image2off.src =3D "/global_images/lbabout_us.jpg";
> >
> >   image3off =3D new Image();
> >   image3off.src =3D "/global_images/lbdealers.jpg";
> >
> >   image4off =3D new Image();
> >   image4off.src =3D "/global_images/lbsellers.jpg";
> >
> >   image5off =3D new Image();
> >   image5off.src =3D "/global_images/lbrentals.jpg";
> >
> >   image6off =3D new Image();
> >   image6off.src =3D "/global_images/lbvans___mini_s.jpg";
> >
> >   image7off =3D new Image();
> >   image7off.src =3D "/global_images/lbrv_s.jpg";
> >
> >   image8off =3D new Image();
> >   image8off.src =3D "/global_images/lbconversions.jpg";
> >
> >   image9off =3D new Image();
> >   image9off.src =3D "/global_images/lbhand_controls.jpg";
> >
> >   image10off =3D new Image();
> >   image10off.src =3D "/global_images/lblifts.jpg";
> >
> >   image11off =3D new Image();
> >   image11off.src =3D "/global_images/lbramps.jpg";
> >
> >   image12off =3D new Image();
> >   image12off.src =3D "/global_images/lbrestraints.jpg";
> >
> >   image13off =3D new Image();
> >   image13off.src =3D "/global_images/lbaccessories.jpg";
> >
> >   image14off =3D new Image();
> >   image14off.src =3D "/global_images/lbcontact_us.jpg";
> >
> > }
> >
> > function changeImages() {
> >   if (document.images) {
> >     for (var i=3D0; i<changeImages.arguments.length; i+=3D2) {
> >       document[changeImages.arguments[i]].src =3D =
> > eval(changeImages.arguments[i+1] + ".src");
> >     }
> >   }
> > }
> >
> > // -->
> > </script>
> >
> >
> > </head>
> >
> > <body bgcolor=3D"ffffff">
> > <table width=3D"761" border=3D"0" cellpadding=3D"0" cellspacing=3D"0" =
> > align=3D"left">
> >   <tr>
> >     <td width=3D"20%" height=3D"735" valign=3D"top" =
> > background=3D"/global_images/lbpane1_30_.jpg">=20
> >       <div align=3D"left">=20
> >         <table border=3D"0" cellspacing=3D"0" cellpadding=3D"0" >
> >           <tr>=20
> >             <td width=3D"150" height=3D"599">
> >               <table border=3D"0" cellspacing=3D"0" cellpadding=3D"0" >
> >                 <tr>
> >                   <td width=3D"12" height=3D"1"><img =
> > src=3D"/global_images/lbpane1_1_.jpg" border=3D"0" height=3D"1" =
> > width=3D"12" name=3D"lb" alt=3D""></td>
> >                   <td width=3D"127" height=3D"1"><img =
> > src=3D"/global_images/lbpane2_1_.jpg" border=3D"0" height=3D"1" =
> > width=3D"127" name=3D"lb1" alt=3D""></td>
> >                   <td width=3D"11" height=3D"1"><img =
> > src=3D"/global_images/lbpane3_1_.jpg" border=3D"0" height=3D"1" =
> > width=3D"11" name=3D"lb2" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"68" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_2_.jpg" border=3D"0" height=3D"68" =
> > width=3D"150" name=3D"lb3" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_3_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb4" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a href=3D"" =
> > onMouseOver=3D"changeImages('image1', 'image1on')" =
> > onMouseOut=3D"changeImages('image1', 'image1off')"><img name=3D"image1"
=
> > src=3D"/global_images/lbhome.jpg" alt=3D"Home" width=3D127 height=3D26 =
> > border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_3_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb6" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"4" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_4_.jpg" border=3D"0" height=3D"4" =
> > width=3D"150" name=3D"lb7" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_5_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb8" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a href=3D"" =
> > onMouseOver=3D"changeImages('image2', 'image2on')" =
> > onMouseOut=3D"changeImages('image2', 'image2off')"><img name=3D"image2"
=
> > src=3D"/global_images/lbabout_us.jpg" alt=3D"" width=3D127 height=3D26 =
> > border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_5_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb10" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"4" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_6_.jpg" border=3D"0" height=3D"4" =
> > width=3D"150" name=3D"lb11" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_7_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb12" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D9&category_na=
> > me=3DDealers" onMouseOver=3D"changeImages('image3', 'image3on')" =
> > onMouseOut=3D"changeImages('image3', 'image3off')"><img name=3D"image3"
=
> > src=3D"/global_images/lbdealers.jpg" alt=3D"" width=3D127 height=3D26 =
> > border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_7_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb14" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"4" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_8_.jpg" border=3D"0" height=3D"4" =
> > width=3D"150" name=3D"lb15" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_9_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb16" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D10&category_n=
> > ame=3DSellers" onMouseOver=3D"changeImages('image4', 'image4on')" =
> > onMouseOut=3D"changeImages('image4', 'image4off')"><img name=3D"image4"
=
> > src=3D"/global_images/lbsellers.jpg" alt=3D"" width=3D127 height=3D26 =
> > border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_9_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb18" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"5" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_10_.jpg" border=3D"0" height=3D"5" =
> > width=3D"150" name=3D"lb19" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_11_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb20" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D1&category_na=
> > me=3DRentals" onMouseOver=3D"changeImages('image5', 'image5on')" =
> > onMouseOut=3D"changeImages('image5', 'image5off')"><img name=3D"image5"
=
> > src=3D"/global_images/lbrentals.jpg" alt=3D"" width=3D127 height=3D26 =
> > border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_11_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb22" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"5" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_12_.jpg" border=3D"0" height=3D"5" =
> > width=3D"150" name=3D"lb23" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_13_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb24" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D8&category_na=
> > me=3DVans/Minivans" onMouseOver=3D"changeImages('image6', 'image6on')" =
> > onMouseOut=3D"changeImages('image6', 'image6off')"><img name=3D"image6"
=
> > src=3D"/global_images/lbvans___mini_s.jpg" alt=3D"" width=3D127 =
> > height=3D26 border=3D0></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_13_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb26" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"4" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_14_.jpg" border=3D"0" height=3D"4" =
> > width=3D"150" name=3D"lb27" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_15_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb28" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D7&category_na=
> > me=3DRV's" onMouseOver=3D"changeImages('image7', 'image7on')" =
> > onMouseOut=3D"changeImages('image7', 'image7off')"><img name=3D"image7"
=
> > src=3D"/global_images/lbrv_s.jpg" alt=3D"" width=3D127 height=3D26 =
> > border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_15_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb30" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"5" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_16_.jpg" border=3D"0" height=3D"5" =
> > width=3D"150" name=3D"lb31" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_17_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb32" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D11&category_n=
> > ame=3DConversions" onMouseOver=3D"changeImages('image8', 'image8on')" =
> > onMouseOut=3D"changeImages('image8', 'image8off')"><img name=3D"image8"
=
> > src=3D"/global_images/lbconversions.jpg" alt=3D"" width=3D127 =
> > height=3D26 border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_17_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb34" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"5" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_18_.jpg" border=3D"0" height=3D"5" =
> > width=3D"150" name=3D"lb35" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_19_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb36" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D5&category_na=
> > me=3DHand_Controls" onMouseOver=3D"changeImages('image9', 'image9on')" =
> > onMouseOut=3D"changeImages('image9', 'image9off')"><img name=3D"image9"
=
> > src=3D"/global_images/lbhand_controls.jpg" alt=3D"" width=3D127 =
> > height=3D26 border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_19_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb38" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"4" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_20_.jpg" border=3D"0" height=3D"4" =
> > width=3D"150" name=3D"lb39" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_21_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb40" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D3&category_na=
> > me=3DLifts" onMouseOver=3D"changeImages('image10', 'image10on')" =
> > onMouseOut=3D"changeImages('image10', 'image10off')"><img =
> > name=3D"image10" src=3D"/global_images/lblifts.jpg" alt=3D"" width=3D127
=
> > height=3D26 border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_21_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb42" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"5" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_22_.jpg" border=3D"0" height=3D"5" =
> > width=3D"150" name=3D"lb43" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_23_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb44" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D2&category_na=
> > me=3DRamps" onMouseOver=3D"changeImages('image11', 'image11on')" =
> > onMouseOut=3D"changeImages('image11', 'image11off')"><img =
> > name=3D"image11" src=3D"/global_images/lbramps.jpg" alt=3D"" width=3D127
=
> > height=3D26 border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_23_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb46" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"5" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_24_.jpg" border=3D"0" height=3D"5" =
> > width=3D"150" name=3D"lb47" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_25_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb48" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D4&category_na=
> > me=3DRestraints" onMouseOver=3D"changeImages('image12', 'image12on')" =
> > onMouseOut=3D"changeImages('image12', 'image12off')"><img =
> > name=3D"image12" src=3D"/global_images/lbrestraints.jpg" alt=3D"" =
> > width=3D127 height=3D26 border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_25_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb50" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"5" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_26_.jpg" border=3D"0" height=3D"5" =
> > width=3D"150" name=3D"lb51" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_27_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb52" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a =
> >
href=3D"index.cfm?fuseaction=3Dcategory_search&categoryid=3D15&category_n=
> > ame=3DAccessories" onMouseOver=3D"changeImages('image13', 'image13on')"
=
> > onMouseOut=3D"changeImages('image13', 'image13off')"><img =
> > name=3D"image13" src=3D"/global_images/lbaccessories.jpg" alt=3D"" =
> > width=3D127 height=3D26 border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_27_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb54" alt=3D""></td>
> >                 </tr>
> >             =20
> >
> >                 <tr>
> >                   <td width=3D"12" height=3D"26"><img =
> > src=3D"/global_images/lbpane1_29_.jpg" border=3D"0" height=3D"26" =
> > width=3D"12" name=3D"lb56" alt=3D""></td>
> >                   <td width=3D"127" height=3D"26"><a href=3D"" =
> > onMouseOver=3D"changeImages('image14', 'image14on')" =
> > onMouseOut=3D"changeImages('image14', 'image14off')"><img =
> > name=3D"image14" src=3D"/global_images/lbcontact_us.jpg" alt=3D"" =
> > width=3D127 height=3D26 border=3D0></a></td>
> >                   <td width=3D"11" height=3D"26"><img =
> > src=3D"/global_images/lbpane3_29_.jpg" border=3D"0" height=3D"26" =
> > width=3D"11" name=3D"lb58" alt=3D""></td>
> >                 </tr>
> >                 <tr>
> >                   <td width=3D"150" height=3D"106" colspan=3D"3"><img =
> > src=3D"/global_images/lbpane1_30_.jpg" border=3D"0" height=3D"106" =
> > width=3D"150" name=3D"lb59" alt=3D""></td>
> >                 </tr>
> >               </table>
> >             </td>
> >           </tr>
> >           <tr>=20
> >             <td><img src=3D"/global_images/is_single_pixel_gif.gif" =
> > alt=3D"" width=3D"150" height=3D"1"></td>
> >           </tr>
> >         </table>
> >        =20
> >       </div>
> >     </td>
> >     <td width=3D"80%" height=3D"735" valign=3D"top">=20
> >       <table width=3D"100%" border=3D"0" cellpadding=3D"0" =
> > cellspacing=3D"0" vspace=3D"0">
> >         <tr background=3D"/global_images/top.jpg">=20
> >           <td height=3D"31">=20
> >             <div align=3D"left"><img =
> > src=3D"/global_images/dlinkwords.gif" width=3D"375" height=3D"15"></div>
> >           </td>
> >         </tr>
> >       </table>
> >       <table width=3D"100%" border=3D"0" cellpadding=3D"0" =
> > cellspacing=3D"0">
> >         <tr bgcolor=3D"000000">=20
> >           <td width=3D"79%" bgcolor=3D"FFFFFF"><!-- BeginEditable =
> > "banner" -->=20
> >             <div align=3D"center"><img src=3D"/global_images/dodge6.gif"
=
> > width=3D"468" height=3D"60"></div>
> >             <!-- EndEditable --></td>
> >           <td width=3D"21%" bgcolor=3D"990000" valign=3D"top" =
> > align=3D"left">&nbsp; </td>
> >         </tr>
> >       </table>
> >       <table width=3D"100%" border=3D"0" cellpadding=3D"0" =
> > cellspacing=3D"0">
> >         <tr>=20
> >           <td height=3D"411" width=3D"79%" valign=3D"top"><!-- =
> > BeginEditable "main" -->=20
> >             <table width=3D"100%" border=3D"0" cellpadding=3D"0" =
> > cellspacing=3D"0">
> >               <tr>=20
> >                 <td height=3D"286" valign=3D"top">
> > =09
> > <!-- do not edit any code after this until you reach the tag that says =
> > you can -->
> >
> >
> > =09
> > <!-- begin qry_global_get_categories.cfm -->
> >
> >
> >
> > <!-- end qry_global_get_categories.cfm -->
> > <!-- begin dsp_default.cfm -->
> > <br>
> > <br>
> > Please select from the categories on the left.<br>
> > <br>
> >
> >
> > <!-- end dsp_default.cfm -->
> >
> >
> > =09
> > =09
> >
> >
> >
> > <!-- you can edit any code after this tag-->
> > </td>
> >               =20
> >               </tr>
> >             </table>
> >             <table width=3D"100%" border=3D"0">
> >               <tr valign=3D"top">=20
> >                 <td height=3D"512">=20
> >                   <table width=3D"100%" border=3D"0">
> >                     <tr>
> >                       <td height=3D"390">=20
> >                        &nbsp;
> >                       </td>
> >                     </tr>
> >                     <tr valign=3D"top" align=3D"center">=20
> >                       <td height=3D"44"><font face=3D"Arial, Helvetica,
=
> > sans-serif" size=3D"2">Copyright=20
> >                         =A9 2000 dautohlink.com All rights reserved <br>
> >                         For questions, comments, and concerns send mail
=
> > to [EMAIL PROTECTED]=20
> >                         </font> </td>
> >                     </tr>
> >                   </table>
> >                 </td>
> >               </tr>
> >             </table>
> >             <!-- EndEditable --></td>
> > =20
> >             <br>
> >       </td>
> >         </tr>
> >       </table>
> > </td>
> >   </tr>
> > </table>
> > </body>
> > </html>
> >
> > ------=_NextPart_000_0020_01C0AFB3.885EE0E0--
> >
> >
> > Archives: http://www.mail-archive.com/[email protected]/
> > Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists
> >
> >
>
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

Reply via email to