Subversion Repositories Applications.papyrus

Rev

Rev 1688 | Go to most recent revision | Only display areas with differences | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1688 Rev 1921
-
 
1
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
1
<!--
2
<!--
2
 * FCKeditor - The text editor for internet
3
 * FCKeditor - The text editor for Internet - http://www.fckeditor.net
3
 * Copyright (C) 2003-2006 Frederico Caldeira Knabben
4
 * Copyright (C) 2003-2008 Frederico Caldeira Knabben
-
 
5
 *
-
 
6
 * == BEGIN LICENSE ==
4
 * 
7
 *
5
 * Licensed under the terms of the GNU Lesser General Public License:
8
 * Licensed under the terms of any of the following licenses at your
6
 * 		http://www.opensource.org/licenses/lgpl-license.php
9
 * choice:
7
 * 
10
 *
8
 * For further information visit:
11
 *  - GNU General Public License Version 2 or later (the "GPL")
9
 * 		http://www.fckeditor.net/
12
 *    http://www.gnu.org/licenses/gpl.html
10
 * 
13
 *
11
 * "Support Open Source software. What about a donation today?"
14
 *  - GNU Lesser General Public License Version 2.1 or later (the "LGPL")
-
 
15
 *    http://www.gnu.org/licenses/lgpl.html
12
 * 
16
 *
13
 * File Name: fck_link.html
17
 *  - Mozilla Public License Version 1.1 or later (the "MPL")
14
 * 	Link dialog window.
18
 *    http://www.mozilla.org/MPL/MPL-1.1.html
15
 * 
19
 *
16
 * File Authors:
20
 * == END LICENSE ==
-
 
21
 *
17
 * 		Frederico Caldeira Knabben (fredck@fckeditor.net)
22
 * Link dialog window.
18
-->
23
-->
19
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
-
 
20
<html>
24
<html>
21
	<head>
25
	<head>
22
		<title>Link Properties</title>
26
		<title>Link Properties</title>
23
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
27
		<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
24
		<meta name="robots" content="noindex, nofollow" />
28
		<meta name="robots" content="noindex, nofollow" />
25
		<script src="common/fck_dialog_common.js" type="text/javascript"></script>
29
		<script src="common/fck_dialog_common.js" type="text/javascript"></script>
26
		<script src="fck_link/fck_link.js" type="text/javascript"></script>
30
		<script src="fck_link/fck_link.js" type="text/javascript"></script>
27
	</head>
31
	</head>
28
	<body scroll="no" style="OVERFLOW: hidden">
32
	<body scroll="no" style="OVERFLOW: hidden">
29
		<div id="divInfo" style="DISPLAY: none">
33
		<div id="divInfo" style="DISPLAY: none">
30
			<span fckLang="DlgLnkType">Link Type</span><br />
34
			<span fckLang="DlgLnkType">Link Type</span><br />
31
			<select id="cmbLinkType" onchange="SetLinkType(this.value);">
35
			<select id="cmbLinkType" onchange="SetLinkType(this.value);">
32
				<option value="url" fckLang="DlgLnkTypeURL" selected="selected">URL</option>
36
				<option value="url" fckLang="DlgLnkTypeURL" selected="selected">URL</option>
33
				<option value="anchor" fckLang="DlgLnkTypeAnchor">Anchor in this page</option>
37
				<option value="anchor" fckLang="DlgLnkTypeAnchor">Anchor in this page</option>
34
				<option value="email" fckLang="DlgLnkTypeEMail">E-Mail</option>
38
				<option value="email" fckLang="DlgLnkTypeEMail">E-Mail</option>
35
			</select>
39
			</select>
36
			<br />
40
			<br />
37
			<br />
41
			<br />
38
			<div id="divLinkTypeUrl">
42
			<div id="divLinkTypeUrl">
39
				<table cellspacing="0" cellpadding="0" width="100%" border="0" dir="ltr">
43
				<table cellspacing="0" cellpadding="0" width="100%" border="0" dir="ltr">
40
					<tr>
44
					<tr>
41
						<td nowrap="nowrap">
45
						<td nowrap="nowrap">
42
							<span fckLang="DlgLnkProto">Protocol</span><br />
46
							<span fckLang="DlgLnkProto">Protocol</span><br />
43
							<select id="cmbLinkProtocol">
47
							<select id="cmbLinkProtocol">
44
								<option value="http://" selected="selected">http://</option>
48
								<option value="http://" selected="selected">http://</option>
45
								<option value="https://">https://</option>
49
								<option value="https://">https://</option>
46
								<option value="ftp://">ftp://</option>
50
								<option value="ftp://">ftp://</option>
47
								<option value="news://">news://</option>
51
								<option value="news://">news://</option>
48
								<option value="" fckLang="DlgLnkProtoOther">&lt;other&gt;</option>
52
								<option value="" fckLang="DlgLnkProtoOther">&lt;other&gt;</option>
49
							</select>
53
							</select>
50
						</td>
54
						</td>
51
						<td nowrap="nowrap">&nbsp;</td>
55
						<td nowrap="nowrap">&nbsp;</td>
52
						<td nowrap="nowrap" width="100%">
56
						<td nowrap="nowrap" width="100%">
53
							<span fckLang="DlgLnkURL">URL</span><br />
57
							<span fckLang="DlgLnkURL">URL</span><br />
54
							<input id="txtUrl" style="WIDTH: 100%" type="text" onkeyup="OnUrlChange();" onchange="OnUrlChange();" />
58
							<input id="txtUrl" style="WIDTH: 100%" type="text" onkeyup="OnUrlChange();" onchange="OnUrlChange();" />
55
						</td>
59
						</td>
56
					</tr>
60
					</tr>
57
				</table>
61
				</table>
58
				<br />
62
				<br />
59
				<div id="divBrowseServer">
63
				<div id="divBrowseServer">
60
				<input type="button" value="Browse Server" fckLang="DlgBtnBrowseServer" onclick="BrowseServer();" />
64
				<input type="button" value="Browse Server" fckLang="DlgBtnBrowseServer" onclick="BrowseServer();" />
61
				</div>
65
				</div>
62
			</div>
66
			</div>
63
			<div id="divLinkTypeAnchor" style="DISPLAY: none" align="center">
67
			<div id="divLinkTypeAnchor" style="DISPLAY: none" align="center">
64
				<div id="divSelAnchor" style="DISPLAY: none">
68
				<div id="divSelAnchor" style="DISPLAY: none">
65
					<table cellspacing="0" cellpadding="0" border="0" width="70%">
69
					<table cellspacing="0" cellpadding="0" border="0" width="70%">
66
						<tr>
70
						<tr>
67
							<td colspan="3">
71
							<td colspan="3">
68
								<span fckLang="DlgLnkAnchorSel">Select an Anchor</span>
72
								<span fckLang="DlgLnkAnchorSel">Select an Anchor</span>
69
							</td>
73
							</td>
70
						</tr>
74
						</tr>
71
						<tr>
75
						<tr>
72
							<td width="50%">
76
							<td width="50%">
73
								<span fckLang="DlgLnkAnchorByName">By Anchor Name</span><br />
77
								<span fckLang="DlgLnkAnchorByName">By Anchor Name</span><br />
74
								<select id="cmbAnchorName" onchange="GetE('cmbAnchorId').value='';" style="WIDTH: 100%">
78
								<select id="cmbAnchorName" onchange="GetE('cmbAnchorId').value='';" style="WIDTH: 100%">
75
									<option value="" selected="selected"></option>
79
									<option value="" selected="selected"></option>
76
								</select>
80
								</select>
77
							</td>
81
							</td>
78
							<td>&nbsp;&nbsp;&nbsp;</td>
82
							<td>&nbsp;&nbsp;&nbsp;</td>
79
							<td width="50%">
83
							<td width="50%">
80
								<span fckLang="DlgLnkAnchorById">By Element Id</span><br />
84
								<span fckLang="DlgLnkAnchorById">By Element Id</span><br />
81
								<select id="cmbAnchorId" onchange="GetE('cmbAnchorName').value='';" style="WIDTH: 100%">
85
								<select id="cmbAnchorId" onchange="GetE('cmbAnchorName').value='';" style="WIDTH: 100%">
82
									<option value="" selected="selected"></option>
86
									<option value="" selected="selected"></option>
83
								</select>
87
								</select>
84
							</td>
88
							</td>
85
						</tr>
89
						</tr>
86
					</table>
90
					</table>
87
				</div>
91
				</div>
88
				<div id="divNoAnchor" style="DISPLAY: none">
92
				<div id="divNoAnchor" style="DISPLAY: none">
89
					<span fckLang="DlgLnkNoAnchors">&lt;No anchors available in the document&gt;</span>
93
					<span fckLang="DlgLnkNoAnchors">&lt;No anchors available in the document&gt;</span>
90
				</div>
94
				</div>
91
			</div>
95
			</div>
92
			<div id="divLinkTypeEMail" style="DISPLAY: none">
96
			<div id="divLinkTypeEMail" style="DISPLAY: none">
93
				<span fckLang="DlgLnkEMail">E-Mail Address</span><br />
97
				<span fckLang="DlgLnkEMail">E-Mail Address</span><br />
94
				<input id="txtEMailAddress" style="WIDTH: 100%" type="text" /><br />
98
				<input id="txtEMailAddress" style="WIDTH: 100%" type="text" /><br />
95
				<span fckLang="DlgLnkEMailSubject">Message Subject</span><br />
99
				<span fckLang="DlgLnkEMailSubject">Message Subject</span><br />
96
				<input id="txtEMailSubject" style="WIDTH: 100%" type="text" /><br />
100
				<input id="txtEMailSubject" style="WIDTH: 100%" type="text" /><br />
97
				<span fckLang="DlgLnkEMailBody">Message Body</span><br />
101
				<span fckLang="DlgLnkEMailBody">Message Body</span><br />
98
				<textarea id="txtEMailBody" style="WIDTH: 100%" rows="3" cols="20"></textarea>
102
				<textarea id="txtEMailBody" style="WIDTH: 100%" rows="3" cols="20"></textarea>
99
			</div>
103
			</div>
100
		</div>
104
		</div>
101
		<div id="divUpload" style="DISPLAY: none">
105
		<div id="divUpload" style="DISPLAY: none">
102
			<form id="frmUpload" method="post" target="UploadWindow" enctype="multipart/form-data" action="" onsubmit="return CheckUpload();">
106
			<form id="frmUpload" method="post" target="UploadWindow" enctype="multipart/form-data" action="" onsubmit="return CheckUpload();">
103
				<span fckLang="DlgLnkUpload">Upload</span><br />
107
				<span fckLang="DlgLnkUpload">Upload</span><br />
104
				<input id="txtUploadFile" style="WIDTH: 100%" type="file" size="40" name="NewFile" /><br />
108
				<input id="txtUploadFile" style="WIDTH: 100%" type="file" size="40" name="NewFile" /><br />
105
				<br />
109
				<br />
106
				<input id="btnUpload" type="submit" value="Send it to the Server" fckLang="DlgLnkBtnUpload" />
110
				<input id="btnUpload" type="submit" value="Send it to the Server" fckLang="DlgLnkBtnUpload" />
-
 
111
				<script type="text/javascript">
107
				<iframe name="UploadWindow" style="DISPLAY: none" src="../fckblank.html"></iframe> 
112
					document.write( '<iframe name="UploadWindow" style="display: none" src="' + FCKTools.GetVoidUrl() + '"><\/iframe>' ) ;
-
 
113
				</script>
108
			</form>
114
			</form>
109
		</div>
115
		</div>
110
		<div id="divTarget" style="DISPLAY: none">
116
		<div id="divTarget" style="DISPLAY: none">
111
			<table cellspacing="0" cellpadding="0" width="100%" border="0">
117
			<table cellspacing="0" cellpadding="0" width="100%" border="0">
112
				<tr>
118
				<tr>
113
					<td nowrap="nowrap">
119
					<td nowrap="nowrap">
114
						<span fckLang="DlgLnkTarget">Target</span><br />
120
						<span fckLang="DlgLnkTarget">Target</span><br />
115
						<select id="cmbTarget" onchange="SetTarget(this.value);">
121
						<select id="cmbTarget" onchange="SetTarget(this.value);">
116
							<option value="" fckLang="DlgGenNotSet" selected="selected">&lt;not set&gt;</option>
122
							<option value="" fckLang="DlgGenNotSet" selected="selected">&lt;not set&gt;</option>
117
							<option value="frame" fckLang="DlgLnkTargetFrame">&lt;frame&gt;</option>
123
							<option value="frame" fckLang="DlgLnkTargetFrame">&lt;frame&gt;</option>
118
							<option value="popup" fckLang="DlgLnkTargetPopup">&lt;popup window&gt;</option>
124
							<option value="popup" fckLang="DlgLnkTargetPopup">&lt;popup window&gt;</option>
119
							<option value="_blank" fckLang="DlgLnkTargetBlank">New Window (_blank)</option>
125
							<option value="_blank" fckLang="DlgLnkTargetBlank">New Window (_blank)</option>
120
							<option value="_top" fckLang="DlgLnkTargetTop">Topmost Window (_top)</option>
126
							<option value="_top" fckLang="DlgLnkTargetTop">Topmost Window (_top)</option>
121
							<option value="_self" fckLang="DlgLnkTargetSelf">Same Window (_self)</option>
127
							<option value="_self" fckLang="DlgLnkTargetSelf">Same Window (_self)</option>
122
							<option value="_parent" fckLang="DlgLnkTargetParent">Parent Window (_parent)</option>
128
							<option value="_parent" fckLang="DlgLnkTargetParent">Parent Window (_parent)</option>
123
						</select>
129
						</select>
124
					</td>
130
					</td>
125
					<td>&nbsp;</td>
131
					<td>&nbsp;</td>
126
					<td id="tdTargetFrame" nowrap="nowrap" width="100%">
132
					<td id="tdTargetFrame" nowrap="nowrap" width="100%">
127
						<span fckLang="DlgLnkTargetFrameName">Target Frame Name</span><br />
133
						<span fckLang="DlgLnkTargetFrameName">Target Frame Name</span><br />
128
						<input id="txtTargetFrame" style="WIDTH: 100%" type="text" onkeyup="OnTargetNameChange();"
134
						<input id="txtTargetFrame" style="WIDTH: 100%" type="text" onkeyup="OnTargetNameChange();"
129
							onchange="OnTargetNameChange();" />
135
							onchange="OnTargetNameChange();" />
130
					</td>
136
					</td>
131
					<td id="tdPopupName" style="DISPLAY: none" nowrap="nowrap" width="100%">
137
					<td id="tdPopupName" style="DISPLAY: none" nowrap="nowrap" width="100%">
132
						<span fckLang="DlgLnkPopWinName">Popup Window Name</span><br />
138
						<span fckLang="DlgLnkPopWinName">Popup Window Name</span><br />
133
						<input id="txtPopupName" style="WIDTH: 100%" type="text" />
139
						<input id="txtPopupName" style="WIDTH: 100%" type="text" />
134
					</td>
140
					</td>
135
				</tr>
141
				</tr>
136
			</table>
142
			</table>
137
			<br />
143
			<br />
138
			<table id="tablePopupFeatures" style="DISPLAY: none" cellspacing="0" cellpadding="0" align="center"
144
			<table id="tablePopupFeatures" style="DISPLAY: none" cellspacing="0" cellpadding="0" align="center"
139
				border="0">
145
				border="0">
140
				<tr>
146
				<tr>
141
					<td>
147
					<td>
142
						<span fckLang="DlgLnkPopWinFeat">Popup Window Features</span><br />
148
						<span fckLang="DlgLnkPopWinFeat">Popup Window Features</span><br />
143
						<table cellspacing="0" cellpadding="0" border="0">
149
						<table cellspacing="0" cellpadding="0" border="0">
144
							<tr>
150
							<tr>
145
								<td valign="top" nowrap="nowrap" width="50%">
151
								<td valign="top" nowrap="nowrap" width="50%">
146
									<input id="chkPopupResizable" name="chkFeature" value="resizable" type="checkbox" /><label for="chkPopupResizable" fckLang="DlgLnkPopResize">Resizable</label><br />
152
									<input id="chkPopupResizable" name="chkFeature" value="resizable" type="checkbox" /><label for="chkPopupResizable" fckLang="DlgLnkPopResize">Resizable</label><br />
147
									<input id="chkPopupLocationBar" name="chkFeature" value="location" type="checkbox" /><label for="chkPopupLocationBar" fckLang="DlgLnkPopLocation">Location 
153
									<input id="chkPopupLocationBar" name="chkFeature" value="location" type="checkbox" /><label for="chkPopupLocationBar" fckLang="DlgLnkPopLocation">Location
148
										Bar</label><br />
154
										Bar</label><br />
149
									<input id="chkPopupManuBar" name="chkFeature" value="menubar" type="checkbox" /><label for="chkPopupManuBar" fckLang="DlgLnkPopMenu">Menu 
155
									<input id="chkPopupManuBar" name="chkFeature" value="menubar" type="checkbox" /><label for="chkPopupManuBar" fckLang="DlgLnkPopMenu">Menu
150
										Bar</label><br />
156
										Bar</label><br />
151
									<input id="chkPopupScrollBars" name="chkFeature" value="scrollbars" type="checkbox" /><label for="chkPopupScrollBars" fckLang="DlgLnkPopScroll">Scroll 
157
									<input id="chkPopupScrollBars" name="chkFeature" value="scrollbars" type="checkbox" /><label for="chkPopupScrollBars" fckLang="DlgLnkPopScroll">Scroll
152
										Bars</label>
158
										Bars</label>
153
								</td>
159
								</td>
154
								<td></td>
160
								<td></td>
155
								<td valign="top" nowrap="nowrap" width="50%">
161
								<td valign="top" nowrap="nowrap" width="50%">
156
									<input id="chkPopupStatusBar" name="chkFeature" value="status" type="checkbox" /><label for="chkPopupStatusBar" fckLang="DlgLnkPopStatus">Status 
162
									<input id="chkPopupStatusBar" name="chkFeature" value="status" type="checkbox" /><label for="chkPopupStatusBar" fckLang="DlgLnkPopStatus">Status
157
										Bar</label><br />
163
										Bar</label><br />
158
									<input id="chkPopupToolbar" name="chkFeature" value="toolbar" type="checkbox" /><label for="chkPopupToolbar" fckLang="DlgLnkPopToolbar">Toolbar</label><br />
164
									<input id="chkPopupToolbar" name="chkFeature" value="toolbar" type="checkbox" /><label for="chkPopupToolbar" fckLang="DlgLnkPopToolbar">Toolbar</label><br />
159
									<input id="chkPopupFullScreen" name="chkFeature" value="fullscreen" type="checkbox" /><label for="chkPopupFullScreen" fckLang="DlgLnkPopFullScrn">Full 
165
									<input id="chkPopupFullScreen" name="chkFeature" value="fullscreen" type="checkbox" /><label for="chkPopupFullScreen" fckLang="DlgLnkPopFullScrn">Full
160
										Screen (IE)</label><br />
166
										Screen (IE)</label><br />
161
									<input id="chkPopupDependent" name="chkFeature" value="dependent" type="checkbox" /><label for="chkPopupDependent" fckLang="DlgLnkPopDependent">Dependent 
167
									<input id="chkPopupDependent" name="chkFeature" value="dependent" type="checkbox" /><label for="chkPopupDependent" fckLang="DlgLnkPopDependent">Dependent
162
										(Netscape)</label>
168
										(Netscape)</label>
163
								</td>
169
								</td>
164
							</tr>
170
							</tr>
165
							<tr>
171
							<tr>
166
								<td valign="top" nowrap="nowrap" width="50%">&nbsp;</td>
172
								<td valign="top" nowrap="nowrap" width="50%">&nbsp;</td>
167
								<td></td>
173
								<td></td>
168
								<td valign="top" nowrap="nowrap" width="50%"></td>
174
								<td valign="top" nowrap="nowrap" width="50%"></td>
169
							</tr>
175
							</tr>
170
							<tr>
176
							<tr>
171
								<td valign="top">
177
								<td valign="top">
172
									<table cellspacing="0" cellpadding="0" border="0">
178
									<table cellspacing="0" cellpadding="0" border="0">
173
										<tr>
179
										<tr>
174
											<td nowrap="nowrap"><span fckLang="DlgLnkPopWidth">Width</span></td>
180
											<td nowrap="nowrap"><span fckLang="DlgLnkPopWidth">Width</span></td>
175
											<td>&nbsp;<input id="txtPopupWidth" type="text" maxlength="4" size="4" /></td>
181
											<td>&nbsp;<input id="txtPopupWidth" type="text" maxlength="4" size="4" /></td>
176
										</tr>
182
										</tr>
177
										<tr>
183
										<tr>
178
											<td nowrap="nowrap"><span fckLang="DlgLnkPopHeight">Height</span></td>
184
											<td nowrap="nowrap"><span fckLang="DlgLnkPopHeight">Height</span></td>
179
											<td>&nbsp;<input id="txtPopupHeight" type="text" maxlength="4" size="4" /></td>
185
											<td>&nbsp;<input id="txtPopupHeight" type="text" maxlength="4" size="4" /></td>
180
										</tr>
186
										</tr>
181
									</table>
187
									</table>
182
								</td>
188
								</td>
183
								<td>&nbsp;&nbsp;</td>
189
								<td>&nbsp;&nbsp;</td>
184
								<td valign="top">
190
								<td valign="top">
185
									<table cellspacing="0" cellpadding="0" border="0">
191
									<table cellspacing="0" cellpadding="0" border="0">
186
										<tr>
192
										<tr>
187
											<td nowrap="nowrap"><span fckLang="DlgLnkPopLeft">Left Position</span></td>
193
											<td nowrap="nowrap"><span fckLang="DlgLnkPopLeft">Left Position</span></td>
188
											<td>&nbsp;<input id="txtPopupLeft" type="text" maxlength="4" size="4" /></td>
194
											<td>&nbsp;<input id="txtPopupLeft" type="text" maxlength="4" size="4" /></td>
189
										</tr>
195
										</tr>
190
										<tr>
196
										<tr>
191
											<td nowrap="nowrap"><span fckLang="DlgLnkPopTop">Top Position</span></td>
197
											<td nowrap="nowrap"><span fckLang="DlgLnkPopTop">Top Position</span></td>
192
											<td>&nbsp;<input id="txtPopupTop" type="text" maxlength="4" size="4" /></td>
198
											<td>&nbsp;<input id="txtPopupTop" type="text" maxlength="4" size="4" /></td>
193
										</tr>
199
										</tr>
194
									</table>
200
									</table>
195
								</td>
201
								</td>
196
							</tr>
202
							</tr>
197
						</table>
203
						</table>
198
					</td>
204
					</td>
199
				</tr>
205
				</tr>
200
			</table>
206
			</table>
201
		</div>
207
		</div>
202
		<div id="divAttribs" style="DISPLAY: none">
208
		<div id="divAttribs" style="DISPLAY: none">
203
			<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
209
			<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
204
				<tr>
210
				<tr>
205
					<td valign="top" width="50%">
211
					<td valign="top" width="50%">
206
						<span fckLang="DlgGenId">Id</span><br />
212
						<span fckLang="DlgGenId">Id</span><br />
207
						<input id="txtAttId" style="WIDTH: 100%" type="text" />
213
						<input id="txtAttId" style="WIDTH: 100%" type="text" />
208
					</td>
214
					</td>
209
					<td width="1"></td>
215
					<td width="1"></td>
210
					<td valign="top">
216
					<td valign="top">
211
						<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
217
						<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
212
							<tr>
218
							<tr>
213
								<td width="60%">
219
								<td width="60%">
214
									<span fckLang="DlgGenLangDir">Language Direction</span><br />
220
									<span fckLang="DlgGenLangDir">Language Direction</span><br />
215
									<select id="cmbAttLangDir" style="WIDTH: 100%">
221
									<select id="cmbAttLangDir" style="WIDTH: 100%">
216
										<option value="" fckLang="DlgGenNotSet" selected>&lt;not set&gt;</option>
222
										<option value="" fckLang="DlgGenNotSet" selected>&lt;not set&gt;</option>
217
										<option value="ltr" fckLang="DlgGenLangDirLtr">Left to Right (LTR)</option>
223
										<option value="ltr" fckLang="DlgGenLangDirLtr">Left to Right (LTR)</option>
218
										<option value="rtl" fckLang="DlgGenLangDirRtl">Right to Left (RTL)</option>
224
										<option value="rtl" fckLang="DlgGenLangDirRtl">Right to Left (RTL)</option>
219
									</select>
225
									</select>
220
								</td>
226
								</td>
221
								<td width="1%">&nbsp;&nbsp;&nbsp;</td>
227
								<td width="1%">&nbsp;&nbsp;&nbsp;</td>
222
								<td nowrap="nowrap"><span fckLang="DlgGenAccessKey">Access Key</span><br />
228
								<td nowrap="nowrap"><span fckLang="DlgGenAccessKey">Access Key</span><br />
223
									<input id="txtAttAccessKey" style="WIDTH: 100%" type="text" maxlength="1" size="1" />
229
									<input id="txtAttAccessKey" style="WIDTH: 100%" type="text" maxlength="1" size="1" />
224
								</td>
230
								</td>
225
							</tr>
231
							</tr>
226
						</table>
232
						</table>
227
					</td>
233
					</td>
228
				</tr>
234
				</tr>
229
				<tr>
235
				<tr>
230
					<td valign="top" width="50%">
236
					<td valign="top" width="50%">
231
						<span fckLang="DlgGenName">Name</span><br />
237
						<span fckLang="DlgGenName">Name</span><br />
232
						<input id="txtAttName" style="WIDTH: 100%" type="text" />
238
						<input id="txtAttName" style="WIDTH: 100%" type="text" />
233
					</td>
239
					</td>
234
					<td width="1"></td>
240
					<td width="1"></td>
235
					<td valign="top">
241
					<td valign="top">
236
						<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
242
						<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
237
							<tr>
243
							<tr>
238
								<td width="60%">
244
								<td width="60%">
239
									<span fckLang="DlgGenLangCode">Language Code</span><br />
245
									<span fckLang="DlgGenLangCode">Language Code</span><br />
240
									<input id="txtAttLangCode" style="WIDTH: 100%" type="text" />
246
									<input id="txtAttLangCode" style="WIDTH: 100%" type="text" />
241
								</td>
247
								</td>
242
								<td width="1%">&nbsp;&nbsp;&nbsp;</td>
248
								<td width="1%">&nbsp;&nbsp;&nbsp;</td>
243
								<td nowrap="nowrap">
249
								<td nowrap="nowrap">
244
									<span fckLang="DlgGenTabIndex">Tab Index</span><br />
250
									<span fckLang="DlgGenTabIndex">Tab Index</span><br />
245
									<input id="txtAttTabIndex" style="WIDTH: 100%" type="text" maxlength="5" size="5" />
251
									<input id="txtAttTabIndex" style="WIDTH: 100%" type="text" maxlength="5" size="5" />
246
								</td>
252
								</td>
247
							</tr>
253
							</tr>
248
						</table>
254
						</table>
249
					</td>
255
					</td>
250
				</tr>
256
				</tr>
251
				<tr>
257
				<tr>
252
					<td valign="top" width="50%">&nbsp;</td>
258
					<td valign="top" width="50%">&nbsp;</td>
253
					<td width="1"></td>
259
					<td width="1"></td>
254
					<td valign="top"></td>
260
					<td valign="top"></td>
255
				</tr>
261
				</tr>
256
				<tr>
262
				<tr>
257
					<td valign="top" width="50%">
263
					<td valign="top" width="50%">
258
						<span fckLang="DlgGenTitle">Advisory Title</span><br />
264
						<span fckLang="DlgGenTitle">Advisory Title</span><br />
259
						<input id="txtAttTitle" style="WIDTH: 100%" type="text" />
265
						<input id="txtAttTitle" style="WIDTH: 100%" type="text" />
260
					</td>
266
					</td>
261
					<td width="1">&nbsp;&nbsp;&nbsp;</td>
267
					<td width="1">&nbsp;&nbsp;&nbsp;</td>
262
					<td valign="top">
268
					<td valign="top">
263
						<span fckLang="DlgGenContType">Advisory Content Type</span><br />
269
						<span fckLang="DlgGenContType">Advisory Content Type</span><br />
264
						<input id="txtAttContentType" style="WIDTH: 100%" type="text" />
270
						<input id="txtAttContentType" style="WIDTH: 100%" type="text" />
265
					</td>
271
					</td>
266
				</tr>
272
				</tr>
267
				<tr>
273
				<tr>
268
					<td valign="top">
274
					<td valign="top">
269
						<span fckLang="DlgGenClass">Stylesheet Classes</span><br />
275
						<span fckLang="DlgGenClass">Stylesheet Classes</span><br />
270
						<input id="txtAttClasses" style="WIDTH: 100%" type="text" />
276
						<input id="txtAttClasses" style="WIDTH: 100%" type="text" />
271
					</td>
277
					</td>
272
					<td></td>
278
					<td></td>
273
					<td valign="top">
279
					<td valign="top">
274
						<span fckLang="DlgGenLinkCharset">Linked Resource Charset</span><br />
280
						<span fckLang="DlgGenLinkCharset">Linked Resource Charset</span><br />
275
						<input id="txtAttCharSet" style="WIDTH: 100%" type="text" />
281
						<input id="txtAttCharSet" style="WIDTH: 100%" type="text" />
276
					</td>
282
					</td>
277
				</tr>
283
				</tr>
278
			</table>
284
			</table>
279
			<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
285
			<table cellspacing="0" cellpadding="0" width="100%" align="center" border="0">
280
				<tr>
286
				<tr>
281
					<td>
287
					<td>
282
						<span fckLang="DlgGenStyle">Style</span><br />
288
						<span fckLang="DlgGenStyle">Style</span><br />
283
						<input id="txtAttStyle" style="WIDTH: 100%" type="text" />
289
						<input id="txtAttStyle" style="WIDTH: 100%" type="text" />
284
					</td>
290
					</td>
285
				</tr>
291
				</tr>
286
			</table>
292
			</table>
287
		</div>
293
		</div>
288
	</body>
294
	</body>
289
</html>
295
</html>