
InlineEditor.cutomEditor = function( el )
{
return;
    if( el.tagName == 'CAPTION' || el.tagName == 'P' ){
    
        var ta = document.createElement( 'textarea' );
        ta.innerHTML = el.innerHTML;   
        ta.style.width  = "100%";
        ta.style.height = el.offsetHeight + "px";
         return ta;
        
    }  
    
}   


InlineEditor.editorValue = function( editor )
{
return;
 
    if( editor.tagName == 'TEXTAREA' )
        return editor.innerHTML;
        
}   

	
	 

function mySavingIndicator( el )
{
   
    InlineEditor.addClass( el, 'uneditable' );
    InlineEditor.addClass( el, 'saving' );
    el.title = "...";

}   


function clearMySavingIndicator( el )
{
    InlineEditor.removeClass( el, 'uneditable' );
    InlineEditor.removeClass( el, 'saving' );
    el.title = "";

} 

