| 1 |
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> |
|---|
| 2 |
<!-- saved from url=(0014)about:internet --> |
|---|
| 3 |
<html xmlns="http://www.w3.org/1999/xhtml" lang="en" xml:lang="en"> |
|---|
| 4 |
<!-- |
|---|
| 5 |
Smart developers always View Source. |
|---|
| 6 |
|
|---|
| 7 |
This application was built using Adobe Flex, an open source framework |
|---|
| 8 |
for building rich Internet applications that get delivered via the |
|---|
| 9 |
Flash Player or to desktops via Adobe AIR. |
|---|
| 10 |
|
|---|
| 11 |
Learn more about Flex at http://flex.org |
|---|
| 12 |
// --> |
|---|
| 13 |
<head> |
|---|
| 14 |
<title>${title}</title> |
|---|
| 15 |
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> |
|---|
| 16 |
<!-- Include CSS to eliminate any default margins/padding and set the height of the html element and |
|---|
| 17 |
the body element to 100%, because Firefox, or any Gecko based browser, interprets percentage as |
|---|
| 18 |
the percentage of the height of its parent container, which has to be set explicitly. Initially, |
|---|
| 19 |
don't display flashContent div so it won't show if JavaScript disabled. |
|---|
| 20 |
--> |
|---|
| 21 |
<style type="text/css" media="screen"> |
|---|
| 22 |
html, body { height:100%; } |
|---|
| 23 |
body { margin:0; padding:0; overflow:auto; text-align:center; |
|---|
| 24 |
background-color: ${bgcolor}; } |
|---|
| 25 |
#flashContent { display:none; } |
|---|
| 26 |
</style> |
|---|
| 27 |
|
|---|
| 28 |
<!-- Enable Browser History by replacing useBrowserHistory tokens with two hyphens --> |
|---|
| 29 |
<!-- BEGIN Browser History required section ${useBrowserHistory}> |
|---|
| 30 |
<link rel="stylesheet" type="text/css" href="history/history.css" /> |
|---|
| 31 |
<script type="text/javascript" src="history/history.js"></script> |
|---|
| 32 |
<!${useBrowserHistory} END Browser History required section --> |
|---|
| 33 |
|
|---|
| 34 |
<script type="text/javascript" src="swfobject.js"></script> |
|---|
| 35 |
<script type="text/javascript"> |
|---|
| 36 |
<!-- For version detection, set to min. required Flash Player version, or 0 (or 0.0.0), for no version detection. --> |
|---|
| 37 |
var swfVersionStr = "${version_major}.${version_minor}.${version_revision}"; |
|---|
| 38 |
<!-- To use express install, set to playerProductInstall.swf, otherwise the empty string. --> |
|---|
| 39 |
var xiSwfUrlStr = "${expressInstallSwf}"; |
|---|
| 40 |
var flashvars = {}; |
|---|
| 41 |
var params = {}; |
|---|
| 42 |
params.quality = "high"; |
|---|
| 43 |
params.bgcolor = "${bgcolor}"; |
|---|
| 44 |
params.allowscriptaccess = "sameDomain"; |
|---|
| 45 |
params.allowfullscreen = "true"; |
|---|
| 46 |
var attributes = {}; |
|---|
| 47 |
attributes.id = "${application}"; |
|---|
| 48 |
attributes.name = "${application}"; |
|---|
| 49 |
attributes.align = "middle"; |
|---|
| 50 |
swfobject.embedSWF( |
|---|
| 51 |
"${swf}.swf", "flashContent", |
|---|
| 52 |
"${width}", "${height}", |
|---|
| 53 |
swfVersionStr, xiSwfUrlStr, |
|---|
| 54 |
flashvars, params, attributes); |
|---|
| 55 |
<!-- JavaScript enabled so display the flashContent div in case it is not replaced with a swf object. --> |
|---|
| 56 |
swfobject.createCSS("#flashContent", "display:block;text-align:left;"); |
|---|
| 57 |
</script> |
|---|
| 58 |
</head> |
|---|
| 59 |
<body> |
|---|
| 60 |
<!-- SWFObject's dynamic embed method replaces this alternative HTML content with Flash content when enough |
|---|
| 61 |
JavaScript and Flash plug-in support is available. The div is initially hidden so that it doesn't show |
|---|
| 62 |
when JavaScript is disabled. |
|---|
| 63 |
--> |
|---|
| 64 |
<div id="flashContent"> |
|---|
| 65 |
<p> |
|---|
| 66 |
To view this page ensure that Adobe Flash Player version |
|---|
| 67 |
${version_major}.${version_minor}.${version_revision} or greater is installed. |
|---|
| 68 |
</p> |
|---|
| 69 |
<script type="text/javascript"> |
|---|
| 70 |
var pageHost = ((document.location.protocol == "https:") ? "https://" : "http://"); |
|---|
| 71 |
document.write("<a href='http://www.adobe.com/go/getflashplayer'><img src='" |
|---|
| 72 |
+ pageHost + "www.adobe.com/images/shared/download_buttons/get_flash_player.gif' alt='Get Adobe Flash player' /></a>" ); |
|---|
| 73 |
</script> |
|---|
| 74 |
</div> |
|---|
| 75 |
|
|---|
| 76 |
<noscript> |
|---|
| 77 |
<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="${width}" height="${height}" id="${application}"> |
|---|
| 78 |
<param name="movie" value="${swf}.swf" /> |
|---|
| 79 |
<param name="quality" value="high" /> |
|---|
| 80 |
<param name="bgcolor" value="${bgcolor}" /> |
|---|
| 81 |
<param name="allowScriptAccess" value="sameDomain" /> |
|---|
| 82 |
<param name="allowFullScreen" value="true" /> |
|---|
| 83 |
<!--[if !IE]>--> |
|---|
| 84 |
<object type="application/x-shockwave-flash" data="${swf}.swf" width="${width}" height="${height}"> |
|---|
| 85 |
<param name="quality" value="high" /> |
|---|
| 86 |
<param name="bgcolor" value="${bgcolor}" /> |
|---|
| 87 |
<param name="allowScriptAccess" value="sameDomain" /> |
|---|
| 88 |
<param name="allowFullScreen" value="true" /> |
|---|
| 89 |
<!--<![endif]--> |
|---|
| 90 |
<!--[if gte IE 6]>--> |
|---|
| 91 |
<p> |
|---|
| 92 |
Either scripts and active content are not permitted to run or Adobe Flash Player version |
|---|
| 93 |
${version_major}.${version_minor}.${version_revision} or greater is not installed. |
|---|
| 94 |
</p> |
|---|
| 95 |
<!--<![endif]--> |
|---|
| 96 |
<a href="http://www.adobe.com/go/getflashplayer"> |
|---|
| 97 |
<img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash Player" /> |
|---|
| 98 |
</a> |
|---|
| 99 |
<!--[if !IE]>--> |
|---|
| 100 |
</object> |
|---|
| 101 |
<!--<![endif]--> |
|---|
| 102 |
</object> |
|---|
| 103 |
</noscript> |
|---|
| 104 |
</body> |
|---|
| 105 |
</html> |
|---|