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