diff --git a/.editorconfig b/.editorconfig
new file mode 100644
index 00000000..378ef871
--- /dev/null
+++ b/.editorconfig
@@ -0,0 +1,7 @@
+# Rules in this file were initially inferred by Visual Studio IntelliCode from the C:\Users\zefie\source\repos\zefie_wtvp_minisrv codebase based on best match to current usage at 8/13/2021
+# You can modify the rules from these initially generated values to suit your own policies
+# You can learn more about editorconfig here: https://docs.microsoft.com/en-us/visualstudio/ide/editorconfig-code-style-settings-reference
+root = true
+
+[*]
+end_of_line = lf
diff --git a/.gitattributes b/.gitattributes
index 1ff0c423..9965ea72 100644
--- a/.gitattributes
+++ b/.gitattributes
@@ -1,8 +1,7 @@
###############################################################################
# Set default behavior to automatically normalize line endings.
###############################################################################
-* text=auto
-
+* text=auto eol=lf
###############################################################################
# Set default behavior for command prompt diff.
#
diff --git a/BoxConnectingNotes.txt b/BoxConnectingNotes.txt
new file mode 100644
index 00000000..ef7393ca
--- /dev/null
+++ b/BoxConnectingNotes.txt
@@ -0,0 +1,16 @@
+- "Dialing toll-free" (hereby "ANI Number") is usually:
+ - 18006138199 (production
+ - 18004653537 (daily)
+ - 16506944611 (genesis/genpak)
+
+- If you have a enhanced 56k modem setup, do NOT let the ANI Number call answer anything above v34 (33600)
+
+- Production will look for a service at 10.0.0.1, and fall back to 10.0.0.2
+- Daily (debug or non-debug) will look for a service at 10.0.128.1
+- Builds default to their respective service (eg daily builds will try to connect to 10.0.128.1)
+
+- Once box has a tellyscript, service IP is retained.
+- Trigger ANI call by removing and restoring power, and choosing "Moved" or "New Number", don't always need to blast NV
+
+- PO Code 32768 to Blast NVRAM
+- PO Code 77437 to override ANI Number (and/or service number)
diff --git a/docker-compose/minisrv/Dockerfile b/docker-compose/minisrv/Dockerfile
index 547cefc5..919866f5 100644
--- a/docker-compose/minisrv/Dockerfile
+++ b/docker-compose/minisrv/Dockerfile
@@ -1,13 +1,13 @@
FROM node:current-alpine
-RUN apk add git
+RUN apk add git bash
RUN npm install -g npm@latest 2>/dev/null > /dev/null
RUN cd /opt && git clone --depth=1 https://github.com/zefie/zefie_wtvp_minisrv.git minisrv
RUN cd /opt/minisrv && git config pull.ff only
RUN cd /opt/minisrv/zefie_wtvp_minisrv && npm install
COPY ./run.sh /opt/minisrv/zefie_wtvp_minisrv/run.sh
-RUN chmod +x /opt/minisrv/zefie_wtvp_minisrv/run.sh
+RUN chmod 755 /opt/minisrv/zefie_wtvp_minisrv/run.sh
WORKDIR /opt/minisrv/zefie_wtvp_minisrv
CMD ./run.sh
diff --git a/docker-compose/minisrv/run.sh b/docker-compose/minisrv/run.sh
index a6849b7c..a4e11ee2 100644
--- a/docker-compose/minisrv/run.sh
+++ b/docker-compose/minisrv/run.sh
@@ -1,3 +1,10 @@
-#!/bin/sh
+#!/bin/bash
+
+do_exit() {
+ exit 1
+}
+trap do_exit SIGINT
+trap do_exit SIGTERM
+
git pull
-node app.js
+npm start
diff --git a/zefie_wtvp_minisrv.sln b/zefie_wtvp_minisrv.sln
index 013f2d4a..a7cf3af1 100644
--- a/zefie_wtvp_minisrv.sln
+++ b/zefie_wtvp_minisrv.sln
@@ -5,6 +5,11 @@ VisualStudioVersion = 16.0.31424.327
MinimumVisualStudioVersion = 10.0.40219.1
Project("{9092AA53-FB77-4645-B42D-1CCCA6BD08BD}") = "zefie_wtvp_minisrv", "zefie_wtvp_minisrv\zefie_wtvp_minisrv.njsproj", "{31B77D0C-F03D-43A7-BF7F-FAD7174728BF}"
EndProject
+Project("{2150E333-8FDC-42A3-9474-1A3956D46DE8}") = "Solution Items", "Solution Items", "{43F45808-5970-4BB5-8226-A7E4540BA531}"
+ ProjectSection(SolutionItems) = preProject
+ .editorconfig = .editorconfig
+ EndProjectSection
+EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
diff --git a/zefie_wtvp_minisrv/ServiceDeps/premade_tellyscripts/LC2/LC2_WTV_18006138199.detok.txt b/zefie_wtvp_minisrv/ServiceDeps/premade_tellyscripts/LC2/LC2_WTV_18006138199.detok.txt
index 3e34e729..5cc3e7e9 100644
--- a/zefie_wtvp_minisrv/ServiceDeps/premade_tellyscripts/LC2/LC2_WTV_18006138199.detok.txt
+++ b/zefie_wtvp_minisrv/ServiceDeps/premade_tellyscripts/LC2/LC2_WTV_18006138199.detok.txt
@@ -351,7 +351,7 @@ main()
flush();
- setprogresstext("Dialing your hacky modem...");
+ setprogresstext("Dialing HackTV...");
setprogresspercentage(32);
setprogressdirty(1);
diff --git a/zefie_wtvp_minisrv/ServiceDeps/premade_tellyscripts/LC2/LC2_WTV_18006138199.tok b/zefie_wtvp_minisrv/ServiceDeps/premade_tellyscripts/LC2/LC2_WTV_18006138199.tok
index 3d140d83..dac95ae8 100644
Binary files a/zefie_wtvp_minisrv/ServiceDeps/premade_tellyscripts/LC2/LC2_WTV_18006138199.tok and b/zefie_wtvp_minisrv/ServiceDeps/premade_tellyscripts/LC2/LC2_WTV_18006138199.tok differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/1-what.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/1-what.gif
new file mode 100644
index 00000000..a4c90cbb
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/1-what.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/2-for-you.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/2-for-you.gif
new file mode 100644
index 00000000..395c91ca
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/2-for-you.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/3-others.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/3-others.gif
new file mode 100644
index 00000000..0a3193d9
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/3-others.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/4-launch.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/4-launch.gif
new file mode 100644
index 00000000..53d868dc
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/4-launch.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/4-webtv.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/4-webtv.gif
new file mode 100644
index 00000000..e89c0078
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/4-webtv.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/Choice.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/Choice.gif
new file mode 100644
index 00000000..3f39d6e7
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/Choice.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/launch-live.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/launch-live.gif
new file mode 100644
index 00000000..4e84b2b8
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/launch-live.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/launch-sim.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/launch-sim.gif
new file mode 100644
index 00000000..6f80ecd0
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/launch-sim.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/live.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/live.gif
new file mode 100644
index 00000000..84f80ec6
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/live.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/music15-mn.aiff b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/music15-mn.aiff
new file mode 100644
index 00000000..9d588cf7
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/music15-mn.aiff differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/music15.mid b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/music15.mid
new file mode 100644
index 00000000..3cb7f7be
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/music15.mid differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/sim.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/sim.gif
new file mode 100644
index 00000000..2e543085
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/_media/sim.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/allyouneed.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/allyouneed.html
deleted file mode 100644
index 55922b5c..00000000
--- a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/allyouneed.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-Shockwave
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/allyouneed.swf b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/allyouneed.swf
deleted file mode 100644
index 2500fb7a..00000000
Binary files a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/allyouneed.swf and /dev/null differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/attract.mpg b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/attract.mpg
new file mode 100644
index 00000000..e18d8bb4
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/attract.mpg differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/attractloop.swf b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/attractloop.swf
deleted file mode 100644
index d906a72e..00000000
Binary files a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/attractloop.swf and /dev/null differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/can-you-hear.mpg b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/can-you-hear.mpg
new file mode 100644
index 00000000..ca097e80
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/can-you-hear.mpg differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/communicate.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/communicate.html
deleted file mode 100644
index 5e785ff9..00000000
--- a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/communicate.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-Shockwave
-
-
-
-
-
-
-
-
-
-
-
-
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/communicate.swf b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/communicate.swf
deleted file mode 100644
index a48c2adb..00000000
Binary files a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/communicate.swf and /dev/null differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/hear.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/hear.html
new file mode 100644
index 00000000..e1426344
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/hear.html
@@ -0,0 +1 @@
+
Can you hear this?
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_all.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_all.gif
deleted file mode 100644
index c94d1724..00000000
Binary files a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_all.gif and /dev/null differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_comm.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_comm.gif
deleted file mode 100644
index 4594076c..00000000
Binary files a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_comm.gif and /dev/null differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_interactive.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_interactive.gif
deleted file mode 100644
index 7390bf5a..00000000
Binary files a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_interactive.gif and /dev/null differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_internet.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_internet.gif
deleted file mode 100644
index 05c136dd..00000000
Binary files a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_internet.gif and /dev/null differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_try.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_try.gif
deleted file mode 100644
index 8f977b92..00000000
Binary files a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/buttonsplus_try.gif and /dev/null differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/spacer.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/spacer.gif
deleted file mode 100644
index 5bfd67a2..00000000
Binary files a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/images/spacer.gif and /dev/null differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/index.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/index.html
index e9328216..03c37d8e 100644
--- a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/index.html
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/index.html
@@ -1,15 +1 @@
-
-
-Shockwave
-
-
-
-
-
-
-
-
-
-
-
-
+
Attract Loop
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/interactive.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/interactive.html
deleted file mode 100644
index 7e6a2f8c..00000000
--- a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/interactive.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-Shockwave
-
-
-
-
-
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/mainmenu.swf b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/mainmenu.swf
deleted file mode 100644
index 31fdcade..00000000
Binary files a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/mainmenu.swf and /dev/null differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/menu1.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/menu1.html
new file mode 100644
index 00000000..9389710b
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/menu1.html
@@ -0,0 +1 @@
+
Interactive Menu
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/menu2.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/menu2.html
new file mode 100644
index 00000000..4bcf2400
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/menu2.html
@@ -0,0 +1 @@
+
Interactive Menu
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/menu3.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/menu3.html
new file mode 100644
index 00000000..fc0c5ca6
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/menu3.html
@@ -0,0 +1 @@
+
Interactive Menu
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/menu4.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/menu4.html
new file mode 100644
index 00000000..835b9751
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/menu4.html
@@ -0,0 +1 @@
+
Interactive Menu
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/service.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/service.html
new file mode 100644
index 00000000..07ae1d12
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/service.html
@@ -0,0 +1 @@
+
Launch WebTV Service Menu
Choose one.
The store you are now in may not be wired into the service. If you get an error message,
choose the service to discover all the features and benefits of WebTV Plus online.
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/AroundTownIcon2.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/AroundTownIcon2.gif
new file mode 100644
index 00000000..396f1b3c
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/AroundTownIcon2.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/Chat.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/Chat.gif
new file mode 100644
index 00000000..b2ef4027
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/Chat.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/CommunityBanner.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/CommunityBanner.gif
new file mode 100644
index 00000000..ad1781dd
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/CommunityBanner.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/ExploreTitle.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/ExploreTitle.gif
new file mode 100644
index 00000000..29cdd034
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/ExploreTitle.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/HomeBanner.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/HomeBanner.gif
new file mode 100644
index 00000000..1c739455
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/HomeBanner.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/PromotionLeftEdge.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/PromotionLeftEdge.gif
new file mode 100644
index 00000000..7aca3206
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/PromotionLeftEdge.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/SiteShowcase.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/SiteShowcase.gif
new file mode 100644
index 00000000..f20e7029
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/SiteShowcase.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/news_icon.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/news_icon.gif
new file mode 100644
index 00000000..656be1cb
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/ROMCache/news_icon.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/ROMCache/AT_BannerGradient.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/ROMCache/AT_BannerGradient.gif
new file mode 100644
index 00000000..9ae0dc54
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/ROMCache/AT_BannerGradient.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/ROMCache/AT_BannerIcon.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/ROMCache/AT_BannerIcon.gif
new file mode 100644
index 00000000..2d2f8c48
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/ROMCache/AT_BannerIcon.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/ROMCache/AT_BottomShadow.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/ROMCache/AT_BottomShadow.gif
new file mode 100644
index 00000000..637d7ad6
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/ROMCache/AT_BottomShadow.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/ROMCache/AT_Shadow.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/ROMCache/AT_Shadow.gif
new file mode 100644
index 00000000..fba1f05a
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/ROMCache/AT_Shadow.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/00.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/00.gif
new file mode 100644
index 00000000..2ad7f58b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/00.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/02.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/02.gif
new file mode 100644
index 00000000..25a7fc6f
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/02.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/03.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/03.gif
new file mode 100644
index 00000000..17b98487
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/03.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/AT_YahooLogo2.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/AT_YahooLogo2.gif
new file mode 100644
index 00000000..ea8b0ced
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/AT_YahooLogo2.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/AT_Zip2Logo.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/AT_Zip2Logo.gif
new file mode 100644
index 00000000..e893d30b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/AT_Zip2Logo.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/AccuWeatherLogo.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/AccuWeatherLogo.gif
new file mode 100644
index 00000000..57f314e7
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/AccuWeatherLogo.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/CitySearchLogo.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/CitySearchLogo.gif
new file mode 100644
index 00000000..93299f63
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/CitySearchLogo.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/Classifieds2000Logo.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/Classifieds2000Logo.gif
new file mode 100644
index 00000000..59f3e879
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/Classifieds2000Logo.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/Four11Logo.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/Four11Logo.gif
new file mode 100644
index 00000000..5b00694b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/Four11Logo.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/MovieLinkLogo.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/MovieLinkLogo.gif
new file mode 100644
index 00000000..e47f7028
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/MovieLinkLogo.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/ZagatLogo.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/ZagatLogo.gif
new file mode 100644
index 00000000..c07e1617
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/images/ZagatLogo.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/index.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/index.html
new file mode 100644
index 00000000..3771ef73
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/aroundtown/index.html
@@ -0,0 +1 @@
+
Around Town
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/AroundTownIcon2.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/AroundTownIcon2.gif
new file mode 100644
index 00000000..396f1b3c
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/AroundTownIcon2.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/Chat.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/Chat.gif
new file mode 100644
index 00000000..b2ef4027
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/Chat.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/CommunityBanner.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/CommunityBanner.gif
new file mode 100644
index 00000000..ad1781dd
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/CommunityBanner.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/ExploreTitle.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/ExploreTitle.gif
new file mode 100644
index 00000000..29cdd034
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/ExploreTitle.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/SiteShowcase.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/SiteShowcase.gif
new file mode 100644
index 00000000..f20e7029
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/SiteShowcase.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/news_icon.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/news_icon.gif
new file mode 100644
index 00000000..656be1cb
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/ROMCache/news_icon.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/index.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/index.html
new file mode 100644
index 00000000..77980a8b
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/community/index.html
@@ -0,0 +1 @@
+
Community
Around Town
Movies, entertainment, weather, and local information for
Town, or choose a different city.
Chat
Meet and interact with other people right on your TV screen.
Discuss
Messages, pictures, and music in thousands of
bulletin-board categories.
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20BV1.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20BV1.gif
new file mode 100644
index 00000000..ce2df6c3
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20BV1.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20BV2.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20BV2.gif
new file mode 100644
index 00000000..ce2df6c3
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20BV2.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20TH1.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20TH1.gif
new file mode 100644
index 00000000..b8973a1b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20TH1.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20TV1.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20TV1.gif
new file mode 100644
index 00000000..ce2df6c3
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20TV1.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20TV2.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20TV2.gif
new file mode 100644
index 00000000..ce2df6c3
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S20TV2.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S40H1.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S40H1.gif
new file mode 100644
index 00000000..b8973a1b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S40H1.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S40V1.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S40V1.gif
new file mode 100644
index 00000000..ce2df6c3
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S40V1.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S40V2.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S40V2.gif
new file mode 100644
index 00000000..ce2df6c3
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S40V2.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS1.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS1.gif
new file mode 100644
index 00000000..5bb6ca39
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS1.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS2.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS2.gif
new file mode 100644
index 00000000..5bb6ca39
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS2.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS3.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS3.gif
new file mode 100644
index 00000000..5bb6ca39
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS3.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS4.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS4.gif
new file mode 100644
index 00000000..5bb6ca39
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS4.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS5.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS5.gif
new file mode 100644
index 00000000..5bb6ca39
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/S60HS5.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/SAdH1.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/SAdH1.gif
new file mode 100644
index 00000000..f34009ac
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/SAdH1.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/SAdH2.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/SAdH2.gif
new file mode 100644
index 00000000..f34009ac
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/SAdH2.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/SAdH3.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/SAdH3.gif
new file mode 100644
index 00000000..f34009ac
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/SAdH3.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/ShadowCorner.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/ShadowCorner.gif
new file mode 100644
index 00000000..e734d451
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/ShadowCorner.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/ShadowH.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/ShadowH.gif
new file mode 100644
index 00000000..b8973a1b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/ShadowH.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/ShadowHCap.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/ShadowHCap.gif
new file mode 100644
index 00000000..c7ee6374
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/ShadowHCap.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/ShadowHStart.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/ShadowHStart.gif
new file mode 100644
index 00000000..f92af56e
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/ROMCache/ShadowHStart.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/art-n-sciences.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/art-n-sciences.html
new file mode 100644
index 00000000..088f58a2
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/art-n-sciences.html
@@ -0,0 +1 @@
+
Explore Art & Science
Main menu
Art & Science
Letters Magazine
Letters as literature? This magazine blends historical correspondence and readers' contributions into a thought- provoking stew.
Explore Art & Science
More fun than an encyclopedia, if such a thing is possible
Find out how other people apply Taoist thought to contemporary issues
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/art__science.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/art__science.gif
new file mode 100644
index 00000000..b56495d7
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/art__science.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/entertainment.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/entertainment.gif
new file mode 100644
index 00000000..e4668a2f
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/entertainment.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/fun__games.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/fun__games.gif
new file mode 100644
index 00000000..f76d468d
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/fun__games.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/health.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/health.gif
new file mode 100644
index 00000000..75e1e0cf
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/health.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/home_life.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/home_life.gif
new file mode 100644
index 00000000..df4d0cc3
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/home_life.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/kids.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/kids.gif
new file mode 100644
index 00000000..5fc38d2e
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/kids.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/main_menu.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/main_menu.gif
new file mode 100644
index 00000000..2a92253d
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/main_menu.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/marketplace.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/marketplace.gif
new file mode 100644
index 00000000..0ff36f4b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/marketplace.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/money.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/money.gif
new file mode 100644
index 00000000..7f11b8e8
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/money.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/net_reference.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/net_reference.gif
new file mode 100644
index 00000000..c252cbc0
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/net_reference.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/news.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/news.gif
new file mode 100644
index 00000000..9a0003a1
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/news.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/sports.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/sports.gif
new file mode 100644
index 00000000..38bf0882
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/sports.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/travel.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/travel.gif
new file mode 100644
index 00000000..9813692f
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/travel.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/tv.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/tv.gif
new file mode 100644
index 00000000..bf60566c
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/banners/tv.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/entertainment-tile.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/entertainment-tile.html
new file mode 100644
index 00000000..8c28a456
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/entertainment-tile.html
@@ -0,0 +1 @@
+
BIZ:
Tap into the E! files. Sordid scandals & secret suspicions.
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/entertainment.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/entertainment.html
new file mode 100644
index 00000000..60a49756
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/entertainment.html
@@ -0,0 +1 @@
+
Explore Entertainment
Would the movie business survive without a monkey-movie once a year?
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/fun-n-games-tile.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/fun-n-games-tile.html
new file mode 100644
index 00000000..35af04e9
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/fun-n-games-tile.html
@@ -0,0 +1 @@
+
Bend your brain with Riddler's games
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/fun-n-games.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/fun-n-games.html
new file mode 100644
index 00000000..02354691
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/fun-n-games.html
@@ -0,0 +1 @@
+
Explore Fun & Games
Main menu
Fun & Games
Try more trivia...
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/health-tile.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/health-tile.html
new file mode 100644
index 00000000..7f2d969b
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/health-tile.html
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/health.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/health.html
new file mode 100644
index 00000000..2461e876
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/health.html
@@ -0,0 +1 @@
+
Explore Health
Main menu
Health
Alternative
Exercise
For Children
For Men
For Women
Health Care
Healthy Mind
Newsstand
Nutrition
Orgs
Web Clinic
Gulf War: More GIs exposed to gas...
Experimental prostate cancer therapy...
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/home-life.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/home-life.html
new file mode 100644
index 00000000..846b00ef
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/home-life.html
@@ -0,0 +1 @@
+
Explore Home Life
Main menu
Home Life
Communities
Family
Garden
Gay & Lesbian
Home
Kitchen
Newsstand
Parenting
Pets
Seniors
Women
Urban paradise
With the help of an expert, a small city back yard is dramatically transformed into an urban oasis
Explore Home Life Like spending time with your favorite neighbor, the one with the prize-winning tomatoes
You can Ask Ms. Grow-It-All for gardening tips.
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/60rule.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/60rule.gif
new file mode 100644
index 00000000..3f0daa6c
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/60rule.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/S20TH1.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/S20TH1.gif
new file mode 100644
index 00000000..b8973a1b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/S20TH1.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/S20TV1.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/S20TV1.gif
new file mode 100644
index 00000000..ce2df6c3
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/S20TV1.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/SAdH1.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/SAdH1.gif
new file mode 100644
index 00000000..f34009ac
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/SAdH1.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/SAdH2.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/SAdH2.gif
new file mode 100644
index 00000000..f34009ac
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/SAdH2.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/ShadowCorner.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/ShadowCorner.gif
new file mode 100644
index 00000000..e734d451
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/ShadowCorner.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/ShadowHCap.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/ShadowHCap.gif
new file mode 100644
index 00000000..c7ee6374
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/ShadowHCap.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/ShadowHStart.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/ShadowHStart.gif
new file mode 100644
index 00000000..f92af56e
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/ShadowHStart.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/SportsMoreBottom.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/SportsMoreBottom.gif
new file mode 100644
index 00000000..4d13059b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/SportsMoreBottom.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/SportsMoreLeft.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/SportsMoreLeft.gif
new file mode 100644
index 00000000..e6b891bc
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/SportsMoreLeft.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/st_junior.jpg b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/st_junior.jpg
new file mode 100644
index 00000000..b9383a2c
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/st_junior.jpg differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/top.outsiders.jpg b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/top.outsiders.jpg
new file mode 100644
index 00000000..614ce93f
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/images/top.outsiders.jpg differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/index.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/index.html
new file mode 100644
index 00000000..c3cf97f5
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/index.html
@@ -0,0 +1 @@
+
Explore Main Menu
Main menu
August 27, 1997
Look for
How to
NASA comes down from the stars
The Internet Sleuth
From 0 to 60 websites in 10 seconds flat
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/kids.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/kids.html
new file mode 100644
index 00000000..2c52aaa7
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/kids.html
@@ -0,0 +1 @@
+
Explore Kids
Main menu
Kids
Creativity Lab
CyberPlanet
Girls Club
Homework
Kids Kitchen
Newsstand
Reading Room
Sports & Games
Tiny Tots
TV & Movies
Weird Science
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/marketplace.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/marketplace.html
new file mode 100644
index 00000000..98b21e3c
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/marketplace.html
@@ -0,0 +1 @@
+
Explore Marketplace
Main menu
Marketplace
What's in your makeup bag? Do you have the right colors for fall?
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/money.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/money.html
new file mode 100644
index 00000000..bea0e011
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/money.html
@@ -0,0 +1 @@
+
Explore Money
Main menu
Money
Looking for home base?
Search for homes for sale by owner or post your own listing
Explore Money
Your guide to making, saving and spending the green stuff
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/net-reference.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/net-reference.html
new file mode 100644
index 00000000..8d40e71f
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/net-reference.html
@@ -0,0 +1 @@
+
Explore Net Reference
Main menu
Net Reference
CalendarLand
Marking time was never more fun. Try flipping through these celestial and historical calendar resources.
Explore Net Reference
From zero to 60 websites in three clicks or less
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/news.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/news.html
new file mode 100644
index 00000000..8e8dea34
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/news.html
@@ -0,0 +1 @@
+
Explore News
Main menu
News
Customized
Hot Stories
Magazines
Newspapers
Opinion
Politics
Traffic
TV & Radio
Weather
Today's top news stories updated on the hour
This week from U.S. News Online
National Public Radio
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/images/day7_0819_andie_bill.jpg b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/images/day7_0819_andie_bill.jpg
new file mode 100644
index 00000000..ac876fcf
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/images/day7_0819_andie_bill.jpg differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/images/ends_odds.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/images/ends_odds.gif
new file mode 100644
index 00000000..8ef653a9
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/images/ends_odds.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/kids/sm_teaser_2.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/kids/sm_teaser_2.gif
new file mode 100644
index 00000000..2b5f0033
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/kids/sm_teaser_2.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/tiles/Day3_0829_40.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/tiles/Day3_0829_40.html
new file mode 100644
index 00000000..7af1a2b1
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/tiles/Day3_0829_40.html
@@ -0,0 +1 @@
+
Just the FAQs, Ma'am
Find answers to your Frequently Asked Questions with the FAQ finder
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/tiles/Day3_0829_60.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/tiles/Day3_0829_60.html
new file mode 100644
index 00000000..5770269b
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/programm.ing/tiles/Day3_0829_60.html
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/sports.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/sports.html
new file mode 100644
index 00000000..06f26cbb
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/sports.html
@@ -0,0 +1 @@
+
Explore Sports
Main menu
Sports
more
Griffey at a loss after M's loss
Explore Sports
"You win some, lose some and wreck some." Dale Earnhardt
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/BingoZone_40.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/BingoZone_40.gif
new file mode 100644
index 00000000..00096560
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/BingoZone_40.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/DidYouKnow_Ad_home_life.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/DidYouKnow_Ad_home_life.gif
new file mode 100644
index 00000000..cdb60529
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/DidYouKnow_Ad_home_life.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Discuss_Ad.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Discuss_Ad.gif
new file mode 100644
index 00000000..455dd4b6
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Discuss_Ad.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/EOnline1.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/EOnline1.gif
new file mode 100644
index 00000000..309b9a3f
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/EOnline1.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/EOnline2.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/EOnline2.gif
new file mode 100644
index 00000000..be2bb1f5
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/EOnline2.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ESPN.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ESPN.gif
new file mode 100644
index 00000000..b6faad67
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ESPN.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ExtraExtra.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ExtraExtra.gif
new file mode 100644
index 00000000..915a695d
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ExtraExtra.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/GameTime_40_kids.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/GameTime_40_kids.gif
new file mode 100644
index 00000000..c4145ba9
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/GameTime_40_kids.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/GameTime_Ad_fun__games.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/GameTime_Ad_fun__games.gif
new file mode 100644
index 00000000..8e0a21e0
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/GameTime_Ad_fun__games.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/GameTime_Ad_tv.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/GameTime_Ad_tv.gif
new file mode 100644
index 00000000..112d6c99
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/GameTime_Ad_tv.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/HaHaHa.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/HaHaHa.gif
new file mode 100644
index 00000000..92c2e866
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/HaHaHa.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/GreenThumb.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/GreenThumb.gif
new file mode 100644
index 00000000..3bf4fbd6
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/GreenThumb.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/MoneyMatters.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/MoneyMatters.gif
new file mode 100644
index 00000000..418831f6
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/MoneyMatters.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/MusicBlvd.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/MusicBlvd.gif
new file mode 100644
index 00000000..222d12f5
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/MusicBlvd.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/PCFlowers.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/PCFlowers.gif
new file mode 100644
index 00000000..77bd818d
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/PCFlowers.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/PickoftheLit.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/PickoftheLit.gif
new file mode 100644
index 00000000..48350927
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/PickoftheLit.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/ReferencePreference.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/ReferencePreference.gif
new file mode 100644
index 00000000..45ba5fb0
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/ReferencePreference.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/TicketToRide.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/TicketToRide.gif
new file mode 100644
index 00000000..79859056
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/TicketToRide.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/TriviaTime.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/TriviaTime.gif
new file mode 100644
index 00000000..cda7232a
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/TriviaTime.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/Update.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/Update.gif
new file mode 100644
index 00000000..0362d56b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/Update.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/WatchThis.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/WatchThis.gif
new file mode 100644
index 00000000..d31ec156
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/MiniMastheads/WatchThis.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/OnePixel/entertainment.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/OnePixel/entertainment.gif
new file mode 100644
index 00000000..3d4e5e0e
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/OnePixel/entertainment.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/OnePixel/health.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/OnePixel/health.gif
new file mode 100644
index 00000000..e1b48678
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/OnePixel/health.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/OnePixel/kids.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/OnePixel/kids.gif
new file mode 100644
index 00000000..c82106aa
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/OnePixel/kids.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/OnePixel/sports.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/OnePixel/sports.gif
new file mode 100644
index 00000000..323fb4a9
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/OnePixel/sports.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/RagsToRiches_40.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/RagsToRiches_40.gif
new file mode 100644
index 00000000..4b8cd85f
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/RagsToRiches_40.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/RandomRemark_Ad.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/RandomRemark_Ad.gif
new file mode 100644
index 00000000..73ac639e
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/RandomRemark_Ad.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Riddler_40.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Riddler_40.gif
new file mode 100644
index 00000000..6a8ccce0
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Riddler_40.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/SaysWho_Ad_sports.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/SaysWho_Ad_sports.gif
new file mode 100644
index 00000000..d64f98ed
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/SaysWho_Ad_sports.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ShopTalk_40.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ShopTalk_40.gif
new file mode 100644
index 00000000..dc20fd59
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ShopTalk_40.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Showbiz_40.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Showbiz_40.gif
new file mode 100644
index 00000000..7c3f1406
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Showbiz_40.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_art__science.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_art__science.gif
new file mode 100644
index 00000000..853c36ed
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_art__science.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_entertainment.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_entertainment.gif
new file mode 100644
index 00000000..a95f7c12
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_entertainment.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_fun__games.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_fun__games.gif
new file mode 100644
index 00000000..f1f75590
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_fun__games.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_home_life.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_home_life.gif
new file mode 100644
index 00000000..7eacbe0a
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_home_life.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_kids.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_kids.gif
new file mode 100644
index 00000000..60e259f6
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_kids.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_main_menu.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_main_menu.gif
new file mode 100644
index 00000000..5b72f175
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_main_menu.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_marketplace.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_marketplace.gif
new file mode 100644
index 00000000..46f40ac1
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_marketplace.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_money.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_money.gif
new file mode 100644
index 00000000..6d502a1b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_money.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_net_reference.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_net_reference.gif
new file mode 100644
index 00000000..dedadae9
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_net_reference.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_news.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_news.gif
new file mode 100644
index 00000000..03eadc6b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_news.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_sports.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_sports.gif
new file mode 100644
index 00000000..282ce48c
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_sports.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_travel.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_travel.gif
new file mode 100644
index 00000000..8efb9359
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_travel.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_tv.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_tv.gif
new file mode 100644
index 00000000..5798911c
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/Spotlight_40_tv.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ThatsAFact_Ad_health.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ThatsAFact_Ad_health.gif
new file mode 100644
index 00000000..dafba554
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ThatsAFact_Ad_health.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ThatsAFact_Ad_money.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ThatsAFact_Ad_money.gif
new file mode 100644
index 00000000..adde39a8
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ThatsAFact_Ad_money.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ThatsAFact_Ad_travel.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ThatsAFact_Ad_travel.gif
new file mode 100644
index 00000000..89d752f4
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/ThatsAFact_Ad_travel.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/best_of_health.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/best_of_health.gif
new file mode 100644
index 00000000..8277aa73
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/best_of_health.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Fitness.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Fitness.gif
new file mode 100644
index 00000000..67de85fd
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Fitness.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/LookItUp.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/LookItUp.gif
new file mode 100644
index 00000000..001b1bf6
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/LookItUp.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/NewsBriefs.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/NewsBriefs.gif
new file mode 100644
index 00000000..df6e8991
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/NewsBriefs.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/NewsScores.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/NewsScores.gif
new file mode 100644
index 00000000..3972b549
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/NewsScores.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/NewsStocks.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/NewsStocks.gif
new file mode 100644
index 00000000..f5f13b31
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/NewsStocks.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Nutrition.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Nutrition.gif
new file mode 100644
index 00000000..ffb8df92
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Nutrition.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Smoking.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Smoking.gif
new file mode 100644
index 00000000..a9493bca
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Smoking.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Stress.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Stress.gif
new file mode 100644
index 00000000..50e636b1
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Stress.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Weightloss.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Weightloss.gif
new file mode 100644
index 00000000..5db603e0
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/button_2.0s/Weightloss.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/buttons/Discovery_Online.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/buttons/Discovery_Online.gif
new file mode 100644
index 00000000..7e07f60b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/buttons/Discovery_Online.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/buttons/Girl_Tech.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/buttons/Girl_Tech.gif
new file mode 100644
index 00000000..86883041
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/buttons/Girl_Tech.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/buttons/PBS_Online.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/buttons/PBS_Online.gif
new file mode 100644
index 00000000..7923edaf
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/buttons/PBS_Online.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/health_top_stories.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/health_top_stories.gif
new file mode 100644
index 00000000..b34b174d
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/health_top_stories.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos136.x50/HollywoodOnline.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos136.x50/HollywoodOnline.gif
new file mode 100644
index 00000000..83e9d280
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos136.x50/HollywoodOnline.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos242x110/TrivialPursuit.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos242x110/TrivialPursuit.gif
new file mode 100644
index 00000000..b5e2ee63
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos242x110/TrivialPursuit.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos70x.35/USNews.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos70x.35/USNews.gif
new file mode 100644
index 00000000..73a6bbe7
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos70x.35/USNews.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos70x.50/ABC.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos70x.50/ABC.gif
new file mode 100644
index 00000000..22976f0c
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos70x.50/ABC.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos70x.50/NBC.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos70x.50/NBC.gif
new file mode 100644
index 00000000..8abf046b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos70x.50/NBC.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos70x.50/USAToday.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos70x.50/USAToday.gif
new file mode 100644
index 00000000..dafc2619
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/logos70x.50/USAToday.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/planet_health.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/planet_health.gif
new file mode 100644
index 00000000..ff856f73
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tidbits/planet_health.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/travel.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/travel.html
new file mode 100644
index 00000000..e4e7950a
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/travel.html
@@ -0,0 +1 @@
+
Explore Travel
Main menu
Travel
Driven to distraction
Stubborn husband won't stop for directions? Bring a map and get there the first time.
Explore Travel
Need to escape? We'll help you make your getaway.
Monaco is the most densely populated country in Europe. More trivia at Worldly Wisdom.
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tv.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tv.html
new file mode 100644
index 00000000..e7c130b3
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/explore/tv.html
@@ -0,0 +1 @@
+
Explore TV
Main menu
TV
Actors
Discuss
Episodes
Games
Grab Bag
History
Listings
Networks
News
Shows
Spin City: The mayor leaves Sin City in search of Elvis
Frasier: Menage a many at the Crane penthouse
Explore TV
Your source for the best of what's on TV
Trust no one ... until you've played the X-Files X-Test
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/canned/discovery.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/canned/discovery.gif
new file mode 100644
index 00000000..18c75c5c
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/canned/discovery.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/canned/usatoday.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/canned/usatoday.gif
new file mode 100644
index 00000000..74372f9b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/canned/usatoday.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/img/FavoritesBanner.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/img/FavoritesBanner.gif
new file mode 100644
index 00000000..7d226342
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/img/FavoritesBanner.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/img/folder-tab.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/img/folder-tab.gif
new file mode 100644
index 00000000..e29cf253
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/img/folder-tab.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/index.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/index.html
new file mode 100644
index 00000000..56970ef2
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/favorites/index.html
@@ -0,0 +1 @@
+
Favorites
Add folder
Organize
How to
Favorites for KellyP
USA Today
Discovery Channel
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/AWebSiteWithBite.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/AWebSiteWithBite.gif
new file mode 100644
index 00000000..369505ae
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/AWebSiteWithBite.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/DiscoveryChannelOnline.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/DiscoveryChannelOnline.gif
new file mode 100644
index 00000000..aa9540d5
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/DiscoveryChannelOnline.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/EOnline2.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/EOnline2.gif
new file mode 100644
index 00000000..4d5de81d
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/EOnline2.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/EntertainmentsHomePage.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/EntertainmentsHomePage.gif
new file mode 100644
index 00000000..3719a55b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/EntertainmentsHomePage.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/TopRowGradient.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/TopRowGradient.gif
new file mode 100644
index 00000000..5d045d94
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/TopRowGradient.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/TopSidebarShadow.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/TopSidebarShadow.gif
new file mode 100644
index 00000000..edddd4ee
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/images/TopSidebarShadow.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/index.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/index.html
new file mode 100644
index 00000000..9c161107
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/index.html
@@ -0,0 +1 @@
+
Home for KellyP
Setup
Using WebTV
Community
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/BannerMail.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/BannerMail.gif
new file mode 100644
index 00000000..a7e9f4fe
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/BannerMail.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/DottedLine.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/DottedLine.gif
new file mode 100644
index 00000000..c84ea2e8
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/DottedLine.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/PaperBase.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/PaperBase.gif
new file mode 100644
index 00000000..34c5d31e
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/PaperBase.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/PaperTop.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/PaperTop.gif
new file mode 100644
index 00000000..2e22e0de
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/PaperTop.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/Shadow.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/Shadow.gif
new file mode 100644
index 00000000..42098634
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/content/images/Shadow.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/index.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/index.html
new file mode 100644
index 00000000..e0ca6d5c
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/index.html
@@ -0,0 +1 @@
+
Mail list for KellyP
Write
Storage
Addresses
Clean up
Setup
Mail list for KellyP
You have
one message.
From
Subject
Date
Steve Perlman
Welcome to WebTV!
8/22
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/send.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/send.html
new file mode 100644
index 00000000..a66bd5b9
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/send.html
@@ -0,0 +1 @@
+
Write a message
Mail list
Address
Erase
Write a message
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/steve-mail.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/steve-mail.html
new file mode 100644
index 00000000..619e0333
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/mail/steve-mail.html
@@ -0,0 +1 @@
+
Welcome to WebTV!
Mail list
Previous
Next
Discard
Save
Reply
Forward
Message
From:
StevePerlman@webtv.net (Steve Perlman)
Date:
Fri, Aug 22, 1997, 11:56am
To:
KellyP@webtv.net
Subject:
Welcome to WebTV!
Welcome to WebTV!
By now, you're sitting back and relaxing on your couch. Are you
ready for a new entertainment experience from your television? Okay!
Grab that remote and get started!
Start with Explore. It's a great place to find the best stuff on
the Internet. Around Town gives you your local weather forecast, plus
information on restaurants, concerts, people and places nearby. And
don't miss our daily Spotlight. Here you'll find great sites about
specific topics, from cooking, to meeting people on the Web, to
workout tips from the stars.
You can always count on the folks here at WebTV to help you if you
ever have a question about the service. Using WebTV is the place
where you can get to know WebTV as well as the WebTV community.
There's even a WebTV-only monthly newsletter and discussion group
where WebTV subscribers discuss the upcoming releases, share ideas
and get to know each other better.
And speaking of upcoming releases, WebTV offers free upgrades
periodically as a part of your regular subscription. So as new
features are available, you get them at the click of a button, and at
no cost. You may have seen an upgrade notice as you logged on to
WebTV today. If you chose not to upgrade today, be sure to do it
soon. Once you've upgraded, you'll be able to do a lot more on the
Web, including accessing newsgroups, listening to more music and
radio, shopping online and taking advantage of new WebTV features
like printing.
One last bit of advice: if you ever get lost, just press HOME on
your remote control. It'll take you right back to the WebTV Network's
Home Page.
Now it's time for me to sign off and for YOU to get out on the
Web!
Epicurious is a
beautiful site with wonderful cooking and travel ideas.
There are lots of things to buy online, and some sites give
you a taste of the products before you purchase very
cool! When I want to buy CDs, I go to
Music Boulevard, and when I
am looking for a new book, I visit
Amazon.com.
Enjoy!
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/search/img/ads/19997_excite0827_shopping.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/search/img/ads/19997_excite0827_shopping.gif
new file mode 100644
index 00000000..05b31aa7
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/search/img/ads/19997_excite0827_shopping.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/search/img/webtv/ExciteLogo.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/search/img/webtv/ExciteLogo.gif
new file mode 100644
index 00000000..a2cb32d4
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/search/img/webtv/ExciteLogo.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/search/img/webtv/SearchBanner.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/search/img/webtv/SearchBanner.gif
new file mode 100644
index 00000000..cbcd8f70
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/search/img/webtv/SearchBanner.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/search/index.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/search/index.html
new file mode 100644
index 00000000..ebb81529
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/search/index.html
@@ -0,0 +1 @@
+
Search
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/setup/images/SetupBanner.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/setup/images/SetupBanner.gif
new file mode 100644
index 00000000..860242ba
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/setup/images/SetupBanner.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/setup/index.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/setup/index.html
new file mode 100644
index 00000000..4d8890df
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/setup/index.html
@@ -0,0 +1 @@
+
Setup
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ArtAndScience.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ArtAndScience.html
new file mode 100644
index 00000000..d7f9f368
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ArtAndScience.html
@@ -0,0 +1 @@
+
Delve into a piece of classic literature
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/DiscoveryChannel.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/DiscoveryChannel.html
new file mode 100644
index 00000000..724ae6ae
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/DiscoveryChannel.html
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/EOnline.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/EOnline.html
new file mode 100644
index 00000000..67d53be3
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/EOnline.html
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Entertainment.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Entertainment.html
new file mode 100644
index 00000000..bce543fa
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Entertainment.html
@@ -0,0 +1 @@
+
What's hot in Hollywood?
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/FunAndGames.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/FunAndGames.html
new file mode 100644
index 00000000..8a39647b
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/FunAndGames.html
@@ -0,0 +1 @@
+
Trivia, mysteries, jokes
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Health.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Health.html
new file mode 100644
index 00000000..c8d0d0ac
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Health.html
@@ -0,0 +1 @@
+
Better health is in your hand
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/HomeLife.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/HomeLife.html
new file mode 100644
index 00000000..3913d19d
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/HomeLife.html
@@ -0,0 +1 @@
+
Macaroni again?
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Kids.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Kids.html
new file mode 100644
index 00000000..656cb7fb
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Kids.html
@@ -0,0 +1 @@
+
No adults allowed!
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Marketplace.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Marketplace.html
new file mode 100644
index 00000000..39d83580
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Marketplace.html
@@ -0,0 +1 @@
+
The best bargains on the web!
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Money.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Money.html
new file mode 100644
index 00000000..83284081
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Money.html
@@ -0,0 +1 @@
+
Contemplating a career change?
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/NetReference.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/NetReference.html
new file mode 100644
index 00000000..d1af3959
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/NetReference.html
@@ -0,0 +1 @@
+
Web secrets revealed here
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/News.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/News.html
new file mode 100644
index 00000000..77786e87
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/News.html
@@ -0,0 +1 @@
+
Read All About It!
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/AroundTownIcon2.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/AroundTownIcon2.gif
new file mode 100644
index 00000000..396f1b3c
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/AroundTownIcon2.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/Chat.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/Chat.gif
new file mode 100644
index 00000000..b2ef4027
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/Chat.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/CommunityBanner.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/CommunityBanner.gif
new file mode 100644
index 00000000..ad1781dd
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/CommunityBanner.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/ExploreTitle.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/ExploreTitle.gif
new file mode 100644
index 00000000..29cdd034
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/ExploreTitle.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/SiteShowcase.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/SiteShowcase.gif
new file mode 100644
index 00000000..f20e7029
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/SiteShowcase.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/news_icon.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/news_icon.gif
new file mode 100644
index 00000000..656be1cb
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/ROMCache/news_icon.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Sports.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Sports.html
new file mode 100644
index 00000000..0f4f3cca
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Sports.html
@@ -0,0 +1 @@
+
Sports odds straight from Vegas
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/TV.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/TV.html
new file mode 100644
index 00000000..22a5081e
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/TV.html
@@ -0,0 +1 @@
+
500 Channels & I Can't Find Something To Watch
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Travel.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Travel.html
new file mode 100644
index 00000000..d78dbbaa
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/Travel.html
@@ -0,0 +1 @@
+
Shop for the best bargains in air travel
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/AWebSiteWithBite.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/AWebSiteWithBite.gif
new file mode 100644
index 00000000..369505ae
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/AWebSiteWithBite.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/DiscoveryChannelOnline.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/DiscoveryChannelOnline.gif
new file mode 100644
index 00000000..aa9540d5
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/DiscoveryChannelOnline.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/EOnline2.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/EOnline2.gif
new file mode 100644
index 00000000..4d5de81d
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/EOnline2.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/EntertainmentsHomePage.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/EntertainmentsHomePage.gif
new file mode 100644
index 00000000..3719a55b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/EntertainmentsHomePage.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/TopSidebarShadow.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/TopSidebarShadow.gif
new file mode 100644
index 00000000..edddd4ee
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/TopSidebarShadow.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Apples.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Apples.gif
new file mode 100644
index 00000000..a1dc4bcd
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Apples.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/ArtAndScienceHeading.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/ArtAndScienceHeading.gif
new file mode 100644
index 00000000..d77dd061
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/ArtAndScienceHeading.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Chesspiece.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Chesspiece.gif
new file mode 100644
index 00000000..512599d2
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Chesspiece.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/CompassRose.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/CompassRose.gif
new file mode 100644
index 00000000..184da00b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/CompassRose.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/EntertainmentHeading.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/EntertainmentHeading.gif
new file mode 100644
index 00000000..c2289c57
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/EntertainmentHeading.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Flower.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Flower.gif
new file mode 100644
index 00000000..dd24d394
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Flower.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/FunAndGamesHeading.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/FunAndGamesHeading.gif
new file mode 100644
index 00000000..5b2e9593
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/FunAndGamesHeading.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Globe.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Globe.gif
new file mode 100644
index 00000000..beb6ea30
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Globe.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/HealthHeading.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/HealthHeading.gif
new file mode 100644
index 00000000..6377ff09
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/HealthHeading.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/HomeLifeHeading.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/HomeLifeHeading.gif
new file mode 100644
index 00000000..ee06f875
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/HomeLifeHeading.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/KidsHeading.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/KidsHeading.gif
new file mode 100644
index 00000000..8f150f4f
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/KidsHeading.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/MarketplaceHeading.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/MarketplaceHeading.gif
new file mode 100644
index 00000000..fe6d3117
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/MarketplaceHeading.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/MoneyHeading.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/MoneyHeading.gif
new file mode 100644
index 00000000..81156113
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/MoneyHeading.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Mountain.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Mountain.gif
new file mode 100644
index 00000000..175f2cb2
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Mountain.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/NetReferenceHeading.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/NetReferenceHeading.gif
new file mode 100644
index 00000000..d911dbef
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/NetReferenceHeading.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/NewsHeading.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/NewsHeading.gif
new file mode 100644
index 00000000..278c9f28
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/NewsHeading.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/PiggyBank.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/PiggyBank.gif
new file mode 100644
index 00000000..e6212a7c
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/PiggyBank.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Robot.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Robot.gif
new file mode 100644
index 00000000..2ba061a1
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Robot.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/ShoppingBag.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/ShoppingBag.gif
new file mode 100644
index 00000000..7858be66
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/ShoppingBag.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/SportsHeading.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/SportsHeading.gif
new file mode 100644
index 00000000..bcd7f030
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/SportsHeading.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Star.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Star.gif
new file mode 100644
index 00000000..ea0ae106
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Star.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/TVHeading.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/TVHeading.gif
new file mode 100644
index 00000000..2fc585f9
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/TVHeading.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Television.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Television.gif
new file mode 100644
index 00000000..62a9c854
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Television.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/TravelHeading.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/TravelHeading.gif
new file mode 100644
index 00000000..aec6392b
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/TravelHeading.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Trophy.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Trophy.gif
new file mode 100644
index 00000000..308c00b1
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Trophy.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Window.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Window.gif
new file mode 100644
index 00000000..5d0b9922
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/templates/images/dynamic/Window.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/using_webtv/ROMCache/UsingWebTVBanner.gif b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/using_webtv/ROMCache/UsingWebTVBanner.gif
new file mode 100644
index 00000000..52dc1e69
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/using_webtv/ROMCache/UsingWebTVBanner.gif differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/using_webtv/index.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/using_webtv/index.html
new file mode 100644
index 00000000..0caa89f1
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/using_webtv/index.html
@@ -0,0 +1 @@
+
Using WebTV and the WebTV Network
Using WebTV
and the WebTV Network
Club WebTV
Tips Tricks News
Fresh every month
Take the tour
An introduction to the
WebTV Network Instructions
Your on-screen guide
to WebTV, the Internet,
and the WebTV Network
Printing
Learn how to print
Web pages and e-mail Discuss
Share your opinions
and questions about
the WebTV Network
Contacting us
Send us mail or
give us a call
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/weather-buffer.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/weather-buffer.html
new file mode 100644
index 00000000..e6910f8a
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/weather-buffer.html
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/weather.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/weather.html
new file mode 100644
index 00000000..171a6a4a
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/sim/weather.html
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash-mits.mpg b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash-mits.mpg
new file mode 100644
index 00000000..ba39603e
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash-mits.mpg differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash-phil.mpg b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash-phil.mpg
new file mode 100644
index 00000000..19d513ea
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash-phil.mpg differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash-sony.mpg b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash-sony.mpg
new file mode 100644
index 00000000..9d3ab5c8
Binary files /dev/null and b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash-sony.mpg differ
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash1.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash1.html
new file mode 100644
index 00000000..2fcbc208
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash1.html
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash2.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash2.html
new file mode 100644
index 00000000..c90bc10e
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash2.html
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash3.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash3.html
new file mode 100644
index 00000000..280ea76c
--- /dev/null
+++ b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash3.html
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/trymsntv.html b/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/trymsntv.html
deleted file mode 100644
index dddf1902..00000000
--- a/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/trymsntv.html
+++ /dev/null
@@ -1,15 +0,0 @@
-
-
-Shockwave
-
-
-