<!DOCTYPE html
PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7"/>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<link rel="SHORTCUT ICON" href="http://www.laszlosystems.com/favicon.ico">
<title>OpenLaszlo Application</title><script type="text/javascript">
//* A_LZ_COPYRIGHT_BEGIN ******************************************************
//* Copyright 2001-2007 Laszlo Systems, Inc. All Rights Reserved. *
//* Use is subject to license terms. *
//* A_LZ_COPYRIGHT_END ********************************************************
// If loaded bare into a browser, set the browser size to the canvas size
if (window === top) {
(function (width, height) {
// Cf. http://www.quirksmode.org/viewport/compatibility.html
if (window.innerHeight) {
// Sadly, innerHeight/Width is not r/w on some browsers, and resizeTo is for outerHeight/Width
window.resizeTo(width ? (width + window.outerWidth - window.innerWidth) : window.outerWidth,
height ? (height + window.outerHeight - window.innerHeight) : window.outerHeight);
} else if (document.documentElement && document.documentElement.clientHeight) {
if (width) {
document.documentElement.clientWidth = width;
}
if (height) {
document.documentElement.clientHeight = height;
}
} else {
if (width) {
document.body.clientWidth = width;
}
if (height) {
document.body.clientHeight = height;
}
}
})(null, null);
}
lzOptions = { ServerRoot: '<%= request.getContextPath() %>' };
</script><script type="text/javascript" src="<%= request.getContextPath() %>/lps/includes/embed-compressed.js"></script><style type="text/css">
        html, body
        {
                /* http://www.quirksmode.org/css/100percheight.html */
                height: 100%;
                /* prevent scrollbars */
                margin: 0;
                padding: 0;
                border: 0 none;
                overflow: hidden;
        }
        body {
background-color: #ffffff;
}
        
        img { border: 0 none; }
</style></head>
<body><script type="text/javascript">
Lz.swfEmbed({url: 'test.lzx?lzt=swf', bgcolor: '#ffffff', width: '100%', height: '100%', id: 'lzapp', accessible: 'false', wmode: 'transparent'});
// wmode: 'transparent' is required for the html to show through.
</script><noscript>
Please enable JavaScript in order to use this application.
</noscript>
</body>
</html>