home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / pluginy Firefox / 524 / 524.xpi / chrome / mid.jar / content / midtaskortoolsmenu_ovr.js < prev   
Encoding:
Text File  |  2009-09-16  |  376 b   |  16 lines

  1. var midtaskortoolsmenu = {
  2.  
  3.     toMIDWindow : function ()
  4.     {
  5.                    // try to get the existing window //
  6.         toOpenWindowByType("mid:main", 'chrome://mid/content/');
  7.     },
  8.     
  9.     newMIDWindow : function () {
  10.                   // Open a new window
  11.         window.open("chrome://mid/content/",'_blank','chrome=yes,resizable=yes,scrollbars=yes');
  12.  
  13.     }
  14.  
  15. }
  16.