function SubmitForm( action, form )
{
  form.action = action; 
  form.submit();
}

// *****************************************************************************
function toggleMceEditorDirection( frameID )
{
  var iframe = document.getElementById( frameID );
  var iframeDoc;

  if (iframe.contentDocument) {
    // For NS6
    iframeDoc = iframe.contentDocument; 
  } else if (iframe.contentWindow) {
    // For IE5.5 and IE6
    iframeDoc = iframe.contentWindow.document;
  } else {
    // For IE5
    iframeDoc = iframe.document;
  }

  if( iframeDoc.body.getAttribute( "dir" ) == "ltr" ) {
    iframeDoc.body.setAttribute( "dir", "rtl" );
  }
  else {
    iframeDoc.body.setAttribute( "dir", "ltr" );    
  }
}
