
function myworkspace_init(options) {
  
  libraryName = '/extension/brandportal/design/linde/javascript/myworkspace_class.js';

  if (typeof MyWorkspace == 'undefined')
    document.write('<script type="text/javascript" src="'+ libraryName +'"></script>');
    
  myworkspace = new MyWorkspace(options);
}

function myworkspace_table_init(options) {
  
  libraryName = '/extension/brandportal/design/linde/javascript/myworkspace_class.js';

  if (typeof MyWorkspaceTable == 'undefined')
    document.write('<script type="text/javascript" src="'+ libraryName +'"></script>');
    
   myworkspacetable = new MyWorkspaceTable(options);
   
}
// IE6 anti-flicker fix
try {
 document.execCommand('BackgroundImageCache', false, true);
} catch(err) {}
