1 function ProtectPath(path) {
 
   2     path = path.replace( /\\/g,'\\\\');
 
   3     path = path.replace( /'/g,'\\\'');
 
   8   name = name.replace(/[\[]/,"\\\[").replace(/[\]]/,"\\\]");
 
   9   var regexS = "[\\?&]"+name+"=([^&#]*)";
 
  10   var regex = new RegExp(regexS);
 
  11   var results = regex.exec(window.location.href);
 
  18 function OpenFile(fileUrl) {
 
  19     var CKEditorFuncNum = gup('CKEditorFuncNum');
 
  20     window.top.opener.CKEDITOR.tools.callFunction(CKEditorFuncNum,encodeURI(fileUrl).replace('#','%23'));
 
  22     window.top.opener.focus();