home *** CD-ROM | disk | FTP | other *** search
/ PC Pro 2005 June (DVD) / DPPRO0605DVD.iso / MSXML / MSXML.MSI / XML_SDK.cab / xmlsdk4.chm.4576A2F1_959E_4BCA_94A9_596523761901 / htm / utilityfuncs.js < prev    next >
Encoding:
Text File  |  2003-04-18  |  711 b   |  26 lines

  1. function msieversion()
  2. {
  3.    var ua = window.navigator.userAgent
  4.    var msie = ua.indexOf ( "MSIE " )
  5.  
  6.    if ( msie > 0 )      // If Internet Explorer, return version number
  7.       return parseInt (ua.substring (msie+5, ua.indexOf (".", msie )))
  8.    else                 // If another browser, return 0
  9.       return 0
  10.  
  11. }
  12.  
  13. function versionerror()
  14. {
  15.    window.alert("You need Internet Explorer 5 or later for this tutorial to work.");
  16. }
  17.  
  18.  
  19. function msxmlNotInstalledError() {
  20.  
  21.       alert("This sample requires Microsoft XML Core Services (MSXML) 4.0.\n"+
  22.             "To run this sample, please visit http://msdn.microsoft.com/xml\n" +
  23.             "and install MSXML 4.0.");
  24.       return;
  25. }
  26.