1<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
2<!--
3 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
4 * Copyright (C) 2003-2007 Frederico Caldeira Knabben
5 *
6 * == BEGIN LICENSE ==
7 *
8 * Licensed under the terms of any of the following licenses at your
9 * choice:
10 *
11 *  - GNU General Public License Version 2 or later (the "GPL")
12 *    http://www.gnu.org/licenses/gpl.html
13 *
14 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
15 *    http://www.gnu.org/licenses/lgpl.html
16 *
17 *  - Mozilla Public License Version 1.1 or later (the "MPL")
18 *    http://www.mozilla.org/MPL/MPL-1.1.html
19 *
20 * == END LICENSE ==
21 *
22 * Flash Properties dialog window.
23-->
24<html>
25	<head>
26		<title>Flash Properties</title>
27		<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
28		<meta content="noindex, nofollow" name="robots">
29		<script src="common/fck_dialog_common.js" type="text/javascript"></script>
30		<script src="fck_flash/fck_flash.js" type="text/javascript"></script>
31		<link href="common/fck_dialog_common.css" type="text/css" rel="stylesheet">
32	</head>
33	<body scroll="no" style="OVERFLOW: hidden">
34		<div id="divInfo">
35			<table cellSpacing="1" cellPadding="1" width="100%" border="0">
36				<tr>
37					<td>
38						<table cellSpacing="0" cellPadding="0" width="100%" border="0">
39							<tr>
40								<td width="100%"><span fckLang="DlgImgURL">URL</span>
41								</td>
42								<td id="tdBrowse" style="DISPLAY: none" noWrap rowSpan="2">&nbsp; <input id="btnBrowse" onclick="BrowseServer();" type="button" value="Browse Server" fckLang="DlgBtnBrowseServer">
43								</td>
44							</tr>
45							<tr>
46								<td vAlign="top"><input id="txtUrl" onblur="UpdatePreview();" style="WIDTH: 100%" type="text">
47								</td>
48							</tr>
49						</table>
50					</td>
51				</tr>
52				<TR>
53					<TD>
54						<table cellSpacing="0" cellPadding="0" border="0">
55							<TR>
56								<TD nowrap>
57									<span fckLang="DlgImgWidth">Width</span><br>
58									<input id="txtWidth" onkeypress="return IsDigit(event);" type="text" size="3">
59								</TD>
60								<TD>&nbsp;</TD>
61								<TD>
62									<span fckLang="DlgImgHeight">Height</span><br>
63									<input id="txtHeight" onkeypress="return IsDigit(event);" type="text" size="3">
64								</TD>
65							</TR>
66						</table>
67					</TD>
68				</TR>
69				<tr>
70					<td vAlign="top">
71						<table cellSpacing="0" cellPadding="0" width="100%" border="0">
72							<tr>
73								<td valign="top" width="100%">
74									<table cellSpacing="0" cellPadding="0" width="100%">
75										<tr>
76											<td><span fckLang="DlgImgPreview">Preview</span></td>
77										</tr>
78										<tr>
79											<td id="ePreviewCell" valign="top" class="FlashPreviewArea"><iframe src="fck_flash/fck_flash_preview.html" frameborder="0" marginheight="0" marginwidth="0"></iframe></td>
80										</tr>
81									</table>
82								</td>
83							</tr>
84						</table>
85					</td>
86				</tr>
87			</table>
88		</div>
89		<div id="divUpload" style="DISPLAY: none">
90			<form id="frmUpload" method="post" target="UploadWindow" enctype="multipart/form-data" action="" onsubmit="return CheckUpload();">
91				<span fckLang="DlgLnkUpload">Upload</span><br />
92				<input id="txtUploadFile" style="WIDTH: 100%" type="file" size="40" name="NewFile" /><br />
93				<br />
94				<input id="btnUpload" type="submit" value="Send it to the Server" fckLang="DlgLnkBtnUpload" />
95				<iframe name="UploadWindow" style="DISPLAY: none" src="javascript:void(0)"></iframe>
96			</form>
97		</div>
98		<div id="divAdvanced" style="DISPLAY: none">
99			<TABLE cellSpacing="0" cellPadding="0" border="0">
100				<TR>
101					<TD nowrap>
102						<span fckLang="DlgFlashScale">Scale</span><BR>
103						<select id="cmbScale">
104							<option value="" selected></option>
105							<option value="showall" fckLang="DlgFlashScaleAll">Show all</option>
106							<option value="noborder" fckLang="DlgFlashScaleNoBorder">No Border</option>
107							<option value="exactfit" fckLang="DlgFlashScaleFit">Exact Fit</option>
108						</select></TD>
109					<TD>&nbsp;&nbsp;&nbsp; &nbsp;
110					</TD>
111					<td valign="bottom">
112						<table>
113							<tr>
114								<td><input id="chkAutoPlay" type="checkbox" checked></td>
115								<td><label for="chkAutoPlay" nowrap fckLang="DlgFlashChkPlay">Auto Play</label>&nbsp;&nbsp;</td>
116								<td><input id="chkLoop" type="checkbox" checked></td>
117								<td><label for="chkLoop" nowrap fckLang="DlgFlashChkLoop">Loop</label>&nbsp;&nbsp;</td>
118								<td><input id="chkMenu" type="checkbox" checked></td>
119								<td><label for="chkMenu" nowrap fckLang="DlgFlashChkMenu">Enable Flash Menu</label></td>
120							</tr>
121						</table>
122					</td>
123				</TR>
124			</TABLE>
125			<br>
126			&nbsp;
127			<table cellSpacing="0" cellPadding="0" width="100%" align="center" border="0">
128				<tr>
129					<td vAlign="top" width="50%"><span fckLang="DlgGenId">Id</span><br>
130						<input id="txtAttId" style="WIDTH: 100%" type="text">
131					</td>
132					<td>&nbsp;&nbsp;</td>
133					<td vAlign="top" nowrap><span fckLang="DlgGenClass">Stylesheet Classes</span><br>
134						<input id="txtAttClasses" style="WIDTH: 100%" type="text">
135					</td>
136					<td>&nbsp;&nbsp;</td>
137					<td vAlign="top" nowrap width="50%">&nbsp;<span fckLang="DlgGenTitle">Advisory Title</span><br>
138						<input id="txtAttTitle" style="WIDTH: 100%" type="text">
139					</td>
140				</tr>
141			</table>
142			<span fckLang="DlgGenStyle">Style</span><br>
143			<input id="txtAttStyle" style="WIDTH: 100%" type="text">
144		</div>
145	</body>
146</html>
147