From: Steve Sutton Date: Wed, 30 Nov 2016 19:24:34 +0000 (-0500) Subject: First time in git X-Git-Tag: v1.0.0~1 X-Git-Url: http://cvs2.gaslightmedia.com/gitweb/index.cgi?a=commitdiff_plain;h=1e06f8733f61e2581bd2ca9f0e1a2974aebfb220;p=web%2Fwww.classiccarcocoon.com.git First time in git New sources --- 1e06f8733f61e2581bd2ca9f0e1a2974aebfb220 diff --git a/GLM_site_check.phtml b/GLM_site_check.phtml new file mode 100644 index 0000000..53d8e02 --- /dev/null +++ b/GLM_site_check.phtml @@ -0,0 +1,23 @@ + + diff --git a/Templates/TMP991246859.htm b/Templates/TMP991246859.htm new file mode 100755 index 0000000..04b66fc --- /dev/null +++ b/Templates/TMP991246859.htm @@ -0,0 +1,90 @@ + + + +Classic Car Cocoon + + + + + + + + + + + +
+ + + + +
+ + + + + + + + + +
Classic CarClassic MotorcycleCustomer TestimonalsFAQ Section
Shows and Events 
+ + + + + + + + + + + + +
Order OnlineHomeContact UsTell a Friend
+
+
+

Lorem ipsum dolor sit amet

+

Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qui blandit praesent luptatum zzril delenit augue duis dolore te feugait nulla facilisi.Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure dolor in hendrerit in vulputate velit esse molestie consequat, vel illum dolore eu feugiat nulla facilisis at vero eros et accumsan et iusto odio dignissim qu
+

+
   +
+ +
 
+ + diff --git a/Templates/ccc.dwt b/Templates/ccc.dwt new file mode 100755 index 0000000..a69cfe0 --- /dev/null +++ b/Templates/ccc.dwt @@ -0,0 +1,108 @@ + + + +Classic Car Cocoon + + + + + + + + + + + + + + + +
+ + + + + +
+ + + + +
+ + + + + + + + + +
Classic CarClassic MotorcycleCustomer TestimonalsFAQ Section
Shows and Events
+ + + + + + + + + + + + +
Order OnlineHomeContact UsTell a Friend
+
+
+
+ + + + + +
+
Corrosion Control Outdoors LLC
+
Petoskey, MI
+
Phone:1-231-439-3768
+ +
+

Header

+

Lorem ipsum dolor sit amet, consectetuer adipiscing elit, sed diam nonummy nibh euismod tincidunt ut laoreet dolore magna aliquam erat volutpat. Ut wisi enim ad minim veniam, quis nostrud exerci tation ullamcorper suscipit lobortis nisl ut aliquip ex ea commodo consequat. Duis autem vel eum iriure d

+
  + +   +
+ +
 
+ + diff --git a/admin/config.phtml b/admin/config.phtml new file mode 100755 index 0000000..e8c628c --- /dev/null +++ b/admin/config.phtml @@ -0,0 +1,5 @@ + diff --git a/admin/del_event.phtml b/admin/del_event.phtml new file mode 100755 index 0000000..8c53555 --- /dev/null +++ b/admin/del_event.phtml @@ -0,0 +1,72 @@ + + +

+ +

+
Close This Window
+ + +

+ Event: ID -- $id
$row[header]"?>
has been removed +

+
Close This Window
+ diff --git a/admin/edit_events.phtml b/admin/edit_events.phtml new file mode 100755 index 0000000..dc6c2a7 --- /dev/null +++ b/admin/edit_events.phtml @@ -0,0 +1,416 @@ + + + + + + "edit_events.phtml", + "List Events" => "list_events.phtml", + "Edit Topics" => "edit_events.phtml?edittopic=1" + ); +html_nav_table($lnav, 3); + +if(!$dbd = db_connect()) + html_error(DB_ERROR_MSG, 1); +$qs = "SET DATESTYLE TO 'SQL, NONEUROPEAN'"; +if(!db_exec($dbd, $qs)) + html_error(DB_ERROR_MSG, 1); + +if($edittopic) { + if($ecommit) { + $qs = "UPDATE topic + SET descr='$e_descr' + WHERE id='$eid'"; + if(!db_exec($dbd, $qs)) + html_error(DB_ERROR_MSG, 1); + } + $qs = "SELECT * + FROM topic"; + $res = db_exec($dbd, $qs); + if(!$res) + html_error(DB_ERROR_MSG, 1); + ?> +
+ + + + +
+ + + + + + + + + + + + + + +
+ + Existing Topic + + Change Topic Name + + Function
+ + + + [Delete] +
+ + + +
+
+
+ "$topicid", + "bdate" => "$bdate", + "edate" => "$edate", + "loc" => "$loc", + "state" => "$state", + "header" => "$header", + "descr" => "$descr", + "img" => "", + "url" => "$url", + "email" => "$email", + "ds" => "", + "visable" => "$visable", + "btime" => "$btime", + "etime" => "$etime", + "contact" => "$contact", + "phone" => "$phone" + ); + /* check for image stuff, resize, move, and assign $vars[img] */ + if(($img != "none") && ($img != "")) + $vars[img] = process_image($img, $img_name); + else + $vars[img] = ""; + + /* here we are taking care of the special instance new_topic */ + if($new_topicid) { + $qs = "INSERT + INTO topic + (descr) + VALUES + ('$new_topicid')"; + $res = db_exec($dbd, $qs); + if(!$res) + html_error(DB_ERROR_MSG, 1); + $oid = pg_getlastoid($res); + db_freeresult($res); + $qs = "SELECT id + FROM topic + WHERE oid='$oid'"; + $res = db_exec($dbd, $qs); + if(!$res) + html_error(DB_ERROR_MSG, 1); + $nrow = db_fetch_array($res, 0, PGSQL_ASSOC); + if(!$nrow[id]) + html_error("Empty Row! No OID: $qs", 1); + + $vars[topicid] = $nrow[id]; + unset($nrow); + db_freeresult($res); + } + if($edit) { + if($delete_img) { + $qs = "UPDATE event + SET img='' + WHERE id='$id'"; + + if(!db_exec($dbd, $qs)) + html_error("Couldn't Delete Old Image from DB!", 1); + + if($old_img) { + unlink(ORIGINAL_PATH.$old_img); + unlink(RESIZED_PATH.$old_img); + unlink(MIDSIZED_PATH.$old_img); + unlink(THUMB_PATH.$old_img); + } + } + while(list($key, $val) = each($vars)) { + if(!(($key == "img") && (($val == "") || ($val == "none")))) { + /* special case for timestamp */ + if($key == "ds") + $qs = "UPDATE event + SET ds=CURRENT_TIMESTAMP + WHERE id='$id'"; + else + $qs = "UPDATE event + SET $key='$val' + WHERE id='$id'"; + if(!db_exec($dbd, $qs)) + html_error(DB_ERROR_MSG.$qs, 1); + } + } + echo "
"; + echo "

Event has been succesfully updated!

\n"; + echo "
\n"; + } + else { + $qs = "INSERT + INTO event + (topicid, bdate, edate, loc, + header, descr, img, url, email, btime, etime, + visable, ds, contact, state,phone) + VALUES + ('$vars[topicid]','$vars[bdate]', + '$vars[edate]','$vars[loc]','$vars[header]', + '$vars[descr]','$vars[img]','$vars[url]','$vars[email]', + '$vars[btime]','$vars[etime]','$vars[visable]', + CURRENT_TIMESTAMP,'$vars[contact]', + '$vars[state]','$vars[phone]')"; + if(!db_exec($dbd, $qs)) + html_error(DB_ERROR_MSG.$qs, 1); + echo "

Event has been succesfully added!

\n"; + } +} +else { + if($edit && $id) { + $qs = "SELECT * + FROM event + WHERE id='$id'"; + $res = db_exec($dbd, $qs); + if(!$res) + html_error(DB_ERROR_MSG, 1); + $row = db_fetch_array($res, 0, PGSQL_ASSOC); + if(!$row[id]) + html_error("Empty Row! $qs", 1); + db_freeresult($res); + } + ?> + +
+
+ + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \n"; + echo "\n"; + } + ?> + + + + + + + + + + + + + + + + + +
Topic: +
Start Date:>
End Date:>
Start Time:>
End Time:>
Location:>
State:>
Header (One Line Desc.):>
Full Description:
Additional Web Address for Event:>
Contact Person:>
Contact Phone:>
Email of Event Contact Person:>
Existing Image:
Picture for Event: + +
Delete Image?Yes  + No + +
Show Event? + +
+ \n"; + echo "\n"; + } + echo "\n"; + ?> + +
+
+
+ diff --git a/admin/edit_template.phtml b/admin/edit_template.phtml new file mode 100755 index 0000000..a12e9f4 --- /dev/null +++ b/admin/edit_template.phtml @@ -0,0 +1,101 @@ + ""); +} + + +top("Updatable Home Page Template (Edit)", HELP_BASE."template.phtml"); + +echo ""; + + +form_header("update_template.phtml?".SID,"POST",""); + +foreach($row as $key=>$value) { + switch($key) { + + case "id": + echo ""; + break; + + case "description": + echo ""; + text_area("description",$value); + echo ""; + break; + + case "image": + ?> + + "; + if($value != "") { + echo ""; + echo " + + + + + "; + } + echo ""; + echo ""; + echo ""; + break; + + case "header": + ?> + + + + + "; + text_box("header",$value, 35, 230); + echo ""; + break; + + default: + html_error("need case for ->".$key,1); + break; + } +} +if(isset($id)) { + form_footer("Update","",2); +} +else { + form_footer("Insert","",2); +} +echo "
Description:
Current Image: +
Delete this image: + Yes + No +
New Image:
+ Home Page Template +
Title:
"; + +footer(); +?> diff --git a/admin/events.sql b/admin/events.sql new file mode 100644 index 0000000..3344639 --- /dev/null +++ b/admin/events.sql @@ -0,0 +1,30 @@ +CREATE TABLE "event" ( +"id" SERIAL, +"topicid" int4, +"bdate" date, +"edate" date, +"loc" character varying(8000), +"header" character varying(8000), +"descr" text, +"img" text, +"url" text, +"contact" character varying(8000), +"email" character varying(8000), +"btime" character varying(8000), +"etime" character varying(8000), +"visable" bool, +"ds" timestamp); + +REVOKE ALL on "event" from PUBLIC; + +GRANT ALL on "event" to "nobody"; + +CREATE TABLE "topic" ( +"id" SERIAL, +"descr" character varying(8000)); + +REVOKE ALL on "topic" from PUBLIC; + +GRANT ALL on "topic" to "nobody"; +GRANT ALL on "topic_id_seq" to "nobody"; +GRANT ALL on "event_id_seq" to "nobody"; diff --git a/admin/help/closewindow.gif b/admin/help/closewindow.gif new file mode 100755 index 0000000..c54ed89 Binary files /dev/null and b/admin/help/closewindow.gif differ diff --git a/admin/help/events.phtml b/admin/help/events.phtml new file mode 100755 index 0000000..6c22f26 --- /dev/null +++ b/admin/help/events.phtml @@ -0,0 +1,297 @@ + + +Help + + + +

Events Calendar Help

+
+ +

List Events

+ +

+This page lists the existing Events. +

+

+Add A New Event +

+

This link will allow you to add new Event

+

+List Events +

+

This link is the page you are currently viewing

+ +

+Edit Topics +

+

This link will allow you to edit Topics associated with Events

+ +

+[Edit] +

+

This link will let you edit an existing Event

+

+[Delete] +

+

This link will let you Delete an existing Event

+

+ON/OFF +

+

There is either a green or red ball in line with each existing Event. +If the ball is green, the Event is currently visable on the front end of your +web site. If the ball is red, the event is not visable on the front end of your +web site. You can easily toggle Event visability by clicking on the ball. If the +ball was red, and you clicked on it, it should turn green.

+ + +

Edit an Event

+

+This page is for editing and modifying an existing Event in the database. +When editing is complete, click on the "Submit Query" button. The database will +be updated, and you will be directed back to the "List Events" page. +

+ +

+Hotel: +

+

This Select Box will determine which Hotel's Web site the Event will be +displayed on. For example, if you have an Event which you only want displayed +on the Chippewa Hotel's web site, choose "Chippewa Hotel." You may choose +either hotel, or both. Note that this is NOT the location where the event is +taking place (that should be entered in the "Location" field).

+

+Topic: +

+

This is the Topic that the Event will be searchable by. You may select +a topic from the Select Box, or you may enter a previously non-existant topic +in the textbox to the right. Please note that if you decide to enter a new +topic, select "New Topic: (Enter -->)" from the Select Box. +

+ +

+Start Date: +

+

This is date upon which the Event will begin. It should be formatted in +the following manner: 05/15/2001 +

+

+End Date: +

+

This is date upon which the Event will end. It should be formatted in +the following manner: 05/15/2001 +

+

+Start Time: +

+

This is time upon which the Event will begin. It may be formatted however +you like, i.e. 8:15 pm or 8 o'clock or ??? +

+

+End Time: +

+

This is time upon which the Event will end. It may be formatted however +you like, i.e. 8:15 pm or 8 o'clock or ??? +

+

+Location: +

+

This is location where the event will take place. i.e. Pink Pony Bar and Grill +

+ +

+Header (One Line Desc.): +

+

This is the text which will appear as a brief summary of the Event

+

+Full Description: +

+

This is the text which will appear as a complete description of the Event, +in the Detailed output of the Event

+

+Additional Web Address for Event: +

+

This is URL which will be placed on the Detailed description of the Event. +This field must be formatted as: http://www.somesite.com

+

+Email of event contact person: +

+

This is email address will be placed on the Detailed description of the +Event. This field must be a valid email address, such as: jack@foo.com

+

+Picture for Event: +

+

If you choose, you may upload an image which will be displayed on the +Detailed output for the Event. To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +

+

+Show Event: +

+

This Select Box will determine whether or not the Event is viewable +on the front end of you web site. +The Default value is "Yes" meaning that the event will be visable. +

+ +

+Submit Query +

+

When you have made the changes you want to the Event, +you can click "Submit Query." This will update the information about the +Event in the database. +

+ +

Add An Event

+

+This page is for editing and modifying an existing Event in the database. +When editing is complete, click on the "Submit Query" button. The database will +be updated, and you will be directed back to the "List Events" page. +

+ +

+Hotel: +

+

This Select Box will determine which Hotel's Web site the Event will be +displayed on. For example, if you have an Event which you only want displayed +on the Chippewa Hotel's web site, choose "Chippewa Hotel." You may choose +either hotel, or both. Note that this is NOT the location where the event is +taking place (that should be entered in the "Location" field).

+

+Topic: +

+

This is the Topic that the Event will be searchable by. You may select +a topic from the Select Box, or you may enter a previously non-existant topic +in the textbox to the right. Please note that if you decide to enter a new +topic, select "New Topic: (Enter -->)" from the Select Box. +

+ +

+Start Date: +

+

This is date upon which the Event will begin. It should be formatted in +the following manner: 05/15/2001 +

+

+End Date: +

+

This is date upon which the Event will end. It should be formatted in +the following manner: 05/15/2001 +

+

+Start Time: +

+

This is time upon which the Event will begin. It may be formatted however +you like, i.e. 8:15 pm or 8 o'clock or ??? +

+

+End Time: +

+

This is time upon which the Event will end. It may be formatted however +you like, i.e. 8:15 pm or 8 o'clock or ??? +

+

+Location: +

+

This is location where the event will take place. i.e. Pink Pony Bar and Grill +

+ +

+Header (One Line Desc.): +

+

This is the text which will appear as a brief summary of the Event

+

+Full Description: +

+

This is the text which will appear as a complete description of the Event, +in the Detailed output of the Event

+

+Additional Web Address for Event: +

+

This is URL which will be placed on the Detailed description of the Event. +This field must be formatted as: http://www.somesite.com

+

+Email of event contact person: +

+

This is email address will be placed on the Detailed description of the +Event. This field must be a valid email address, such as: jack@foo.com

+

+Picture for Event: +

+

If you choose, you may upload an image which will be displayed on the +Detailed output for the Event. To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +

+

+Show Event: +

+

This Select Box will determine whether or not the Event is viewable +on the front end of you web site. +The Default value is "Yes" meaning that the event will be visable. +

+ +

+Submit Query +

+

When you have edited the Event to your liking, +you can click "Submit Query." This will add the Event to the database. +

+ +

Edit Topics

+

+Existing Topic: +

+

+This Select Box lists all existing Topics by name. You should choose the +Topic that you wish to Edit/Delete +

+

+Change Topic Name: +

+

If you type something into this Text Box, it will change the name +of the Topic selected under "Existing Topic:" after you click "Change Name" +

+

+[Delete] +

+

If you click [Delete] you will remove the Topic Selected under "Existing +Topic" (Be Careful) +

+ +

+Change Name +

+

When you selected a Topic to change, and entered the new name in the +Text Box, you can click "Change Name" to change the Topic's name in the +database. +

+ +
+
+ + diff --git a/admin/help/helpbg.gif b/admin/help/helpbg.gif new file mode 100755 index 0000000..0b62415 Binary files /dev/null and b/admin/help/helpbg.gif differ diff --git a/admin/help/menu.phtml b/admin/help/menu.phtml new file mode 100755 index 0000000..fb2ca91 --- /dev/null +++ b/admin/help/menu.phtml @@ -0,0 +1,121 @@ + + +Help + + + +

Menu Help

+
+ +

List Menu Items

+ +

+This page lists the existing Menu Items under a particular Category in the database. +

+

+Add A New Menu Item +

+

This link will allow you to add new Menu Item

+

+List Menu Items +

+

This link is the page you are currently viewing

+ +

+List Categories +

+

This link will take you back to the listing of all Categories

+ +

+[Edit/Delete] +

+

This link will let you edit or delete an existing Menu Item

+ +

Edit a Menu Item

+

+This page is for editing and modifying an existing Menu Item in the +database. +When editing is complete, click on the "Update" button. The database will +be updated, and you will be directed back to the "List Menu Items" page. +

+ +

+Title: +

+

This is the title that will appear for the "Menu Item" i.e. "Hamburger"

+

+Category: +

+

This is the Category that the Menu Item will appear in on the Menu. The +default value is the current Category.

+ +

+Description: +

+

This is the text which will describe the Menu Item. This text will be +displayed below the Menu Item on the menu. +

+

+Price: +

+

This is the text which will appear on the Menu as the price. +Note that you should format the Price just as you wish it to appear on the +Menu. i.e. '$16.00' not '16' +

+ +

+Update +

+

When you have made the changes you want to the Menu Item, +you can click "Update." This will update the information about the Item +in the database. +

+

+Delete +

+

If you want to remove the current Item, press the "Delete" button. +

+ +

Add Menu Item

+

+This page is for adding new Menu Items in the database. +When editing is complete, click on the "Insert" button. The database will +be updated, and you will be directed back to the "List Menu Items" page. +

+ +

+Title: +

+

This is the title that will appear for the "Menu Item" i.e. "Hamburger"

+ +

+Description: +

+

This is the text which will describe the Menu Item. This text will be +displayed below the Menu Item on the menu. +

+

+Insert +

+

When you have made the changes you want to the Menu Item, +you can click "Insert." This will add the information about the new Item +in the database. +

+ +
+
+ + diff --git a/admin/help/menucat.phtml b/admin/help/menucat.phtml new file mode 100755 index 0000000..b6bce91 --- /dev/null +++ b/admin/help/menucat.phtml @@ -0,0 +1,111 @@ + + +Help + + + +

Menu Help

+
+ +

List Categories

+ +

+This page lists the existing Menu Categories in the database. +

+

+Add A New Category +

+

This link will allow you to add new Categories

+

+List Categories +

+

This link is the page you are currently viewing

+ +

+[Edit] +

+

This link will let you edit an existing Category

+

+[List Menu] +

+

+This link will list out the Menu Items associated with a particular Category +

+ + +

Edit a Category

+

+This page is for editing and modifying the existing Menu Categores in the +database. +When editing is complete, click on the "Update" button. The database will +be updated, and you will be directed back to the "List Menu Categories" page. +

+ +

+Title: +

+

This is the title that will appear for the "Category" i.e. "Entrees"

+ +

+Description: +

+

This is the text which will describe the Category. This text will be +displayed below the Category Title on the menu. +

+ +

+Update +

+

When you have made the changes you want to the Cateogry, +you can click "Update." This will update the information about the Category +in the database. +

+

+Delete +

+

If you want to remove the current Category, press the "Delete" button. +

+ +

Add Category

+

+This page is for adding Menu Categories in the database. +When editing is complete, click on the "Add" button. The database will +be updated, and you will be directed back to the "List Menu Categories" page. +

+ +

+Title: +

+

This is the title that will appear for the "Category" i.e. "Entrees"

+ +

+Description: +

+

This is the text which will describe the Category. This text will be +displayed below the Category Title on the menu. +

+

+Add +

+

When you have made the changes you want to the Cateogry, +you can click "Add." This will add the information about the new Category +in the database. +

+ +
+
+ + diff --git a/admin/help/newsletter.html b/admin/help/newsletter.html new file mode 100755 index 0000000..e0165ca --- /dev/null +++ b/admin/help/newsletter.html @@ -0,0 +1,61 @@ + + +Help + + + +

Newsletter Help

+ +

+This page is for editing and modifying the existing Newsletter in the database. +When editing is complete, click on the "Update" button. The database will +be updated, and you will be directed to an area where you can view the +updated Newsletter. +

+ +

+Title: +

+

This is the title that will appear on the top of the Newsletter

+ +

+Description: +

+

This is the actual body of the Newletter. Whatever you type in this field +will be shown as the body of the Newsletter. +The body may have multiple paragraphs. By hitting return twice, you place a +blank line in the copy. +

+ +

+Mail Out: +

+

This "Select Box" will determine whether or not the Newsletter gets emailed +to members of your Contact Database. If you change the Mail Out option to "Yes" +then the Newsletter will be emailed out, and updated on your web page. +Otherwise, the Newsletter will only be updated on your web page. The default +is "No" +

+ +

+Members from which Hotel: +

+

This "Select Box" will determine who to email the Newsletter to. Note that +this is only pertinent if "Mail Out" is set to "Yes." The default is members +from your own Hotel, however, you can also choose to email the Newsletter to +registered members from "Both Hotels" +

+ +

+Update +

+ +

When you have made the changes you want to the Newsletter, and determined +whether or not to email it out, you can click "Update." This will take the +appropriate action, and direct you to a page where you can view the contents +and email recipients of the Newsletter +

+
+
+ + diff --git a/admin/help/photo.phtml b/admin/help/photo.phtml new file mode 100755 index 0000000..4f0948e --- /dev/null +++ b/admin/help/photo.phtml @@ -0,0 +1,154 @@ + + +Help + + + +

Photo Help

+
+ +

List Photos

+ +

+This page lists the existing Photos under a particular Category in the database. +

+

+Add A New Photo +

+

This link will allow you to add new Menu Item

+

+List Photos +

+

This link is the page you are currently viewing

+ +

+List Categories +

+

This link will take you back to the listing of all Categories

+ +

+[Edit/Delete] +

+

This link will let you edit or delete an existing Photo

+ +

Edit a Photo

+

+This page is for editing and modifying an existing Photo in the database. +When editing is complete, click on the "Update" button. The database will +be updated, and you will be directed back to the "List Photos" page. +

+ +

+Title: +

+

This is the title that will appear for the "Photo" i.e. "View of the Straits"

+

+Category: +

+

This is the Category that the Photo will appear in on the Gallery Page. The +default value is the current Category.

+ +

+Description: +

+

This is the text which will describe the Photo. This text will be +displayed with the Photo in the Gallery. +

+ +

+Current Image: +

+

If the record you are editing has an uploaded image, you will see the Current Image: header, and a small version of the image. +

+Delete This Image: +

+

If the record you are editing has an uploaded image, you will see the Delete This Image: header, and "Yes" and "No" radio buttons. If you choose "Yes" and then "Update", you will have permanently removed the "Current Image". The default value is "No." +

+

+Image: +

+

+To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +

+ + +

+Update +

+

When you have made the changes you want to the Photo, +you can click "Update." This will update the information about the Item +in the database. +

+

+Delete +

+

If you want to remove the current Item, press the "Delete" button. +

+ +

Add Photo

+

+This page is for adding new Photos in the database. +When editing is complete, click on the "Insert" button. The database will +be updated, and you will be directed back to the "List Photos" page. +

+

+Title: +

+

This is the title that will appear for the "Photo" i.e. "View of the Straits"

+

+Category: +

+

This is the Category that the Photo will appear in on the Gallery Page. The +default value is the current Category.

+ +

+Description: +

+

This is the text which will describe the Photo. This text will be +displayed with the Photo in the Gallery. +

+ +

+Image: +

+

+To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +

+ +

+Insert +

+

When you have made the changes you want to the Menu Item, +you can click "Insert." This will add the information about the new Item +in the database. +

+ +
+
+ + diff --git a/admin/help/photocat.phtml b/admin/help/photocat.phtml new file mode 100755 index 0000000..86e7f92 --- /dev/null +++ b/admin/help/photocat.phtml @@ -0,0 +1,156 @@ + + +Help + + + +

Menu Help

+
+ +

List Categories

+ +

+This page lists the existing Photo Gallery Categories in the database. +

+

+Add A New Category +

+

This link will allow you to add new Categories

+

+List Categories +

+

This link is the page you are currently viewing

+ +

+[Edit] +

+

This link will let you edit an existing Category

+

+[List Photos] +

+

+This link will list out the Photo Gallery Items associated with a particular Category +

+ + +

Edit a Category

+

+This page is for editing and modifying the existing Photo Gallery Categories in the database. +When editing is complete, click on the "Update" button. The database will +be updated, and you will be directed back to the "List Menu Categories" page. +

+ +

+Title: +

+

This is the title that will appear for the "Category" i.e. "Pictures of The Island"

+

+Intro: +

+

This is the text which will introduce the Category. This text will be +displayed below the Category Title in the Gallery. +

+ +

+Description: +

+

This is the text which will fully describe the Category. This text will be +displayed below the Category Title and Intro in the Gallery. +

+

+Current Image: +

+

If the record you are editing has an uploaded image, you will see the Current Image: header, and a small version of the image associated with this Category. +

+Delete This Image: +

+

If the record you are editing has an uploaded image, you will see the Delete This Image: header, and "Yes" and "No" radio buttons. If you choose "Yes" and then "Update" the Room Rate, you will have permanently removed the "Current Image". The default value is "No." +

+

+New Image: +

+

+If you choose, you may upload an image which will be displayed on the +output for the Category. To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +

+ +

+Update +

+

When you have made the changes you want to the Cateogry, +you can click "Update." This will update the information about the Category +in the database. +

+

+Delete +

+

If you want to remove the current Category, press the "Delete" button. +

+ +

Add Category

+

+This page is for adding Photo Gallery Categories in the database. +When editing is complete, click on the "Insert" button. The database will +be updated, and you will be directed back to the "List Categories" page. +

+

+Title: +

+

This is the title that will appear for the "Category" i.e. "Pictures of The Island"

+

+Intro: +

+

This is the text which will introduce the Category. This text will be +displayed below the Category Title in the Gallery. +

+ +

+Description: +

+

This is the text which will fully describe the Category. This text will be +displayed below the Category Title and Intro in the Gallery. +

+

+Image: +

+

+If you choose, you may upload an image which will be displayed on the +output for the Category. To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +

+

+Insert +

+

When you have entered the information you want for the Cateogry, +you can click "Insert." This will add the information about the new Category +in the database. +

+ +
+
+ + diff --git a/admin/help/room_rates.phtml b/admin/help/room_rates.phtml new file mode 100755 index 0000000..9123f85 --- /dev/null +++ b/admin/help/room_rates.phtml @@ -0,0 +1,172 @@ + + +Help + + + +

Room Rates Help

+
+ +

List Room Rates

+ +

+This page lists the existing Room Rates from the database. +

+

+Add A New Room Rate +

+

This link will allow you to add new Room Rate

+

+List Room Rates +

+

This link is the page you are currently viewing

+ +

+[Edit/Delete] +

+

This link will let you edit or delete an existing Room Rate

+ +

Edit a Room Rate

+

+This page is for editing and modifying an existing Room Rate in the database. +When editing is complete, click on the "Update" button. The database will +be updated, and you will be directed back to the "List Room Rates" page. +

+ +

+Title: +

+

This is the title that will appear for the "Room Rates" i.e. "Standard Rooms"

+

+Current Image: +

+

If the record you are editing has an uploaded image, you will see the Current Image: header, and a small version of the image associated with this Room Rate. +

+Delete This Image: +

+

If the record you are editing has an uploaded image, you will see the Delete This Image: header, and "Yes" and "No" radio buttons. If you choose "Yes" and then "Update" the Room Rate, you will have permanently removed the "Current Image". The default value is "No." +

+

+New Image: +

+

+If you choose, you may upload an image which will be displayed on the +output for the Room Rate. To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +

+

+Spring-Fall Daily Rates: +

+

+This is the Daily Rate Price for the Rooms during the Spring through Fall Period. +

+

+Spring-Fall Weekend Rates: +

+

+This is the Weekend Rate Price for the Rooms during the Spring and Fall Periods. +

+

+Summer Daily Rates: +

+

+This is the Daily Rate Price for the Rooms during the Summer Period. +

+

+Summer Weekend Rates: +

+

+This is the Weekend Rate Price for the Rooms during the Summer Period. +

+ +

+Update +

+

When you have made the changes you want to the Room Rate, +you can click "Update." This will update the information about the Item +in the database. +

+

+Delete +

+

If you want to remove the current Item, press the "Delete" button. +

+ +

Add A Room Rate

+

+This page is for adding new Room Rates into the database. +When editing is complete, click on the "Insert" button. The database will +be updated, and you will be directed back to the "List Specials" page. +

+

+Title: +

+

This is the title that will appear for the "Room Rates" i.e. "Standard Rooms"

+

+New Image: +

+

+If you choose, you may upload an image which will be displayed on the +Detailed output for the Event. To upload an image, click the "Browse" button. +For the image to be displayed properly, it must be either a "GIF" or "JPEG" +formatted image. Generally, these are saved as filename.gif or filename.jpg. +If you receive an error message while trying to upload an image, the most +common error is that the image is neither a JPEG nor a GIF. Also note that +simply renaming the file from filename.foo to filename.gif will not reformat +the image as a GIF. +

+

+Spring-Fall Daily Rates: +

+

+This is the Daily Rate Price for the Rooms during the Spring through Fall Period. +

+

+Spring-Fall Weekend Rates: +

+

+This is the Weekend Rate Price for the Rooms during the Spring and Fall Periods. +

+

+Summer Daily Rates: +

+

+This is the Daily Rate Price for the Rooms during the Summer Period. +

+

+Summer Weekend Rates: +

+

+This is the Weekend Rate Price for the Rooms during the Summer Period. +

+ +

+Insert +

+

When you have entered the correct data for the Room Rate, +you can click "Insert." This will add the information about the new Item +in the database. +

+ +
+
+ + diff --git a/admin/help/specials.phtml b/admin/help/specials.phtml new file mode 100755 index 0000000..315731f --- /dev/null +++ b/admin/help/specials.phtml @@ -0,0 +1,113 @@ + + +Help + + + +

Specials Help

+
+ +

List Specials

+ +

+This page lists the existing Specials from the database. +

+

+Add A New Special +

+

This link will allow you to add new Special

+

+List Specials +

+

This link is the page you are currently viewing

+ +

+[Edit/Delete] +

+

This link will let you edit or delete an existing Special

+ +

Edit a Special

+

+This page is for editing and modifying an existing Special in the database. +When editing is complete, click on the "Update" button. The database will +be updated, and you will be directed back to the "List Specials" page. +

+ +

+Title: +

+

This is the title that will appear for the "Special" i.e. "Spring Fling Package"

+

+Intro: +

+

This is the text which will introduce the Special on the web page. +

+ +

+Description: +

+

This is the text which will fully describe the Special. This text will be +displayed below the Special Title and Intro. +

+ +

+Update +

+

When you have made the changes you want to the Special, +you can click "Update." This will update the information about the Item +in the database. +

+

+Delete +

+

If you want to remove the current Item, press the "Delete" button. +

+ +

Add A Special

+

+This page is for adding new Specials in the database. +When editing is complete, click on the "Insert" button. The database will +be updated, and you will be directed back to the "List Specials" page. +

+

+Title: +

+

This is the title that will appear for the "Special" i.e. "Spring Fling Package"

+

+Intro: +

+

This is the text which will introduce the Special on the web page. +

+ +

+Description: +

+

This is the text which will fully describe the Special. This text will be +displayed below the Special Title and Intro. +

+ +

+Insert +

+

When you have entered the correct data for the Special, +you can click "Insert." This will add the information about the new Item +in the database. +

+ +
+
+ + diff --git a/admin/help/template.phtml b/admin/help/template.phtml new file mode 100755 index 0000000..43b01d0 --- /dev/null +++ b/admin/help/template.phtml @@ -0,0 +1,29 @@ + + +Help + + + +

Change Text Help

+
+

Home Page Section

+ +

+Description: +

+

This is the text which will be displayed with the Photo on the Home Page. +

+ + +
+

+Update +

+

When you have made the changes you want to the Updatable Text, +you can click "Update." This will update the information about each Item +in the database. +

+
+
+ + diff --git a/admin/help/tour_rates.phtml b/admin/help/tour_rates.phtml new file mode 100755 index 0000000..cac7092 --- /dev/null +++ b/admin/help/tour_rates.phtml @@ -0,0 +1,108 @@ + + +Help + + + +

Tour Rates Help

+
+ +

List Tour Rates

+ +

+This page lists the existing Tour Rates from the database. +

+

+Add A New Tour Rate +

+

This link will allow you to add new Tour Rates

+

+List Tour Rates +

+

This link is the page you are currently viewing

+ +

+[Edit/Delete] +

+

This link will let you edit or delete an existing Tour Rate

+ +

Edit a Tour Rate

+

+This page is for editing and modifying an existing Tour Rate in the database. +When editing is complete, click on the "Update" button. The database will +be updated, and you will be directed back to the "List Tour Rates" page. +

+ +

+Season Title: +

+

This is the title that will appear for the "Tour Rate" i.e. "Spring Rates"

+

+Season Span: +

+

This is the text for the available dates for this Rate i.e. "June 8 - August 25" +

+

+Room Rate: +

+

This is the Price for this Rate i.e. "$132.00" +

+ +

+Update +

+

When you have made the changes you want to the Tour Rate, +you can click "Update." This will update the information about the Item +in the database. +

+

+Delete +

+

If you want to remove the current Item, press the "Delete" button. +

+ +

Add A Tour Rate

+

+This page is for adding new Tour Rates in the database. +When editing is complete, click on the "Insert" button. The database will +be updated, and you will be directed back to the "List Tour Rates" page. +

+

+Season Title: +

+

This is the title that will appear for the "Tour Rate" i.e. "Spring Rates"

+

+Season Span: +

+

This is the text for the available dates for this Rate i.e. "June 8 - August 25" +

+

+Room Rate: +

+

This is the Price for this Rate i.e. "$132.00" +

+

+Insert +

+

When you have entered the correct data for the Wedding Room, +you can click "Insert." This will add the information about the new Item +in the database. +

+ +
+
+ + diff --git a/admin/help/wedding_rooms.phtml b/admin/help/wedding_rooms.phtml new file mode 100755 index 0000000..8753cfd --- /dev/null +++ b/admin/help/wedding_rooms.phtml @@ -0,0 +1,99 @@ + + +Help + + + +

Wedding Rooms Help

+
+ +

List Wedding Rooms

+ +

+This page lists the existing Wedding Rooms from the database. +

+

+Add A New Wedding Room +

+

This link will allow you to add new Wedding Room

+

+List Wedding Rooms +

+

This link is the page you are currently viewing

+ +

+[Edit/Delete] +

+

This link will let you edit or delete an existing Wedding Room

+ +

Edit a Wedding Room

+

+This page is for editing and modifying an existing Wedding Room in the database. +When editing is complete, click on the "Update" button. The database will +be updated, and you will be directed back to the "List Wedding Rooms" page. +

+ +

+Title: +

+

This is the title that will appear for the "Wedding Room" i.e. "Mackinac Room"

+

+Capacity: +

+

This is the text for capacity of the room. +

+ +

+Update +

+

When you have made the changes you want to the Wedding Room, +you can click "Update." This will update the information about the Item +in the database. +

+

+Delete +

+

If you want to remove the current Item, press the "Delete" button. +

+ +

Add A Wedding Room

+

+This page is for adding new Wedding Rooms in the database. +When editing is complete, click on the "Insert" button. The database will +be updated, and you will be directed back to the "List Wedding Rooms" page. +

+

+Title: +

+

This is the title that will appear for the "Wedding Room" i.e. "Mackinac Room"

+

+Capacity: +

+

This is the text for capacity of the room. +

+ +

+Insert +

+

When you have entered the correct data for the Wedding Room, +you can click "Insert." This will add the information about the new Item +in the database. +

+ +
+
+ + diff --git a/admin/index.phtml b/admin/index.phtml new file mode 100755 index 0000000..36298f2 --- /dev/null +++ b/admin/index.phtml @@ -0,0 +1,13 @@ + +Classic Car Cocoon Administration + + + + + + + +Admin Requires Frames Capable Browser + + + diff --git a/admin/list_events.phtml b/admin/list_events.phtml new file mode 100755 index 0000000..5029e9f --- /dev/null +++ b/admin/list_events.phtml @@ -0,0 +1,180 @@ + + + + + + += CURRENT_DATE"; + + if(!db_exec($dbd, $qs)) + html_error(DB_ERROR_MSG, 1); +} + +$qs = "SELECT event.id,event.bdate,event.edate,event.header,topic.descr, + event.visable + FROM event,topic + WHERE event.topicid=topic.id + ORDER BY event.bdate ASC"; + +$res = db_exec($dbd, $qs); +if(!$res) + html_error(DB_ERROR_MSG, 1); + +$lnav = array( + "Add A New Event" => "edit_events.phtml", + "List Events" => "list_events.phtml", + "Edit Topics" => "edit_events.phtml?edittopic=1" + ); +html_nav_table($lnav, 3); + + ?> + + 0) { +?> + + + + + + + + + + + + + + + + + + + + \n"; +footer(); +?> diff --git a/admin/main.css b/admin/main.css new file mode 100755 index 0000000..fef38df --- /dev/null +++ b/admin/main.css @@ -0,0 +1,23 @@ +body { + background-color: #FFFFFF; +} + +.navlink { + font-size: 80%; + font-family: arial; +} + +td { + font-size: 80%; + font-family: arial,helvetica; +} + +.theader { + font-size: 120%; + font-family: arial,helvetica; + color: #FFFFFF; +} + +.theadertd { + background-color: #000080; +} diff --git a/admin/nav.phtml b/admin/nav.phtml new file mode 100755 index 0000000..cf20bbe --- /dev/null +++ b/admin/nav.phtml @@ -0,0 +1,53 @@ + + + +"> + + + + +
+
+ + Function + + + + ON/OFF + + + +   + + + + Item + + + +   + + + + Start date + + + + End date + +
+ [Edit]  + + [Delete] + + ">"; + else + echo "\"Off\""; + + ?> +   
+ + + + + + + + + + + + + + +
+ + Home + + + + Home Page + + + + Template + + + + Events + + + + Server Logs + +

+ + + diff --git a/admin/path.phtml b/admin/path.phtml new file mode 100755 index 0000000..a5329bb --- /dev/null +++ b/admin/path.phtml @@ -0,0 +1,20 @@ + diff --git a/admin/splash.phtml b/admin/splash.phtml new file mode 100755 index 0000000..bd7295d --- /dev/null +++ b/admin/splash.phtml @@ -0,0 +1,28 @@ + + + +"> + + + + +
+ + + + +
+ +Welcome To The Classic Car Cocoon Administration Area +

+Please Choose The Area You Wish To Update. + +

+"> +

+
+ + + diff --git a/admin/stdfunc.phtml b/admin/stdfunc.phtml new file mode 100755 index 0000000..9ce68c6 --- /dev/null +++ b/admin/stdfunc.phtml @@ -0,0 +1,137 @@ + + + + + +
+
+ + Produced by + + Gaslight Media All Rights Reserved +
+ + + + + + +admin/main.css> + + + + + + + + +"; +} + +/************************************************************************ + * * + * void text_box(string $name, string $value[, int4 $size = 35]) * + * * + ************************************************************************ + * * + * Creates a input box for text with 35 as default size * + * * + * * + ************************************************************************ + * * + * Parameters: * + * string $name -- name of text box * + * string $value -- value of text box * + * string $size -- size of text box * + * * + ************************************************************************ + * * + * Return value: * + * void * + * * + ************************************************************************ + * * + * Global references: * + * None * + * * + ***********************************************************************/ +function text_box($name, $value, $size = 35, $maxlength = 8000) { + echo ""; +} +/************************************************************************ + * * + * void form_footer(string $name, string $value, int $cs) * + * * + ************************************************************************ + * * + * Closes up the form tag, and includes the submit button * + * * + ************************************************************************ + * * + * Parameters: * + * string $name -- form action string * + * string $value -- Method of form * + * int $cs -- colspan for td * + * * + ************************************************************************ + * * + * Return value: * + * void * + * * + ************************************************************************ + * * + * Global references: * + * None * + * * + ***********************************************************************/ +function form_footer($name, $suppress = 0, $cs) { + echo ""; + } + +/* :set tabstop=4 */ +?> diff --git a/glmlib/html/html_config.phtml b/glmlib/html/html_config.phtml new file mode 100644 index 0000000..7f8e979 --- /dev/null +++ b/glmlib/html/html_config.phtml @@ -0,0 +1,10 @@ + diff --git a/glmlib/js/form.js b/glmlib/js/form.js new file mode 100644 index 0000000..0bbabf0 --- /dev/null +++ b/glmlib/js/form.js @@ -0,0 +1,42 @@ +function reshow(object) { + artist = object.options[object.selectedIndex].text; + for (var i = document.track.names.length;i > 0;i--) + document.track.names.options[0] = null; + reloading = true; + showlinks(); + document.track.names.options[0].selected = true; + return false; +} + +function load(object) { + alert('Just testing: ' + object.options[object.selectedIndex].value); + //window.location.href = object.options[object.selectedIndex].value; + return false; +} + +function showlinks() { + if (artist == 'Chris Rea') { + opt('cr/one.zip','The Road To Hell'); + opt('cr/two.zip','Let\'s Dance'); + } + + if (artist == 'Annie Lennox') { + opt('al/why.zip','Why'); + opt('al/wobg.zip','Walking on Broken Glass'); + } + + if (artist == 'Dina Carrol') { + opt('dc/track1.zip','Escaping'); + opt('dc/track2.zip','Only Human'); + } +} + +function opt(href,text) { + if (reloading) { + var optionName = new Option(text, href, false, false) + var length = document.track.names.length; + document.track.names.options[length] = optionName; + } + else + document.write('
+ + + + + +
+ + + + +
" BORDER=0 VSPACE=0 HSPACE=0>
+   + + +
+ + + + +
+ + +" BORDER=0> +
+
+
+ + '; + for($i=1;$i<13;$i++) { + $date .= '
+ "; + if($suppress == 1) { + echo ""; + } +/* echo "";*/ + echo "
+
+ +

Corrosion Inhibiting Classic Car and Motorcycle Cocoons


+

+
+Classic Car Cocoon, classic car cover for corrosion prevention. +Corrosion Inhibiting Classic Car and Motorcycle Cocoons. This carbag, is perfect for motorcycle storage +and helps in rust prevention and rust protection. + +
+ +If you are interested in: +Classic Car Cocoon, classic car cover, car storage bags, +motorcycle cover, corrosion prevention, rust prevention, rust protection, carbag, +motorcycle cocoon, motorcycle storage, look no further. + +

+Corrosion Control Outdoors LLC
+Luzerne, MI 48636
+Phone: 231.360.9990
+E-mail: info@classiccarcocoon.com
+
+

+ + + + + diff --git a/index.phtml b/index.phtml new file mode 100755 index 0000000..5cca370 --- /dev/null +++ b/index.phtml @@ -0,0 +1,145 @@ + + +Classic Car Cocoon, classic car cover for corrosion prevention + + + + + + + + + + +
+ + + + +
+ + + + + + + + + +
Classic CarClassic MotorcycleCustomer TestimonalsFAQ Section
Shows and Events
+ + + + + + + + + + + + +
Order OnlineClassic Car Cocoonclassic car cocoonClassic Car Cocoons
+
+
+
+ + + + + +
+
Corrosion Control Outdoors LLC
+
Luzerne, MI 48636
+
Phone: 231.360.9990
+ +
+
+ +

Corrosion Inhibiting Classic Car and Motorcycle Cocoons

Don't just cover your classic car or motorcycle... Give it total rust & corrosion protection!
Our Cocoon material is not just another traditional cover. It is a special material impregnated with Vapor Corrosion Inhibitors (VCI's). VCI technology was developed for major industries and NATO, but is now available to you the classic car and motorcycle owner.
+ + + + +
+ + + + + + +
+
+
    +
  • Technology developed for the Military, NATO and the automotive industries.
  • +
  • Protects all metal surfaces that air can reach for years... even under extreme conditions.
  • +
  • VCI's will protect as low as -30 degrees Fahrenheit.
  • +
+
+ +
+ +
+   +
+ +
 
+ + diff --git a/index2.html b/index2.html new file mode 100755 index 0000000..9418355 --- /dev/null +++ b/index2.html @@ -0,0 +1,18 @@ + + + Gaslight Media - Customer Development Server + + +Classic Car Cocoon
+
+This is merely a large image for previewing, not an actual working web page. +

+
+
+Copyright © 2001 + Gaslight Media + All rights reserved +
+ + + diff --git a/indexold.html b/indexold.html new file mode 100755 index 0000000..086cd6e --- /dev/null +++ b/indexold.html @@ -0,0 +1,18 @@ + + + Gaslight Media - Customer Development Server + + +Classic Car Cocoon
+
+This is merely a large image for previewing, not an actual working web page. +

+
+
+ Copyright © 2001 + Gaslight Media + All rights reserved +
+ + + diff --git a/motorcycle.html b/motorcycle.html new file mode 100755 index 0000000..7489cf8 --- /dev/null +++ b/motorcycle.html @@ -0,0 +1,131 @@ + + + +<title>Classic Car Cocoon long term corrosion protection of classic cars and motorcycles + + + + + + + + + + + + + + +
+ + + + +
+ + + + + + + + + +
Classic CarClassic MotorcycleCustomer TestimonalsFAQ Section
Shows and Events
+ + + + + + + + + + + + +
Order OnlineHomeContact UsTell a Friend
+
+
+ + + + + +
Click one of the thumbnails below for a larger version.
+
+ +

+ +

+
+

Don't Just Cover Your Motorcycle...Cocoon It!

+

Corrosion Inhibiting Motorcycle Cocoons represent the latest in rust and corrosion prevention technology. Here's how it works: The Motorcycle Cocoon material is impregnated with Vapor Corrosion Inhibitors (VCI's). These VCI's migrate to all metal parts of the bike when it is zipped up and inside the Cocoon. The vapors bond and form an invisible layer of protection on all metals. They are electrochemically drawn to the metals surface just like dust is drawn to a computer screen. The end result is many years of protection from the air, salt, and moisture which cause corrosion.

+ + + + +
+ + + + + + +
+

+ This is a storage "Cocoon" not a bag or cover. Traditional covers (canvas, vinyl, or nylon) will not protect a motorcycle from the ravages of rust and corrosion, in fact, some will accelerate rust and corrosion by acting as a breeding ground holding humidity in. +

+

Your Motorcycle should be stored inside. Even though the Cocoon will protect your bike from harmful UV rays, we recommend that you store your bike inside for long term storage. + + + + +

+
  + +   +
+ +
 
+ + diff --git a/path.phtml b/path.phtml new file mode 100755 index 0000000..a5329bb --- /dev/null +++ b/path.phtml @@ -0,0 +1,20 @@ + diff --git a/pricelist_raw.html b/pricelist_raw.html new file mode 100755 index 0000000..7d91129 --- /dev/null +++ b/pricelist_raw.html @@ -0,0 +1,188 @@ + + + + +PRICE LIST/ 2000/0 1 + + + + + +
+ +

DISTRIBUTOR PRICE LIST/ +2001

+ +

+ +

CAR COCOONS                    RETAIL                 DISCOUNT LESS 10%

+ +

                                                                                                                         +(QUANTITY BUYS)

+ +

                                                                                                                       +    (COLLECTORS & CLUBS)

+ +

+ +

Small 41625                            $370.00                               $333.00

+ +

Corvette size approximately

+ +

(19’Circumference x 18’L fits 15’ +long car)

+ +

Retail Base 337.80 + 11.94 S&H Tax 20.26

+ +

Discount 303.25 + 11.56 S&H Tax 18.19

+ +

+ +

Medium 48937                        $435.00                               $391.50

+ +

Chevelle SS size approximately

+ +

(22 Circumference x 21’L fits 17.5 +long car)

+ +

Retail base 399.49 + 11.55 S&H Tax 23.96

+ +

Discount 359.18 + 10.77 +S&H Tax 21.55

+ +

+ +

Large 60750                             $540.00                              $486.00

+ +

Cadillac size approximately

+ +

(25’Circumference x 24’L fits 20’long +car)

+ +

Retail base 500.00 + 10.00 S&H Tax 30.00

+ +

Discount 449.00 + 10.06 S&H Tax +26.94

+ +

+ +

Motorcycle Cocoons                   RETAIL             DISCOUNT LESS 10%

+ +

                                                                                                                            +(QUANTITY BUYS)

+ +

                                                                                                                       (COLLECTORS +& CLUBS)

+ +

+ +

Large Cover 26888                      $239.00                            $215.10

+ +

Retail +$214.66 S&H 10.00 Tax 14.34

+ +

Discount $192.20 S&H 11.00 Tax +12.30

+ +

Touring Size Cover 27450          $244.00                            $219.60

+ +

Retail $219.96 S&H 10.00 Tax 14.04

+ +

Discount $197.74 S&H 10.00 Tax 11.86

+ +

(Prices include all Taxes, Shipping +and Handling

+ +
+ + + + diff --git a/pricelist_raw2.html b/pricelist_raw2.html new file mode 100755 index 0000000..adeea64 --- /dev/null +++ b/pricelist_raw2.html @@ -0,0 +1,61 @@ + + + + + + + + + +PRICE LIST/ 2000/0 1 + + + + + + + + + +

DISTRIBUTOR PRICE LIST/2001

+CAR COCOONS                    RETAIL                 DISCOUNT LESS 10% +

(QUANTITY BUYS)

+

(COLLECTORS & CLUBS)

+

Small 41625                            $370.00                               $333.00

+

Corvette size approximately

+

(19’Circumference x 18’L fits 15’ +long car)

+

Retail Base 337.80 + 11.94 S&H Tax 20.26

+

Discount 303.25 + 11.56 S&H Tax 18.19

+

Medium 48937                        $435.00                               $391.50

+

Chevelle SS size approximately

+

(22 Circumference x 21’L fits 17.5 +long car)

+

Retail base 399.49 + 11.55 S&H Tax 23.96

+

Discount 359.18 + 10.77 +S&H Tax 21.55

+

Large 60750                             $540.00                              $486.00

+

Cadillac size approximately

+

(25’Circumference x 24’L fits 20’long +car)

+

Retail base 500.00 + 10.00 S&H Tax 30.00

+

Discount 449.00 + 10.06 S&H Tax +26.94

+

Motorcycle Cocoons                   RETAIL             DISCOUNT LESS 10%

+

                                                                                                                            +(QUANTITY BUYS)

+

                                                                                                                       (COLLECTORS +& CLUBS)

+

Large Cover 26888                      $239.00                            $215.10

+

Retail +$214.66 S&H 10.00 Tax 14.34

+

Discount $192.20 S&H 11.00 Tax +12.30

+

Touring Size Cover 27450          $244.00                            $219.60

+

Retail $219.96 S&H 10.00 Tax 14.04

+

Discount $197.74 S&H 10.00 Tax 11.86

+

(Prices include all Taxes, Shipping +and Handling

+ + + diff --git a/prototype.jpg b/prototype.jpg new file mode 100755 index 0000000..291deae Binary files /dev/null and b/prototype.jpg differ diff --git a/prototype2.jpg b/prototype2.jpg new file mode 100755 index 0000000..a28c9a6 Binary files /dev/null and b/prototype2.jpg differ diff --git a/psd/cortec.psd b/psd/cortec.psd new file mode 100755 index 0000000..337a16a Binary files /dev/null and b/psd/cortec.psd differ diff --git a/psd/photos/buell 1 b/psd/photos/buell 1 new file mode 100755 index 0000000..8b9d314 Binary files /dev/null and b/psd/photos/buell 1 differ diff --git a/psd/photos/buell 2 b/psd/photos/buell 2 new file mode 100755 index 0000000..9096ffc Binary files /dev/null and b/psd/photos/buell 2 differ diff --git a/psd/photos/buell 3 b/psd/photos/buell 3 new file mode 100755 index 0000000..5e4ea63 Binary files /dev/null and b/psd/photos/buell 3 differ diff --git a/psd/photos/dresser 1 b/psd/photos/dresser 1 new file mode 100755 index 0000000..b9a73f0 Binary files /dev/null and b/psd/photos/dresser 1 differ diff --git a/psd/photos/dresser 2 b/psd/photos/dresser 2 new file mode 100755 index 0000000..84d1e7d Binary files /dev/null and b/psd/photos/dresser 2 differ diff --git a/psd/photos/dresser 3 b/psd/photos/dresser 3 new file mode 100755 index 0000000..a14b554 Binary files /dev/null and b/psd/photos/dresser 3 differ diff --git a/psd/photos/goldcar1.psd b/psd/photos/goldcar1.psd new file mode 100755 index 0000000..118b994 Binary files /dev/null and b/psd/photos/goldcar1.psd differ diff --git a/psd/photos/goldcar2.psd b/psd/photos/goldcar2.psd new file mode 100755 index 0000000..127f5c9 Binary files /dev/null and b/psd/photos/goldcar2.psd differ diff --git a/psd/photos/goldcar3.psd b/psd/photos/goldcar3.psd new file mode 100755 index 0000000..8f9c649 Binary files /dev/null and b/psd/photos/goldcar3.psd differ diff --git a/psd/photos/goldcar4.psd b/psd/photos/goldcar4.psd new file mode 100755 index 0000000..6b5e1e7 Binary files /dev/null and b/psd/photos/goldcar4.psd differ diff --git a/psd/photos/redcar1.psd b/psd/photos/redcar1.psd new file mode 100755 index 0000000..784b5db Binary files /dev/null and b/psd/photos/redcar1.psd differ diff --git a/psd/photos/redcar2.psd b/psd/photos/redcar2.psd new file mode 100755 index 0000000..5ba06f8 Binary files /dev/null and b/psd/photos/redcar2.psd differ diff --git a/psd/photos/redcar3.psd b/psd/photos/redcar3.psd new file mode 100755 index 0000000..4ca7967 Binary files /dev/null and b/psd/photos/redcar3.psd differ diff --git a/psd/photos/redcar4.psd b/psd/photos/redcar4.psd new file mode 100755 index 0000000..4b09282 Binary files /dev/null and b/psd/photos/redcar4.psd differ diff --git a/psd/photos/redcar5.psd b/psd/photos/redcar5.psd new file mode 100755 index 0000000..8003e5a Binary files /dev/null and b/psd/photos/redcar5.psd differ diff --git a/psd/photos/redcar6.psd b/psd/photos/redcar6.psd new file mode 100755 index 0000000..c7de245 Binary files /dev/null and b/psd/photos/redcar6.psd differ diff --git a/psd/photos/redcar7.psd b/psd/photos/redcar7.psd new file mode 100755 index 0000000..35165d3 Binary files /dev/null and b/psd/photos/redcar7.psd differ diff --git a/psd/photos/redcar8.psd b/psd/photos/redcar8.psd new file mode 100755 index 0000000..56c208a Binary files /dev/null and b/psd/photos/redcar8.psd differ diff --git a/psd/photos/redcar9.psd b/psd/photos/redcar9.psd new file mode 100755 index 0000000..0ab28f3 Binary files /dev/null and b/psd/photos/redcar9.psd differ diff --git a/psd/photos/sportster 1 b/psd/photos/sportster 1 new file mode 100755 index 0000000..2379d91 Binary files /dev/null and b/psd/photos/sportster 1 differ diff --git a/psd/photos/sportster 2 b/psd/photos/sportster 2 new file mode 100755 index 0000000..517a8e6 Binary files /dev/null and b/psd/photos/sportster 2 differ diff --git a/psd/photos/sportster 3 b/psd/photos/sportster 3 new file mode 100755 index 0000000..a23177e Binary files /dev/null and b/psd/photos/sportster 3 differ diff --git a/psd/prototype.psd b/psd/prototype.psd new file mode 100755 index 0000000..6c2425a Binary files /dev/null and b/psd/prototype.psd differ diff --git a/psd/prototypeindside.psd b/psd/prototypeindside.psd new file mode 100755 index 0000000..941b957 Binary files /dev/null and b/psd/prototypeindside.psd differ diff --git a/psd/splash.psd b/psd/splash.psd new file mode 100755 index 0000000..d4ddc0b Binary files /dev/null and b/psd/splash.psd differ diff --git a/psd/tagline.psd b/psd/tagline.psd new file mode 100755 index 0000000..7c570f1 Binary files /dev/null and b/psd/tagline.psd differ diff --git a/shows.phtml b/shows.phtml new file mode 100755 index 0000000..911dc05 --- /dev/null +++ b/shows.phtml @@ -0,0 +1,153 @@ + + + +Classic Car Cocoon long term corrosion protection of classic cars and motorcycles + + + + + + + + + + + + + + +
+ + + + +
+ + + + + + + + + +
Classic CarClassic MotorcycleCustomer TestimonalsFAQ Section
Shows and Events
+ + + + + + + + + + + + +
Order OnlineHomeContact UsTell a Friend
+
+
+
+ + + + +
+
Corrosion Control Outdoors LLC
+
Luzerne, MI 48636
+
Phone: 231.360.9990
+ + +
+
+

Shows and Events

+ +

+

+ "; + echo "

"; + } + ?> + + + + Time: ".$row[$i][btime]." to ".$row[$i][etime]; + }elseif($row[$i][btime] != ""){ + echo "
Time: ".$row[$i][btime]; + } + if($row[$i][descr] != "") + echo "
".nl2br($row[$i][descr]); + if($row[$i][url] != "") { + echo "
Website: http://".$row[$i][url].""; + } + if($row[$i][contact] != "" && $row[$i][email] != ""){ + echo "
Contact: ".$row[$i][contact].""; + }elseif($row[$i][contact] != "") { + echo "
Contact: ".$row[$i][contact]; + } + if($row[$i][phone] != "") { + echo "
Phone: ".$row[$i][phone]; + } + if($row[$i][loc] != "") { + echo "
Location: ".$row[$i][loc]; + } + if($row[$i][state] != "") { + echo "
State: ".$row[$i][state]; + } + ?> +

+ +
+ + + +
  + +   +
+ +
 
+ + diff --git a/splash.html b/splash.html new file mode 100755 index 0000000..d5143f5 --- /dev/null +++ b/splash.html @@ -0,0 +1,77 @@ + + +Classic Car Cocoon + + + + + + + + + + +
+ + + + + + + + +
+ CORROSION INHIBITING CLASSIC CAR COCOONS
+ Don't just cover your classic car... Give it total rust & corrosion protection!
+ Corrosion free storage for your classic car or motorcycle +
    +
  • Not just a bag with a zipper or a standard car cover
  • +
  • Utilizes Vapor Corrosion Inhibitor (VCI) Technology
  • +
  • Technology developed for the military and NATO
  • +
+
Years of corrosion protection
+ CORROSION CONTROL OUTDOORS
+ LLC-Petoskey, MI
+
Phone 1-231-439-3768
+ E-mail: info@classiccarcocoon.com +
+
  +
+ +
+ + diff --git a/testimonials.html b/testimonials.html new file mode 100755 index 0000000..0f9b72f --- /dev/null +++ b/testimonials.html @@ -0,0 +1,153 @@ + + + +classic car cocoon long term corrosion protection of classic cars and motorcycles + + + + + + + + + + + + + + +
+ + + + +
+ + + + + + + + + +
Classic CarClassic MotorcycleCustomer TestimonalsFAQ Section
Shows and Events
+ + + + + + + + + + + + +
Order OnlineHomeContact UsTell a Friend
+
+
+
+ + + + + +
+
Corrosion Control Outdoors LLC
+
Luzerne, MI 48636
+
Phone: 231.360.9990
+ +
+
+

Testimonials

+ + + + +
+

Craig,
+ I live in the Midwest and the temperature and humidity is constantly changing which can play havoc on my classic cars relative to +corrosion. I was storing my cars in an unheated garage with regular car covers, and when pulling them out for the summer always +noticed some rust on them. Rather than constantly worrying about their "unprotected" storage I procured one of your cocoons, and +when pulling out one of them this spring I saw no corrosion whatsoever. Was I ever relieved! I even put an unplated piece of +steel in the cocoon and one in one of the cars without the cocoon. The piece of steel in the car without the cocoon exhibited some +rust (along with the car), but the piece in the cocoon showed absolutely no rust, likewise the car. By the way, we had a bad winter +here this year with lots of humidity/temperature change. Anyhow, your cocoon has made me a "believer" so much that I will order two +more for my other cars and have a "worry free" off season. Best of luck to you and your company. +

+

+ Sincerely, Jerry Antczak +

+
+
+ + + + +
+

Dear Craig,
+ The car cocoon I purchased from you is great. It is the best investment I +could have made to protect my 1970 Mach I. My car is stored during the +off-season in an unheated garage with a car that is a daily driver. All +winter the door is constantly being opened exposing my car to the elements +not to mention all the snow, slush and salt the other car brings in. The +past winter that did not worry me at all because my car was completely +protected by the car cocoon. +
+
+I have recommended your product to several friends who own classic cars or +motorcycles and they have all been very happy and thanked me for turning +them on to the cocoon. +
+
+Craig, again, you have a great product. Anyone who has concerns about +storing their classic car in the off-season should own one. It is by far the +best product on the market. I know. I have tried others. +
+
+Thanks,
+Gerry +

+
+
  + +   +
+ +
 
+ + diff --git a/text/congrats.txt b/text/congrats.txt new file mode 100755 index 0000000..9dda1ad --- /dev/null +++ b/text/congrats.txt @@ -0,0 +1 @@ +Don't Just Cover Your Classic Car...Cocoon It! GIVE IT TOTAL RUST AND CORROSION PROTECTION INTRODUCING: CORROSION INHIBITING CLASSIC CAR COCOONS(tm) Congratulations! Your new Corrosion Inhibiting Classic Car Cocoon represents the latest in rust and corrosion prevention technology. Here's how it works: The Car Cocoon material is impregnated with Vapor Corrosion Inhibitors (VCI's). These VCI's migrate to all metal parts of the vehicle when the car is zipped up and inside the Cocoon. The vapors bond and form an invisible layer of protection on all metals. They are electrochemically drawn to the metals surface just like dust is drawn to a computer screen. The end result is many years of protection from the air, salt, and moisture which cause corrosion. This is a storage "Cocoon" not a bag or cover. Traditional covers (canvas, vinyl, or nylon) will not protect a car from the ravages of rust and corrosion, in fact, some will accelerate rust and corrosion by acting as a breeding ground holding humidity in. Your Classic Car should be stored inside. Even though the Cocoon will protect your car from harmful UV rays, we recommend that you store your car inside. Tips to getting the most out of your Cocoon: When not in use always store your Cocoon zipped up in a container like the box it came in, or a clean plastic garbage can to prevent depletion of the VCI's. VCI's will continue to emit vapors and protect your classic car for many years. After a few years you might want to purchase an emitter shield or two and place them inside of the Cocoon for long term storage protection. Thanks for choosing us to protect your Classic Car, smart move! Corrosion Control Outdoors, LLC 995 Evergreen Ct. Petoskey, MI 49770 231-439-3768 www.classiccarcocoon.com email: ccocarcocoons@netscape.net \ No newline at end of file diff --git a/text/congratsmotorcycle.txt b/text/congratsmotorcycle.txt new file mode 100755 index 0000000..4dc6a18 --- /dev/null +++ b/text/congratsmotorcycle.txt @@ -0,0 +1 @@ +Don't Just Cover Your Motorcycle...Cocoon It! GIVE IT TOTAL RUST AND CORROSION PROTECTION INTRODUCING: CORROSION INHIBITING MOTORCYCLE COCOONS(tm) Congratulations! Your new Corrosion Inhibiting Motorcycle Cocoon represents the latest in rust and corrosion prevention technology. Here's how it works: The Motorcycle Cocoon material is impregnated with Vapor Corrosion Inhibitors (VCI's). These VCI's migrate to all metal parts of the bike when it is zipped up and inside the Cocoon. The vapors bond and form an invisible layer of protection on all metals. They are electrochemically drawn to the metals surface just like dust is drawn to a computer screen. The end result is many years of protection from the air, salt, and moisture which cause corrosion. This is a storage "Cocoon" not a bag or cover. Traditional covers (canvas, vinyl, or nylon) will not protect a bike from the ravages of rust and corrosion, in fact, some will accelerate rust and corrosion by acting as a breeding ground holding humidity in. Your Motorcycle should be stored inside. Even though the Cocoon will protect your bike from harmful UV rays, we recommend that you store your bike inside. Tips to getting the most out of your Cocoon: When not in use always store your Cocoon zipped up in a container like the box it came in, or a clean plastic garbage can to prevent depletion of the VCI's. VCI's will continue to emit vapors and protect your bike for many years. After a few years you might want to purchase an emitter shield or two and place them inside of the Cocoon for long term storage protection. Thanks for choosing us to protect your Classic Car, smart move! Corrosion Control Outdoors, LLC 995 Evergreen Ct. Petoskey, MI 49770 231-439-3768 www.classiccarcocoon.com email: ccocarcocoons@netscape.net \ No newline at end of file diff --git a/text/don'tjustcover.txt b/text/don'tjustcover.txt new file mode 100755 index 0000000..d2521fb --- /dev/null +++ b/text/don'tjustcover.txt @@ -0,0 +1 @@ + Don't Just Cover Your Classic Car...Cocoon It! GIVE IT TOTAL RUST AND CORROSION PROTECTION INTRODUCING: CORROSION INHIBITING CLASSIC CAR COCOONS(tm) Corrosion Inhibiting Classic Car Cocoons represent the latest in rust and corrosion prevention technology. Here's how it works: The Car Cocoon material is impregnated with Vapor Corrosion Inhibitors (VCI's). These VCI's migrate to all metal parts of the vehicle when the car is zipped up and inside the Cocoon. The vapors bond and form an invisible layer of protection on all metals. They are electrochemically drawn to the metals surface just like dust is drawn to a computer screen. The end result is many years of protection from the air, salt, and moisture which cause corrosion. This is a storage "Cocoon" not a bag or cover. Traditional covers (canvas, vinyl, or nylon) will not protect a car from the ravages of rust and corrosion, in fact, some will accelerate rust and corrosion by acting as a breeding ground holding humidity in. Your Classic Car should be stored inside. Even though the Cocoon will protect your car from harmful UV rays, we recommend that you store your car inside. Corrosion Control Outdoors, LLC 995 Evergreen Ct. Petoskey, MI 49770 231-439-3768 www.classiccarcocoon.com email: ccocarcocoons@netscape.net \ No newline at end of file diff --git a/text/motorcycle.txt b/text/motorcycle.txt new file mode 100755 index 0000000..1dba985 --- /dev/null +++ b/text/motorcycle.txt @@ -0,0 +1 @@ +CORROSION INHIBITING CLASSIC MOTORCYCLE COCOON(tm) Stop the Rust and Corrosion from attacking the appearance and performance of your Motorcycle Conventional covers protect motorcycles from dust....period! Canvas or vinyl motorcycle covers will not protect a stored motorcycle from the ravages of rust and corrosion that will impair its looks as well as its performance. In fact, some covers actually promote rust and corrosion by acting as a breeding ground holding moisture and humidity in...not keeping it out! Our Corrosion Inhibiting Classic Motorcycle Cocoons are impregnated with VCI's (Vapor Corrosion Inhibitors). VCI's form an invisible molecular film of electrochemical inhibitors on the metals surface. These inhibitors are manufactured right into the lining of the cocoon. This process works the same way that dust is drawn to a TV or computer monitor. They bond to the metals surface and block moisture and oxygen from getting to the metals surface thus protecting it from corrosion. This technology has been used by the military to mothball equipment and weapons , as well as the Automotive and Electronics Industry for years. We are bringing this technology to you so as to provide long and short term storage corrosion protection for your bike. o Blocks rust and corrosion with the same Vapor Corrosion Inhibitors (VCI's) developed for major industries, the military and NATO o Protects all metal surfaces that air can reach for many years... even under extreme conditions o VCI's will protect as low as -30¼ F. SPECIALISTS IN PROTECTING CLASSIC MOTORCYCLES AND CARS FROM CORROSION Corrosion Control Outdoors, LLC 1-231-439-3768 email: ccocarcocoons@netscape.net / www.classiccarcocoon.com \ No newline at end of file diff --git a/text/motorcycledon'tjust.txt b/text/motorcycledon'tjust.txt new file mode 100755 index 0000000..a7c390c --- /dev/null +++ b/text/motorcycledon'tjust.txt @@ -0,0 +1 @@ +Don't Just Cover Your Motorcycle...Cocoon It! GIVE IT TOTAL RUST AND CORROSION PROTECTION INTRODUCING: CORROSION INHIBITING MOTORCYCLE COCOONS(tm) Corrosion Inhibiting Motorcycle Cocoons represent the latest in rust and corrosion prevention technology. Here's how it works: The Motorcycle Cocoon material is impregnated with Vapor Corrosion Inhibitors (VCI's). These VCI's migrate to all metal parts of the bike when it is zipped up and inside the Cocoon. The vapors bond and form an invisible layer of protection on all metals. They are electrochemically drawn to the metals surface just like dust is drawn to a computer screen. The end result is many years of protection from the air, salt, and moisture which cause corrosion. This is a storage "Cocoon" not a bag or cover. Traditional covers (canvas, vinyl, or nylon) will not protect a motorcycle from the ravages of rust and corrosion, in fact, some will accelerate rust and corrosion by acting as a breeding ground holding humidity in. Your Motorcycle should be stored inside. Even though the Cocoon will protect your bike from harmful UV rays, we recommend that you store your bike inside for long term storage. Corrosion Control Outdoors, LLC 995 Evergreen Ct. Petoskey, MI 49770 231-439-3768 www.classiccarcocoon.com email: ccocarcocoons@netscape.net \ No newline at end of file diff --git a/thankyou.html b/thankyou.html new file mode 100755 index 0000000..2ef3841 --- /dev/null +++ b/thankyou.html @@ -0,0 +1,106 @@ + + + +Classic Car Cocoon + + + + + + + + + + + + + + + +
+ + + + +
+ + + + + + + + + +
Classic CarClassic MotorcycleCustomer TestimonalsFAQ Section
Shows and Events
+ + + + + + + + + + + + +
Order OnlineHomeContact UsTell a Friend
+
+
+ +
+ + + + +
+
Corrosion Control Outdoors LLC
+
Luzerne, MI 48636
+
Phone: 231.360.9990
+ + +
+
+

Form submitted successfully

+
  + +   +
+ +
 
+ +