home *** CD-ROM | disk | FTP | other *** search
/ Chip 1998 March / CHIPCD_3_98.iso / software / testsoft / exchange / webdata / usa / lib / jsutil.inc < prev    next >
Text File  |  1997-08-25  |  597b  |  21 lines

  1. <%
  2. '<!-- Microsoft Outlook Web Access-->
  3. '<!-- Jsutil.inc : Common Javascript Functions -->
  4. '<!-- Copyright (c) Microsoft Corporation 1993-1997. All rights reserved.-->
  5. %>
  6.  
  7. <script language="Javascript">
  8.  
  9. function openNewWindow(fileName,windowName,theWidth,theHeight) {
  10.     if (windowName == "newMessageWindow") 
  11.     {
  12.         //generate random window ID
  13.  
  14.          windowName = new String(Math.round(Math.random() * 100000));
  15.  
  16.     }
  17.     window.open(fileName,windowName,"toolbar=0,location=0,directories=0,status=1,menubar=1,scrollbars=1,resizable=1,width="+theWidth+",height="+theHeight)
  18. }
  19.  
  20. </script>
  21.