MER
THALASSOTHERAPIE
THERMALISME
LOISIRS
DECOUVERTE
HEBERGEMENTS
TERROIR
ELEVAGE
ARTISANAT
RESTAURATION
COMMERCE
SERVICES
IMMOBILIER
INSOLITE
© 2001
Web Passion
Liens
Plan du site
english
español
artisanat
Produits du terroir du Roussillon, produits terroir Mer Méditerranée
commerce
commerces du roussillon méditerranée - commerces produits du terroir
Migjorn Boutique - Sportswear à Port Argelès sur mer - Roussillon
caves du Roussillon - caves vin Mer Méditerranée - France
Le Grand Sud - magasin vêtements, chaussures, décoration, cadeaux - Argelès sur mer
commerces du roussillon méditerranée - commerces produits du terroir
commerces de Port Argelès - Roussillon - bord de mer méditerranée
location de bateaux roussillon méditerranée - location bateaux pyrénées orientales
commerces du roussillon méditerranée - commerces produits du terroir
commerces du roussillon méditerranée - commerces produits du terroir
prêt à porter, vêtements du Roussillon - prêt à porter Mer Méditerranée - France
contactPortails
locations vacances languedoc roussillon - locationos Mer Méditerranée
Formulaire de contact sur =$GLOBALS['nom portail']?>
Formulaire de contact sur =$GLOBALS['nom portail']?>
FCKeditor
_samples
FCKeditor - Samples
FCKeditor - Sample Selection
_testcases
FCKeditor - Sample
FCKeditor - Sample
FCKeditor - Sample
FCKeditor - Sample
FCKeditor - Sample
FCKeditor - Sample
FCKeditor - Sample
FCKeditor - Sample
FCKeditor - Sample
FCKeditor - Sample
FCKeditor - Samples - Posted Data
editor
FCKeditor Debug Window
' + sTitle + '<\/title>' ) ; function LoadInnerDialog() { if ( window.onresize ) window.onresize() ; // First of all, translate the dialog box contents. window.dialogArguments.Editor.FCKLanguageManager.TranslatePage( document ) ; window.frames["frmMain"].document.location.href = window.dialogArguments.Page ; } function InnerDialogLoaded() { var oInnerDoc = document.getElementById('frmMain').contentWindow.document ; // Set the language direction. oInnerDoc.dir = window.dialogArguments.Editor.FCKLang.Dir ; // Sets the Skin CSS. oInnerDoc.write( '
' ) ; SetOnKeyDown( oInnerDoc ) ; DisableContextMenu( oInnerDoc ) ; return window.dialogArguments.Editor ; } function SetOkButton( showIt ) { document.getElementById('btnOk').style.visibility = ( showIt ? '' : 'hidden' ) ; } var bAutoSize = false ; function SetAutoSize( autoSize ) { bAutoSize = autoSize ; RefreshSize() ; } function RefreshSize() { if ( bAutoSize ) { var oInnerDoc = document.getElementById('frmMain').contentWindow.document ; var iFrameHeight ; if ( document.all ) iFrameHeight = oInnerDoc.body.offsetHeight ; else iFrameHeight = document.getElementById('frmMain').contentWindow.innerHeight ; var iInnerHeight = oInnerDoc.body.scrollHeight ; var iDiff = iInnerHeight - iFrameHeight ; if ( iDiff > 0 ) { if ( document.all ) window.dialogHeight = ( parseInt( window.dialogHeight ) + iDiff ) + 'px' ; else window.resizeBy( 0, iDiff ) ; } } } function Ok() { if ( window.frames["frmMain"].Ok && window.frames["frmMain"].Ok() ) Cancel() ; } function Cancel() { // All dialog windows will fire the "OnSelectionChange" event, not matter // the Ok or Cancel button have being pressed. window.dialogArguments.Editor.FCK.Events.FireEvent( 'OnSelectionChange' ) ; window.close() ; } // Object that holds all available tabs. var oTabs = new Object() ; function TabDiv_OnClick() { SetSelectedTab( this.TabCode ) ; } function AddTab( tabCode, tabText, startHidden ) { if ( typeof( oTabs[ tabCode ] ) != 'undefined' ) return ; var eTabsRow = document.getElementById( 'Tabs' ) ; var oCell = eTabsRow.insertCell( eTabsRow.cells.length - 1 ) ; oCell.noWrap = true ; var oDiv = document.createElement( 'DIV' ) ; oDiv.className = 'PopupTab' ; oDiv.innerHTML = tabText ; oDiv.TabCode = tabCode ; oDiv.onclick = TabDiv_OnClick ; if ( startHidden ) oDiv.style.display = 'none' ; eTabsRow = document.getElementById( 'TabsRow' ) ; oCell.appendChild( oDiv ) ; if ( eTabsRow.style.display == 'none' ) { var eTitleArea = document.getElementById( 'TitleArea' ) ; eTitleArea.className = 'PopupTitle' ; oDiv.className = 'PopupTabSelected' ; eTabsRow.style.display = '' ; if ( ! window.dialogArguments.Editor.FCKBrowserInfo.IsIE ) window.onresize() ; } oTabs[ tabCode ] = oDiv ; oTabs[ tabCode ].Index = oTabs.length - 1 ; } function SetSelectedTab( tabCode ) { for ( var sCode in oTabs ) { if ( sCode == tabCode ) oTabs[sCode].className = 'PopupTabSelected' ; else oTabs[sCode].className = 'PopupTab' ; } if ( typeof( window.frames["frmMain"].OnDialogTabChange ) == 'function' ) window.frames["frmMain"].OnDialogTabChange( tabCode ) ; } function SetTabVisibility( tabCode, isVisible ) { var oTab = oTabs[ tabCode ] ; oTab.style.display = isVisible ? '' : 'none' ; if ( ! isVisible && oTab.className == 'PopupTabSelected' ) { for ( var sCode in oTabs ) { if ( oTabs[sCode].style.display != 'none' ) { SetSelectedTab( sCode ) ; break ; } } } } function SetOnKeyDown( targetDocument ) { targetDocument.onkeydown = function ( e ) { e = e || event || this.parentWindow.event ; switch ( e.keyCode ) { case 13 : // ENTER var oTarget = e.srcElement || e.target ; if ( oTarget.tagName == 'TEXTAREA' ) return ; Ok() ; return false ; case 27 : // ESC Cancel() ; return false ; break ; } return true ; } } SetOnKeyDown( document ) ; function DisableContextMenu( targetDocument ) { if ( window.dialogArguments.Editor.FCKBrowserInfo.IsIE ) return ; // Disable Right-Click var oOnContextMenu = function( e ) { var sTagName = e.target.tagName ; if ( ! ( ( sTagName == "INPUT" && e.target.type == "text" ) || sTagName == "TEXTAREA" ) ) e.preventDefault() ; } targetDocument.addEventListener( 'contextmenu', oOnContextMenu, true ) ; } DisableContextMenu( document ) ; if ( ! window.dialogArguments.Editor.FCKBrowserInfo.IsIE ) { window.onresize = function() { var oFrame = document.getElementById("frmMain") ; if ( ! oFrame ) return ; oFrame.height = 0 ; var oCell = document.getElementById("FrameCell") ; var iHeight = oCell.offsetHeight ; oFrame.height = iHeight - 2 ; } } if ( window.dialogArguments.Editor.FCKBrowserInfo.IsIE ) { function Window_OnBeforeUnload() { for ( var t in oTabs ) oTabs[t] = null ; window.dialogArguments.Editor = null ; } window.attachEvent( "onbeforeunload", Window_OnBeforeUnload ) ; } function Window_OnClose() { window.dialogArguments.Editor.FCKFocusManager.Unlock() ; } if ( window.addEventListener ) window.addEventListener( 'unload', Window_OnClose, false ) ;