|
|
|
@ -23,41 +23,41 @@ |
|
|
|
|
--> |
|
|
|
|
<html> |
|
|
|
|
<head> |
|
|
|
|
<title>FCKeditor</title> |
|
|
|
|
<meta name="robots" content="noindex, nofollow"> |
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
|
|
|
|
<meta http-equiv="Cache-Control" content="public"> |
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
<title>FCKeditor</title> |
|
|
|
|
<meta name="robots" content="noindex, nofollow"> |
|
|
|
|
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"> |
|
|
|
|
<meta http-equiv="Cache-Control" content="public"> |
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
|
|
|
|
|
// #1645: Alert the user if opening FCKeditor in FF3 from local filesystem |
|
|
|
|
// without security.fileuri.strict_origin_policy disabled. |
|
|
|
|
if ( document.location.protocol == 'file:' ) |
|
|
|
|
{ |
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
window.parent.document.domain ; |
|
|
|
|
} |
|
|
|
|
catch ( e ) |
|
|
|
|
{ |
|
|
|
|
window.addEventListener( 'load', function() |
|
|
|
|
{ |
|
|
|
|
document.body.innerHTML = '\ |
|
|
|
|
<div style="border: 1px red solid; font-family: arial; font-size: 12px; color: red; padding:10px;">\ |
|
|
|
|
<p>\ |
|
|
|
|
<b>Your browser security settings don\'t allow FCKeditor to be opened from\ |
|
|
|
|
the local filesystem.<\/b>\ |
|
|
|
|
<\/p>\ |
|
|
|
|
<p>\ |
|
|
|
|
Please open the <b>about:config<\/b> page and disable the\ |
|
|
|
|
"security.fileuri.strict_origin_policy" option; then load this page again.\ |
|
|
|
|
<\/p>\ |
|
|
|
|
<p>\ |
|
|
|
|
Check our <a href="http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/FAQ#ff3perms">FAQ<\/a>\ |
|
|
|
|
for more information.\ |
|
|
|
|
<\/p>\ |
|
|
|
|
<\/div>' ; |
|
|
|
|
}, false ) ; |
|
|
|
|
} |
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
window.parent.document.domain ; |
|
|
|
|
} |
|
|
|
|
catch ( e ) |
|
|
|
|
{ |
|
|
|
|
window.addEventListener( 'load', function() |
|
|
|
|
{ |
|
|
|
|
document.body.innerHTML = '\ |
|
|
|
|
<div style="border: 1px red solid; font-family: arial; font-size: 12px; color: red; padding:10px;">\ |
|
|
|
|
<p>\ |
|
|
|
|
<b>Your browser security settings don\'t allow FCKeditor to be opened from\ |
|
|
|
|
the local filesystem.<\/b>\ |
|
|
|
|
<\/p>\ |
|
|
|
|
<p>\ |
|
|
|
|
Please open the <b>about:config<\/b> page and disable the\ |
|
|
|
|
"security.fileuri.strict_origin_policy" option; then load this page again.\ |
|
|
|
|
<\/p>\ |
|
|
|
|
<p>\ |
|
|
|
|
Check our <a href="http://docs.fckeditor.net/FCKeditor_2.x/Developers_Guide/FAQ#ff3perms">FAQ<\/a>\ |
|
|
|
|
for more information.\ |
|
|
|
|
<\/p>\ |
|
|
|
|
<\/div>' ; |
|
|
|
|
}, false ) ; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Save a reference to the default domain. |
|
|
|
@ -66,33 +66,33 @@ var FCK_ORIGINAL_DOMAIN ; |
|
|
|
|
// Automatically detect the correct document.domain (#123). |
|
|
|
|
(function() |
|
|
|
|
{ |
|
|
|
|
var d = FCK_ORIGINAL_DOMAIN = document.domain ; |
|
|
|
|
|
|
|
|
|
while ( true ) |
|
|
|
|
{ |
|
|
|
|
// Test if we can access a parent property. |
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
var test = window.parent.document.domain ; |
|
|
|
|
break ; |
|
|
|
|
} |
|
|
|
|
catch( e ) {} |
|
|
|
|
|
|
|
|
|
// Remove a domain part: www.mytest.example.com => mytest.example.com => example.com ... |
|
|
|
|
d = d.replace( /.*?(?:\.|$)/, '' ) ; |
|
|
|
|
|
|
|
|
|
if ( d.length == 0 ) |
|
|
|
|
break ; // It was not able to detect the domain. |
|
|
|
|
|
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
document.domain = d ; |
|
|
|
|
} |
|
|
|
|
catch (e) |
|
|
|
|
{ |
|
|
|
|
break ; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
var d = FCK_ORIGINAL_DOMAIN = document.domain ; |
|
|
|
|
|
|
|
|
|
while ( true ) |
|
|
|
|
{ |
|
|
|
|
// Test if we can access a parent property. |
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
var test = window.parent.document.domain ; |
|
|
|
|
break ; |
|
|
|
|
} |
|
|
|
|
catch( e ) {} |
|
|
|
|
|
|
|
|
|
// Remove a domain part: www.mytest.example.com => mytest.example.com => example.com ... |
|
|
|
|
d = d.replace( /.*?(?:\.|$)/, '' ) ; |
|
|
|
|
|
|
|
|
|
if ( d.length == 0 ) |
|
|
|
|
break ; // It was not able to detect the domain. |
|
|
|
|
|
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
document.domain = d ; |
|
|
|
|
} |
|
|
|
|
catch (e) |
|
|
|
|
{ |
|
|
|
|
break ; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
})() ; |
|
|
|
|
|
|
|
|
|
// Save a reference to the detected runtime domain. |
|
|
|
@ -107,7 +107,7 @@ var FCK_IS_CUSTOM_DOMAIN = ( FCK_ORIGINAL_DOMAIN != FCK_RUNTIME_DOMAIN ) ; |
|
|
|
|
|
|
|
|
|
function LoadScript( url ) |
|
|
|
|
{ |
|
|
|
|
document.write( '<scr' + 'ipt type="text/javascript" src="' + url + '"><\/scr' + 'ipt>' ) ; |
|
|
|
|
document.write( '<scr' + 'ipt type="text/javascript" src="' + url + '"><\/scr' + 'ipt>' ) ; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Main editor scripts. |
|
|
|
@ -118,30 +118,30 @@ LoadScript( 'js/fckeditorcode_' + sSuffix + '.js' ) ; |
|
|
|
|
// Base configuration file. |
|
|
|
|
LoadScript( '../fckconfig.js' ) ; |
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
</script> |
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
|
|
|
|
|
// Adobe AIR compatibility file. |
|
|
|
|
if ( FCKBrowserInfo.IsAIR ) |
|
|
|
|
LoadScript( 'js/fckadobeair.js' ) ; |
|
|
|
|
LoadScript( 'js/fckadobeair.js' ) ; |
|
|
|
|
|
|
|
|
|
if ( FCKBrowserInfo.IsIE ) |
|
|
|
|
{ |
|
|
|
|
// Remove IE mouse flickering. |
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
document.execCommand( 'BackgroundImageCache', false, true ) ; |
|
|
|
|
} |
|
|
|
|
catch (e) |
|
|
|
|
{ |
|
|
|
|
// We have been reported about loading problems caused by the above |
|
|
|
|
// line. For safety, let's just ignore errors. |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Create the default cleanup object used by the editor. |
|
|
|
|
FCK.IECleanup = new FCKIECleanup( window ) ; |
|
|
|
|
FCK.IECleanup.AddItem( FCKTempBin, FCKTempBin.Reset ) ; |
|
|
|
|
FCK.IECleanup.AddItem( FCK, FCK_Cleanup ) ; |
|
|
|
|
// Remove IE mouse flickering. |
|
|
|
|
try |
|
|
|
|
{ |
|
|
|
|
document.execCommand( 'BackgroundImageCache', false, true ) ; |
|
|
|
|
} |
|
|
|
|
catch (e) |
|
|
|
|
{ |
|
|
|
|
// We have been reported about loading problems caused by the above |
|
|
|
|
// line. For safety, let's just ignore errors. |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Create the default cleanup object used by the editor. |
|
|
|
|
FCK.IECleanup = new FCKIECleanup( window ) ; |
|
|
|
|
FCK.IECleanup.AddItem( FCKTempBin, FCKTempBin.Reset ) ; |
|
|
|
|
FCK.IECleanup.AddItem( FCK, FCK_Cleanup ) ; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// The first function to be called on selection change must the the styles |
|
|
|
@ -155,10 +155,10 @@ FCKConfig.ProcessHiddenField() ; |
|
|
|
|
|
|
|
|
|
// Load the custom configurations file (if defined). |
|
|
|
|
if ( FCKConfig.CustomConfigurationsPath.length > 0 ) |
|
|
|
|
LoadScript( FCKConfig.CustomConfigurationsPath ) ; |
|
|
|
|
LoadScript( FCKConfig.CustomConfigurationsPath ) ; |
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
</script> |
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
|
|
|
|
|
// Load configurations defined at page level. |
|
|
|
|
FCKConfig_LoadPageConfig() ; |
|
|
|
@ -167,10 +167,10 @@ FCKConfig_PreProcess() ; |
|
|
|
|
|
|
|
|
|
// Load the full debug script. |
|
|
|
|
if ( FCKConfig.Debug ) |
|
|
|
|
LoadScript( '_source/internals/fckdebug.js' ) ; |
|
|
|
|
LoadScript( '_source/internals/fckdebug.js' ) ; |
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
</script> |
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
|
|
|
|
|
// CSS minified by http://iceyboard.no-ip.org/projects/css_compressor (see _dev/css_compression.txt). |
|
|
|
|
// FCK_MP3 and FCK__Video classes added by Julio Montoya. |
|
|
|
@ -181,6 +181,7 @@ var FCK_InternalCSS = FCKTools.FixCssUrls( FCKConfig.BasePath + 'css/', |
|
|
|
|
'.FCK__Flash{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_flashlogo.gif);background-repeat:no-repeat;width:80px;height:80px}' + |
|
|
|
|
'.FCK__Video{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_video.gif);background-repeat:no-repeat;width:80px;height:80px}' + |
|
|
|
|
'.FCK__MP3{border:none;background-position:center center;background-image:url(images/fck_mp3.gif);background-repeat:no-repeat;width:302px;height:19px}' + |
|
|
|
|
'.FCK__AsciiSvg{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_asciisvg.gif);background-repeat:no-repeat;width:107px;height:107px}' + |
|
|
|
|
'.FCK__UnknownObject{border:#a9a9a9 1px solid;background-position:center center;background-image:url(images/fck_plugin.gif);background-repeat:no-repeat;width:80px;height:80px}' + |
|
|
|
|
'.FCK__Anchor{border:1px dotted #00F;background-position:center center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;width:16px;height:15px;vertical-align:middle}' + |
|
|
|
|
'.FCK__AnchorC{border:1px dotted #00F;background-position:1px center;background-image:url(images/fck_anchor.gif);background-repeat:no-repeat;padding-left:18px}' + |
|
|
|
@ -204,7 +205,7 @@ var FCK_ShowTableBordersCSS = FCKTools.FixCssUrls( FCKConfig.BasePath + 'css/', |
|
|
|
|
// Popup the debug window if debug mode is set to true. It guarantees that the |
|
|
|
|
// first debug message will not be lost. |
|
|
|
|
if ( FCKConfig.Debug ) |
|
|
|
|
FCKDebug._GetWindow() ; |
|
|
|
|
FCKDebug._GetWindow() ; |
|
|
|
|
|
|
|
|
|
// Load the active skin CSS. |
|
|
|
|
document.write( FCKTools.GetStyleHtml( FCKConfig.SkinEditorCSS ) ) ; |
|
|
|
@ -213,130 +214,130 @@ document.write( FCKTools.GetStyleHtml( FCKConfig.SkinEditorCSS ) ) ; |
|
|
|
|
FCKLanguageManager.Initialize() ; |
|
|
|
|
LoadScript( 'lang/' + FCKLanguageManager.ActiveLanguage.Code + '.js' ) ; |
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
</script> |
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
|
|
|
|
|
// Initialize the editing area context menu. |
|
|
|
|
FCK_ContextMenu_Init() ; |
|
|
|
|
|
|
|
|
|
FCKPlugins.Load() ; |
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
</script> |
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
|
|
|
|
|
// Set the editor interface direction. |
|
|
|
|
window.document.dir = FCKLang.Dir ; |
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
</script> |
|
|
|
|
<script type="text/javascript"> |
|
|
|
|
|
|
|
|
|
window.onload = function() |
|
|
|
|
{ |
|
|
|
|
InitializeAPI() ; |
|
|
|
|
InitializeAPI() ; |
|
|
|
|
|
|
|
|
|
if ( FCKBrowserInfo.IsIE ) |
|
|
|
|
FCK_PreloadImages() ; |
|
|
|
|
else |
|
|
|
|
LoadToolbarSetup() ; |
|
|
|
|
if ( FCKBrowserInfo.IsIE ) |
|
|
|
|
FCK_PreloadImages() ; |
|
|
|
|
else |
|
|
|
|
LoadToolbarSetup() ; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function LoadToolbarSetup() |
|
|
|
|
{ |
|
|
|
|
FCKeditorAPI._FunctionQueue.Add( LoadToolbar ) ; |
|
|
|
|
FCKeditorAPI._FunctionQueue.Add( LoadToolbar ) ; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function LoadToolbar() |
|
|
|
|
{ |
|
|
|
|
var oToolbarSet = FCK.ToolbarSet = FCKToolbarSet_Create() ; |
|
|
|
|
|
|
|
|
|
if ( oToolbarSet.IsLoaded ) |
|
|
|
|
StartEditor() ; |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
oToolbarSet.OnLoad = StartEditor ; |
|
|
|
|
oToolbarSet.Load( FCKURLParams['Toolbar'] || 'Default' ) ; |
|
|
|
|
} |
|
|
|
|
var oToolbarSet = FCK.ToolbarSet = FCKToolbarSet_Create() ; |
|
|
|
|
|
|
|
|
|
if ( oToolbarSet.IsLoaded ) |
|
|
|
|
StartEditor() ; |
|
|
|
|
else |
|
|
|
|
{ |
|
|
|
|
oToolbarSet.OnLoad = StartEditor ; |
|
|
|
|
oToolbarSet.Load( FCKURLParams['Toolbar'] || 'Default' ) ; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function StartEditor() |
|
|
|
|
{ |
|
|
|
|
// Remove the onload listener. |
|
|
|
|
FCK.ToolbarSet.OnLoad = null ; |
|
|
|
|
// Remove the onload listener. |
|
|
|
|
FCK.ToolbarSet.OnLoad = null ; |
|
|
|
|
|
|
|
|
|
FCKeditorAPI._FunctionQueue.Remove( LoadToolbar ) ; |
|
|
|
|
FCKeditorAPI._FunctionQueue.Remove( LoadToolbar ) ; |
|
|
|
|
|
|
|
|
|
FCK.Events.AttachEvent( 'OnStatusChange', WaitForActive ) ; |
|
|
|
|
FCK.Events.AttachEvent( 'OnStatusChange', WaitForActive ) ; |
|
|
|
|
|
|
|
|
|
// Start the editor. |
|
|
|
|
FCK.StartEditor() ; |
|
|
|
|
// Start the editor. |
|
|
|
|
FCK.StartEditor() ; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
function WaitForActive( editorInstance, newStatus ) |
|
|
|
|
{ |
|
|
|
|
if ( newStatus == FCK_STATUS_ACTIVE ) |
|
|
|
|
{ |
|
|
|
|
if ( FCKBrowserInfo.IsGecko ) |
|
|
|
|
FCKTools.RunFunction( window.onresize ) ; |
|
|
|
|
if ( newStatus == FCK_STATUS_ACTIVE ) |
|
|
|
|
{ |
|
|
|
|
if ( FCKBrowserInfo.IsGecko ) |
|
|
|
|
FCKTools.RunFunction( window.onresize ) ; |
|
|
|
|
|
|
|
|
|
if ( !FCKConfig.PreventSubmitHandler ) |
|
|
|
|
_AttachFormSubmitToAPI() ; |
|
|
|
|
if ( !FCKConfig.PreventSubmitHandler ) |
|
|
|
|
_AttachFormSubmitToAPI() ; |
|
|
|
|
|
|
|
|
|
FCK.SetStatus( FCK_STATUS_COMPLETE ) ; |
|
|
|
|
FCK.SetStatus( FCK_STATUS_COMPLETE ) ; |
|
|
|
|
|
|
|
|
|
// Call the special "FCKeditor_OnComplete" function that should be present in |
|
|
|
|
// the HTML page where the editor is located. |
|
|
|
|
if ( typeof( window.parent.FCKeditor_OnComplete ) == 'function' ) |
|
|
|
|
window.parent.FCKeditor_OnComplete( FCK ) ; |
|
|
|
|
} |
|
|
|
|
// Call the special "FCKeditor_OnComplete" function that should be present in |
|
|
|
|
// the HTML page where the editor is located. |
|
|
|
|
if ( typeof( window.parent.FCKeditor_OnComplete ) == 'function' ) |
|
|
|
|
window.parent.FCKeditor_OnComplete( FCK ) ; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
// Gecko and Webkit browsers don't calculate well the IFRAME size so we must |
|
|
|
|
// recalculate it every time the window size changes. |
|
|
|
|
if ( FCKBrowserInfo.IsGecko || ( FCKBrowserInfo.IsSafari && !FCKBrowserInfo.IsSafari3 ) ) |
|
|
|
|
{ |
|
|
|
|
window.onresize = function( e ) |
|
|
|
|
{ |
|
|
|
|
// Running in Firefox's chrome makes the window receive the event including subframes. |
|
|
|
|
// we care only about this window. Ticket #1642. |
|
|
|
|
// #2002: The originalTarget from the event can be the current document, the window, or the editing area. |
|
|
|
|
if ( e && e.originalTarget && e.originalTarget !== document && e.originalTarget !== window && (!e.originalTarget.ownerDocument || e.originalTarget.ownerDocument != document )) |
|
|
|
|
return ; |
|
|
|
|
|
|
|
|
|
var oCell = document.getElementById( 'xEditingArea' ) ; |
|
|
|
|
|
|
|
|
|
var eInnerElement = oCell.firstChild ; |
|
|
|
|
if ( eInnerElement ) |
|
|
|
|
{ |
|
|
|
|
eInnerElement.style.height = '0px' ; |
|
|
|
|
eInnerElement.style.height = ( oCell.scrollHeight - 2 ) + 'px' ; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
window.onresize = function( e ) |
|
|
|
|
{ |
|
|
|
|
// Running in Firefox's chrome makes the window receive the event including subframes. |
|
|
|
|
// we care only about this window. Ticket #1642. |
|
|
|
|
// #2002: The originalTarget from the event can be the current document, the window, or the editing area. |
|
|
|
|
if ( e && e.originalTarget && e.originalTarget !== document && e.originalTarget !== window && (!e.originalTarget.ownerDocument || e.originalTarget.ownerDocument != document )) |
|
|
|
|
return ; |
|
|
|
|
|
|
|
|
|
var oCell = document.getElementById( 'xEditingArea' ) ; |
|
|
|
|
|
|
|
|
|
var eInnerElement = oCell.firstChild ; |
|
|
|
|
if ( eInnerElement ) |
|
|
|
|
{ |
|
|
|
|
eInnerElement.style.height = '0px' ; |
|
|
|
|
eInnerElement.style.height = ( oCell.scrollHeight - 2 ) + 'px' ; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
</script> |
|
|
|
|
</script> |
|
|
|
|
</head> |
|
|
|
|
<body> |
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0" style="height: 100%; table-layout: fixed"> |
|
|
|
|
<tr id="xToolbarRow" style="display: none"> |
|
|
|
|
<td id="xToolbarSpace" style="overflow: hidden"> |
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0"> |
|
|
|
|
<tr id="xCollapsed" style="display: none"> |
|
|
|
|
<td id="xExpandHandle" class="TB_Expand" colspan="3"> |
|
|
|
|
<img class="TB_ExpandImg" alt="" src="images/spacer.gif" width="8" height="4" /></td> |
|
|
|
|
</tr> |
|
|
|
|
<tr id="xExpanded" style="display: none"> |
|
|
|
|
<td id="xTBLeftBorder" class="TB_SideBorder" style="width: 1px; display: none;"></td> |
|
|
|
|
<td id="xCollapseHandle" style="display: none" class="TB_Collapse" valign="bottom"> |
|
|
|
|
<img class="TB_CollapseImg" alt="" src="images/spacer.gif" width="8" height="4" /></td> |
|
|
|
|
<td id="xToolbar" class="TB_ToolbarSet"></td> |
|
|
|
|
<td class="TB_SideBorder" style="width: 1px"></td> |
|
|
|
|
</tr> |
|
|
|
|
</table> |
|
|
|
|
</td> |
|
|
|
|
</tr> |
|
|
|
|
<tr> |
|
|
|
|
<td id="xEditingArea" valign="top" style="height: 100%"></td> |
|
|
|
|
</tr> |
|
|
|
|
</table> |
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0" style="height: 100%; table-layout: fixed"> |
|
|
|
|
<tr id="xToolbarRow" style="display: none"> |
|
|
|
|
<td id="xToolbarSpace" style="overflow: hidden"> |
|
|
|
|
<table width="100%" cellpadding="0" cellspacing="0"> |
|
|
|
|
<tr id="xCollapsed" style="display: none"> |
|
|
|
|
<td id="xExpandHandle" class="TB_Expand" colspan="3"> |
|
|
|
|
<img class="TB_ExpandImg" alt="" src="images/spacer.gif" width="8" height="4" /></td> |
|
|
|
|
</tr> |
|
|
|
|
<tr id="xExpanded" style="display: none"> |
|
|
|
|
<td id="xTBLeftBorder" class="TB_SideBorder" style="width: 1px; display: none;"></td> |
|
|
|
|
<td id="xCollapseHandle" style="display: none" class="TB_Collapse" valign="bottom"> |
|
|
|
|
<img class="TB_CollapseImg" alt="" src="images/spacer.gif" width="8" height="4" /></td> |
|
|
|
|
<td id="xToolbar" class="TB_ToolbarSet"></td> |
|
|
|
|
<td class="TB_SideBorder" style="width: 1px"></td> |
|
|
|
|
</tr> |
|
|
|
|
</table> |
|
|
|
|
</td> |
|
|
|
|
</tr> |
|
|
|
|
<tr> |
|
|
|
|
<td id="xEditingArea" valign="top" style="height: 100%"></td> |
|
|
|
|
</tr> |
|
|
|
|
</table> |
|
|
|
|
</body> |
|
|
|
|
</html> |
|
|
|
|