home *** CD-ROM | disk | FTP | other *** search
/ .net - The Best of 1999/2000 / netCD Special01.iso / pc / Software / Dreamweaver / dreamw.exe / data1.cab / App_Files / Configuration / Objects / Common / SSI.js < prev    next >
Encoding:
JavaScript  |  1999-12-09  |  377 b   |  14 lines

  1. // Copyright 1999 Macromedia, Inc. All rights reserved.
  2.  
  3. //---------------     API FUNCTIONS    ---------------
  4.  
  5. function objectTag() {
  6.   var bDialogState = dw.getShowDialogsOnInsert(); // Was dialog shown?
  7.   var newURL = browseForFileURL("select");
  8.  
  9.   if ((newURL == '')  && bDialogState) {  return ''; }
  10.  
  11.   return '<!--#include virtual="' + newURL + '" -->';
  12. }
  13.  
  14.