home *** CD-ROM | disk | FTP | other *** search
/ Nintendo GameCube Preview CD-ROM / NINTENDOGAMECUBE.iso / site / js / window.js < prev   
Text File  |  2002-02-05  |  5KB  |  139 lines

  1. // Window functions  v1.01
  2. // http://www.dithered.com/javascript/window/index.html
  3. // code by Chris Nott (chris@dithered.com)
  4.  
  5. /*******************************************************************************
  6.     Popup Window openers
  7. *******************************************************************************/
  8.  
  9. var winReference = null;
  10.  
  11.  
  12. // Open a window at a given position on the screen
  13. function openPositionedWindow(url, name, width, height, x, y, status, scrollbars, moreProperties, openerName) {
  14.     
  15.     // ie4.5 mac - windows are 2 pixels too short; if a statusbar is used, the window will be an additional 15 pixels short
  16.     var agent = navigator.userAgent.toLowerCase();
  17.     if (agent.indexOf("mac")!=-1 && agent.indexOf("msie") != -1 && agent.indexOf("msie 5.0")==-1) {
  18.         height += 2;
  19.         if (status) height += 15;
  20.     }
  21.  
  22.     // Adjust width if scrollbars are used (pc places scrollbars inside the content area; mac outside) 
  23.     width += (scrollbars != '' && scrollbars != null && agent.indexOf("mac") == -1) ? 16 : 0;
  24.  
  25.     var properties = 'width=' + width + ',height=' + height + ',screenX=' + x + ',screenY=' + y + ',left=' + x + ',top=' + y + ((status) ? ',status' : '') + ',scrollbars' + ((scrollbars) ? '' : '=no') + ((moreProperties) ? ',' + moreProperties : '');
  26.     var reference = openWindow(url, name, properties, openerName);
  27.     
  28.     // resize window in ie if we can resize in ns; very messy
  29.     // commented out because openPositionedWindow() doesn't set the resizable attribute
  30.     // left in for reference
  31.     /*if (resizable && agent.indexOf("msie") != -1) {
  32.         if (agent.indexOf("mac") != -1) {
  33.             height += (status) ? 15 : 2;
  34.             if (parseFloat(navigator.appVersion) > 5) width -= 11;
  35.         }
  36.         else {
  37.             height += (status) ? 49 : 31;
  38.             width += 13;
  39.         }
  40.         setTimeout('if (reference != null && !reference.closed) reference.resizeTo(' + width + ',' + height + ');', 150);
  41.     }*/
  42.  
  43.     return reference;
  44. }
  45.  
  46.  
  47. // Open a window at the center of the screen
  48. function openCenteredWindow(url, name, width, height, status, scrollbars, moreProperties, openerName) {
  49.     var x = 0;
  50.     var y = 0;
  51.     if (screen) x = (screen.availWidth - width) / 2;
  52.     if (screen) y = (screen.availHeight - height) / 2;
  53.     if (!status) status == '';
  54.     if (!openerName) openerName == '';
  55.     var reference = openPositionedWindow(url, name, width, height, x, y, status, scrollbars, moreProperties, openerName);
  56.         reference.focus();
  57.     return reference;
  58. }    
  59.  
  60.  
  61. // Open a full-screen window (different from IE's fullscreen option)
  62. function openMaxedWindow(url, name, scrollbars, openerName) {
  63.     var width  = 600;
  64.     var height = 800;
  65.     if (screen) width  = screen.width - 10;
  66.     if (screen) height = screen.height - 30;
  67.     var reference = openPositionedWindow(url, name, width, height, 0, 0, false, scrollbars, openerName, moreProperties);
  68.     return reference;
  69. }
  70.  
  71.  
  72. // Open a full-chrome (all GUI elements) window
  73. // This is like using a target="_blank" in a normal link but allows focussing the window
  74. function openFullChromeWindow(url, name, openerName) {
  75.     return openWindow(url, name, 'directories,location,menubar,resizable,scrollbars,status,toolbar');
  76. }
  77.  
  78.  
  79. // Core utility function that actually creates the window and gives focus to it
  80. function openWindow(url, name, properties, openerName) {
  81.  
  82.     // ie4.x pc can't give focus to windows containing documents from a different domain
  83.     // in this case, initially load a local interstisial page to allow focussing before loading final url
  84.     var agent = navigator.userAgent.toLowerCase();
  85.     if (agent.indexOf("msie") != -1 && parseInt(navigator.appVersion) == 4 && agent.indexOf("msie 5") == -1 && agent.indexOf("msie5") == -1 && agent.indexOf("win") != -1 && url.indexOf('http://') == 0) {
  86.         winReference = window.open('about:blank', name, properties);
  87.         
  88.         setTimeout('if (winReference && !winReference.closed) winReference.location.replace("' + url + '")', 300);
  89.     }
  90.     else {
  91.         winReference = window.open(url, name, properties);
  92.     }
  93.  
  94.     // ie doesn't like giving focus immediately (to new window in 4.5 on mac; to existing ones in 5 on pc)
  95.     setTimeout('if (winReference && !winReference.closed) winReference.focus()', 200);
  96.     
  97.     if (openerName) self.name = openerName;
  98.     return winReference;
  99. }
  100.  
  101.  
  102. /*******************************************************************************
  103.     Modal Dialog controls
  104. *******************************************************************************/
  105.  
  106. // Close a dialog
  107. // Call from onunload event handler of any page that can create a dialog
  108. function closeDialog(dialog) {
  109.     if (dialog && dialog.closed != true) dialog.close();
  110. }
  111.  
  112.  
  113. // Close parent popup
  114. // Call from onload event handler of any page that could be created from a dialog
  115. function closeParentDialog() {
  116.     if (top.opener && isWindowPopup(top.opener)) {
  117.         root = top.opener.top.opener;
  118.         top.opener.close();
  119.         top.opener = root;
  120.     }
  121. }
  122.  
  123.  
  124. // Check if a window is a popup
  125. function isWindowPopup(win) {
  126.     return ((win.opener) ? true : false);
  127. }
  128.  
  129. function openVideoWindow(url) {
  130. return openCenteredWindow(url, 'video', 500, 391, '', '', '' ) 
  131. }
  132.  
  133. function openScreenWindow(url) {
  134. return openCenteredWindow(url, 'screens', 540, 420, '', '', '' ) 
  135. }
  136.  
  137. function openCopyWindow(url) {
  138. return openCenteredWindow(url, 'copy', 540, 540, 'status', 'scrollbars', '' ) 
  139. }