function showAuthor() {
  var body = document.body;
  var parentdiv = document.getElementById('editormaindiv');
  var r = getTopBottom(parentdiv);
  document.getElementById('editorinfo').style.top=r.top+r.offset-140+'px';
  document.getElementById('editorinfo').style.left=body.clientWidth-525+'px';
  document.getElementById('editorinfo').style.display='block';
}
function hideAuthor() {
  document.getElementById('editorinfo').style.display='none';
}

