Files
minisrv/zefie_wtvp_minisrv/ServiceVault/wtv-disk/content/DealerDemo/splash1.html
zefie 72c15305fa v0.9.19
- numerous bug fixes
 - add `npm start` support
 - minibrowser theme thanks to @GraspYonOx
 - remove TOS coz no one cares anyway
2022-11-29 08:27:58 -05:00

1 line
1.1 KiB
HTML

<HTML>
<HEAD>
<display nologo nooptions>
<SCRIPT LANGUAGE = "JavaScript">
// Check the maker code
boxCode = parseInt(navigator.manufacturer);
// Default to Sony if we don't know their box, for now
maker = "sony";
// Find the real maker
if (boxCode == 0) maker = "sony";
else if (boxCode == 1) maker = "phil";
else if (boxCode == 4) maker = "mits";
if (maker == "sony") document.write ('<TITLE>WebTV by SONY</TITLE>');
else if (maker == "phil") document.write ('<TITLE>WebTV by Philips</TITLE>');
else if (maker == "mits") document.write ('<TITLE>WebTV by Mitsubishi</TITLE>');
document.write ('</HEAD><BODY BGCOLOR="#000000">');
if (maker == "sony") document.write ('<VIDEOFLASH HEIGHT=100% WIDTH=100% SRC="splash-sony.mpg">');
else if (maker == "phil") document.write ('<VIDEOFLASH HEIGHT=100% WIDTH=100% SRC="splash-phil.mpg">');
else if (maker == "mits") document.write ('<VIDEOFLASH HEIGHT=100% WIDTH=100% SRC="splash-mits.mpg">');
</SCRIPT>
<META HTTP-EQUIV="Refresh" CONTENT="animationscomplete; URL=menu2.html">
</BODY>
</HTML>