Index: demos/et/app-loader.html
===================================================================
--- demos/et/app-loader.html	(revision 0)
+++ demos/et/app-loader.html	(revision 0)
@@ -0,0 +1,133 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
+        "http://www.w3.org/TR/html4/loose.dtd">
+<html>
+<head>
+  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
+  <link rel="SHORTCUT ICON" href="http://www.laszlosystems.com/favicon.ico">
+  <title>LZPIX</title> <style type='text/css'>
+    /* http://www.quirksmode.org/css/100percheight.html */
+    html, body { height: 100%; }
+    html, body, iframe
+    {
+      margin: 0;
+      padding: 0;
+      border: 0 none;
+      overflow: hidden;
+    }
+    
+    body
+    {
+      height: 600px;
+      width: 800px;
+    }
+    
+    img { border: 0 none; }
+    
+    #pagecontainer
+    {
+      position: absolute;
+      left: 50%;
+      width: 420px;
+      margin-left: -210px;
+      margin-top: 20px;
+      background-color: white;
+      color: black;
+      font-family: "Trebuchet MS", "Verdana", "Helvetica", serif;
+      font-size: 16px;
+    }
+    
+</style>
+      <script type="text/javascript">
+        function getQueryVariable(variable, defval) {
+          var query = window.location.search.substring(1);
+          var vars = query.split("&");
+          for (var i=0;i<vars.length;i++) {
+            var pair = vars[i].split("=");
+            if (pair[0] == variable) {
+              return pair[1];
+            }
+          } 
+          return defval;
+        }
+
+        var isSupportedBrowser = true;
+        
+        var lzrval = getQueryVariable("lzr", "swf7");
+        
+        if (lzrval == "dhtml") {
+            var isNetscape = navigator.userAgent.indexOf('Netscape') != -1; // currently only used for IE spoofing NS8
+            var isSafari = navigator.appVersion.indexOf('Safari') != -1;
+            var isOpera = navigator.userAgent.indexOf('Opera') != -1;
+            var isMacIE52 = navigator.userAgent.indexOf('MSIE 5.2') != -1 && ! isWin;
+            var isFirefox = navigator.userAgent.indexOf( "Firefox" ) != -1;
+            var isIE  = navigator.appVersion.indexOf("MSIE") != -1 && !isOpera && !isNetscape;    // true if we're on ie and not being spoofed - overrides vbembed.js isIE setting
+            
+            // Find firefox version, as float
+            var FirefoxVersion = 0.0;
+            if (navigator.userAgent.match("Firefox/\\d\\.\\d")) {
+               var re = new RegExp("Firefox/(\\d\\.\\d)");
+               var marray = re.exec(navigator.userAgent);
+               FirefoxVersion = new Number(marray[1]);
+            }
+    
+            var MSIEVersion = 0.0;
+            if (isIE) {
+              if (navigator.appName == 'Microsoft Internet Explorer')
+              {
+                var ua = navigator.userAgent;
+                var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
+                if (re.exec(ua) != null)
+                  MSIEVersion = parseFloat( RegExp.$1 );
+              }
+            }
+    
+            var isForced = (getQueryVariable("force") == "true");
+            
+            isSupportedBrowser = isForced || (isFirefox && FirefoxVersion >= 1.5) || (isIE && MSIEVersion >= 6.0);
+        }
+        
+        function writeApp () {
+            var lztval = getQueryVariable("lzt", "dhtml");
+            var lzt = "&amp;lzt=" + lztval;
+            document.getElementById('pagecontainer').style.display = 'none';
+            document.getElementById('appcontainer').innerHTML =
+            "<iframe src='app.lzx?lzr=" + lzrval + lzt + "' style='width: 800px; height: 600px' />"
+        }
+        
+      </script> 
+</head>
+<body>
+<div id="appcontainer"></div>
+<div id="pagecontainer" style="display: none">
+  <div id="header">
+    <a href="http://www.openlaszlo.org/"><img src="http://openlaszlo.org/themes/manji/images/ol_logo_small.gif" alt="" ></a> 
+  </div>
+  <div id="content">
+    <p>
+      Hi. Our DHTML runtime is still young, so it&rsquo;s a little unsure of itself on most browsers besides Firefox&nbsp;1.5 and Windows IE 6. Be kind to the little tot, it&rsquo;s growing up fast. 
+    </p>
+    <p>
+      But please, give it a try anyway! 
+    </p>
+    <p>
+      <a href="javascript:writeApp();">Launch LZPIX/DHTML</a> 
+    </p>
+  </div>
+</div>
+<script type="text/javascript">
+        if (isSupportedBrowser) {
+            writeApp();
+        } else {
+            document.getElementById('pagecontainer').style.display = 'block';
+        }
+      </script> 
+<noscript>
+  Please enable JavaScript in order to use this application. 
+</noscript>
+</body>
+</html>
+<!--
+* X_LZ_COPYRIGHT_BEGIN ****************************************************
+* Copyright 2006 Laszlo Systems, Inc.  All Rights Reserved.               *
+* Use is subject to license terms.                                        *
+* X_LZ_COPYRIGHT_END ******************************************************-->

Property changes on: demos/et/app-loader.html
___________________________________________________________________
Name: svn:mime-type
   + text/html
Name: svn:eol-style
   + native

Index: demos/et/app-dhtml.html
===================================================================
--- demos/et/app-dhtml.html	(revision 1134)
+++ demos/et/app-dhtml.html	(working copy)
@@ -1,128 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
-        "http://www.w3.org/TR/html4/loose.dtd">
-<html>
-<head>
-  <meta http-equiv="Content-Type" content="text/html; charset=utf-8">
-  <link rel="SHORTCUT ICON" href="http://www.laszlosystems.com/favicon.ico">
-  <title>LZPIX</title> <style type='text/css'>
-    /* http://www.quirksmode.org/css/100percheight.html */
-    html, body { height: 100%; }
-    html, body, iframe
-    {
-      margin: 0;
-      padding: 0;
-      border: 0 none;
-      overflow: hidden;
-    }
-    
-    body
-    {
-      height: 600px;
-      width: 800px;
-    }
-    
-    img { border: 0 none; }
-    
-    #pagecontainer
-    {
-      position: absolute;
-      left: 50%;
-      width: 420px;
-      margin-left: -210px;
-      margin-top: 20px;
-      background-color: white;
-      color: black;
-      font-family: "Trebuchet MS", "Verdana", "Helvetica", serif;
-      font-size: 16px;
-    }
-    
-</style>
-      <script type="text/javascript">
-        var isNetscape = navigator.userAgent.indexOf('Netscape') != -1; // currently only used for IE spoofing NS8
-        var isSafari = navigator.appVersion.indexOf('Safari') != -1;
-        var isOpera = navigator.userAgent.indexOf('Opera') != -1;
-        var isMacIE52 = navigator.userAgent.indexOf('MSIE 5.2') != -1 && ! isWin;
-        var isFirefox = navigator.userAgent.indexOf( "Firefox" ) != -1;
-        var isIE  = navigator.appVersion.indexOf("MSIE") != -1 && !isOpera && !isNetscape;    // true if we're on ie and not being spoofed - overrides vbembed.js isIE setting
-        
-        // Find firefox version, as float
-        var FirefoxVersion = 0.0;
-        if (navigator.userAgent.match("Firefox/\\d\\.\\d")) {
-           var re = new RegExp("Firefox/(\\d\\.\\d)");
-           var marray = re.exec(navigator.userAgent);
-           FirefoxVersion = new Number(marray[1]);
-        }
-
-        var MSIEVersion = 0.0;
-        if (isIE) {
-          if (navigator.appName == 'Microsoft Internet Explorer')
-          {
-            var ua = navigator.userAgent;
-            var re  = new RegExp("MSIE ([0-9]{1,}[\.0-9]{0,})");
-            if (re.exec(ua) != null)
-              MSIEVersion = parseFloat( RegExp.$1 );
-          }
-        }
-
-        function getQueryVariable(variable, defval) {
-          var query = window.location.search.substring(1);
-          var vars = query.split("&");
-          for (var i=0;i<vars.length;i++) {
-            var pair = vars[i].split("=");
-            if (pair[0] == variable) {
-              return pair[1];
-            }
-          } 
-          return defval;
-        }
-        var isForced = (getQueryVariable("force") == "true");
-        
-        var isSupportedBrowser = isForced || (isFirefox && FirefoxVersion >= 1.5) || (isIE && MSIEVersion >= 6.0);
-        
-        function writeApp () {
-            var noconnectval = getQueryVariable("noconnect", "false");
-            var noconnect = "&amp;noconnect=" + noconnectval;
-            var lztval = getQueryVariable("lzt", "dhtml");
-            var lzt = "&amp;lzt=" + lztval;
-            document.getElementById('pagecontainer').style.display = 'none';
-            document.getElementById('appcontainer').innerHTML =
-            "<iframe src='app.lzx?lzr=dhtml" + lzt + noconnect + "' style='width: 800px; height: 600px' />"
-        }
-        
-      </script> 
-</head>
-<body>
-<div id="appcontainer"></div>
-<div id="pagecontainer" style="display: none">
-  <div id="header">
-    <a href="http://www.openlaszlo.org/"><img src="http://openlaszlo.org/themes/manji/images/ol_logo_small.gif" alt="" ></a> 
-  </div>
-  <div id="content">
-    <p>
-      Hi. Our DHTML runtime is still young, so it&rsquo;s a little unsure of itself on most browsers besides Firefox&nbsp;1.5 and Windows IE 6. Be kind to the little tot, it&rsquo;s growing up fast. 
-    </p>
-    <p>
-      But please, give it a try anyway! 
-    </p>
-    <p>
-      <a href="javascript:writeApp();">Launch LZPIX/DHTML</a> 
-    </p>
-  </div>
-</div>
-<script type="text/javascript">
-        if (isSupportedBrowser) {
-            writeApp();
-        } else {
-            document.getElementById('pagecontainer').style.display = 'block';
-        }
-      </script> 
-<noscript>
-  Please enable JavaScript in order to use this application. 
-</noscript>
-</body>
-</html>
-<!--
-* X_LZ_COPYRIGHT_BEGIN ****************************************************
-* Copyright 2006 Laszlo Systems, Inc.  All Rights Reserved.               *
-* Use is subject to license terms.                                        *
-* X_LZ_COPYRIGHT_END ******************************************************-->
Index: demos/et/index.html
===================================================================
--- demos/et/index.html	(revision 1134)
+++ demos/et/index.html	(working copy)
@@ -17,15 +17,10 @@
 
 <h1>LZPIX</h1>
 <p><img src="assets/branding/lil_cam.png" alt="LzPix"></p>
-Launch the <a title="Flash Version" onclick="openApp('app.lzx?lzr=swf7&amp;lzt=html'); return false" href="app.lzx?lzt=html">Flash</a> version of the app<br>
-Launch the <a title="DHTML Version" onclick="openApp('app-dhtml.html'); return false" href="app.lzx&amp;lzt=dhtml">DHTML</a> version of the app<br>
+Launch the <a title="Flash Version" onclick="openApp('app-loader.html?lzr=swf7&amp;lzt=html'); return false" href="app-loader.html?lzr=swf7&amp;lzt=html">Flash</a> version of the app<br>
+Launch the <a title="DHTML Version" onclick="openApp('app-loader.html?lzr=dhtml&amp;lzt=dhtml'); return false" href="app-loader.html?lzr=dhtml&amp;lzt=dhtml">DHTML</a> version of the app<br>
 View <a title="Source Code" onclick="openSource(); return false" href="../../lps/utils/viewer/viewer.jsp?file=demos/et/app.lzx&amp;lzt=source">source code</a><br>
 <br>
-<!--
-Canned data:
-<a title="Flash Version" href="javascript:openApp('app.lzx?lzr=swf7&amp;lzt=html&amp;noconnect=true')">Flash</a>,
-<a title= "DHTML Version" href="javascript:openApp('app-dhtml.html?noconnect=true')">DHTML</a>
- -->
 </body></html>
 <!--
 * X_LZ_COPYRIGHT_BEGIN ****************************************************
